:root {
  --ink: #050505;
  --charcoal: #111318;
  --text: #1d222b;
  --muted: #69707d;
  --line: #dfe3e8;
  --soft: #f4f5f6;
  --soft-2: #eceff2;
  --accent: #004f9f;
  --accent-dark: #003b78;
  --green: #0c7a43;
  --red: #b42318;
  --white: #ffffff;
  --radius: 8px;
  --max: 1280px;
  --shadow: 0 24px 60px rgba(15, 20, 30, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

img {
  max-width: 100%;
}

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #050505;
  color: #ffffff;
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: flex-end;
  color: currentColor;
  font-weight: 950;
  line-height: 0.84;
  white-space: nowrap;
}

.brand-i {
  margin-right: 3px;
  font-size: 31px;
}

.brand-g {
  margin-right: 1px;
  font-size: 42px;
  font-weight: 500;
  transform: translateY(2px);
}

.brand-rest {
  font-size: 31px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 26px;
  min-width: 0;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 760;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.search-link {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.search-link span::before,
.search-link span::after {
  content: "";
  position: absolute;
  display: block;
}

.search-link span::before {
  left: 13px;
  top: 12px;
  width: 13px;
  height: 13px;
  border: 2px solid #ffffff;
  border-radius: 50%;
}

.search-link span::after {
  left: 25px;
  top: 26px;
  width: 9px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transform: rotate(45deg);
  transform-origin: left center;
}

.announcement {
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
  background: #f1f2f3;
  color: #2b313a;
  text-align: center;
  font-size: 14px;
  font-weight: 760;
}

.page {
  min-height: 60vh;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 14px;
  font-weight: 820;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

.nav-cta {
  min-height: 42px;
  background: #ffffff;
  color: #050505;
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-1px);
}

.btn:hover {
  background: var(--accent-dark);
}

.btn.dark {
  background: var(--ink);
}

.btn.light {
  background: #ffffff;
  color: var(--ink);
  border-color: #cfd5dc;
}

.btn.light:hover {
  background: #ffffff;
  border-color: #9aa5b1;
}

.btn.ghost {
  min-height: auto;
  padding: 0;
  background: transparent;
  color: var(--accent);
  border-color: transparent;
}

.home-hero {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #e9ebee;
}

.home-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(430px, 0.9fr) minmax(520px, 1.1fr);
  gap: 30px;
  min-height: 670px;
  padding: 74px 0 56px;
  align-items: center;
}

.home-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.eyebrow,
.kicker {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-hero h1 {
  max-width: 600px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(44px, 5.2vw, 74px);
  font-weight: 920;
  line-height: 1;
}

.hero-copy {
  max-width: 500px;
  margin-bottom: 28px;
  color: #3c434d;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.36;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.lineup-stage {
  position: absolute;
  inset: 0 -8% 0 0;
  min-height: 560px;
}

.lineup-stage::before {
  content: "";
  position: absolute;
  left: 3%;
  right: 0;
  bottom: 46px;
  height: 70%;
  background: #f6f7f8;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
}

.lineup-floor {
  position: absolute;
  left: 3%;
  right: 3%;
  bottom: 42px;
  height: 70px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.02));
  transform: skewX(-16deg);
}

.cable-arc {
  position: absolute;
  left: 45%;
  bottom: 100px;
  width: 220px;
  height: 120px;
  border: 10px solid #191d23;
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 110px 0 0;
  opacity: 0.9;
}

.packshot {
  position: absolute;
  display: block;
}

.charger {
  width: 138px;
  height: 236px;
  border-radius: 26px;
  background: linear-gradient(180deg, #242932, #06080c);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 28px 54px rgba(15, 23, 42, 0.22);
}

.charger::before,
.charger::after {
  content: "";
  position: absolute;
}

.charger::before {
  left: 37px;
  top: 38px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: inset 0 0 0 15px #eef2f5;
}

.charger::after {
  left: 31px;
  bottom: 44px;
  width: 76px;
  height: 9px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 22px 0 rgba(255, 255, 255, 0.45);
}

.cooler {
  width: 220px;
  height: 132px;
  border: 10px solid #151820;
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(0, 79, 159, 0.22) 0 2px, transparent 2px 20px),
    #ffffff;
  box-shadow: 0 34px 0 -24px #151820, 0 28px 38px rgba(15, 23, 42, 0.14);
}

.cooler::before {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  border: 7px solid #d7dde4;
  border-radius: 50%;
}

.speaker {
  width: 130px;
  height: 154px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 36%, #ffffff 0 13px, transparent 14px),
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.25) 0 39px, transparent 40px),
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.14) 0 60px, transparent 61px),
    #11151c;
  box-shadow: 0 28px 40px rgba(15, 23, 42, 0.16);
}

.speaker::after {
  content: "";
  position: absolute;
  left: 37px;
  right: 37px;
  bottom: 22px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.lifestyle {
  width: 210px;
  height: 128px;
  border-radius: 18px;
  background: #11151c;
  box-shadow: 0 28px 44px rgba(15, 23, 42, 0.16);
}

.lifestyle::before,
.lifestyle::after {
  content: "";
  position: absolute;
  border-radius: 12px;
}

.lifestyle::before {
  left: 22px;
  top: -34px;
  width: 88px;
  height: 74px;
  background: #ffffff;
  box-shadow: inset 0 0 0 8px #171b22, 120px 42px 0 -18px #ffffff;
}

.lifestyle::after {
  left: 34px;
  right: 34px;
  bottom: 28px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
}

.hero-charger {
  left: 48%;
  bottom: 120px;
  transform: scale(1.18);
  z-index: 4;
}

.hero-cooler {
  left: 13%;
  bottom: 118px;
  transform: scale(1.35);
  z-index: 3;
}

.hero-speaker {
  right: 11%;
  bottom: 112px;
  transform: scale(1.22);
  z-index: 5;
}

.category-strip {
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.category-strip-inner {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 4vw, 58px);
  min-height: 76px;
  align-items: center;
  overflow-x: auto;
}

.category-strip a {
  color: #252a32;
  font-size: 15px;
  font-weight: 830;
  white-space: nowrap;
}

.category-strip a:hover {
  color: var(--accent);
}

.section {
  padding: 92px 0;
  background: #ffffff;
}

.section.muted {
  background: var(--soft);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.section h2,
.page-title {
  max-width: 840px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 900;
  line-height: 1.04;
}

.section-intro,
.page-intro {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.category-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 330px;
  gap: 18px;
}

.category-banner {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border: 1px solid #d9dde3;
  border-radius: var(--radius);
  background: #f2f3f4;
}

.category-banner.large {
  grid-column: span 2;
  grid-row: span 2;
}

.category-banner.wide {
  grid-column: span 2;
}

.category-banner a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.category-banner-copy {
  position: relative;
  z-index: 3;
  max-width: 420px;
  padding: 30px;
}

.category-banner h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 900;
  line-height: 1;
}

.category-banner p {
  max-width: 380px;
  margin-bottom: 18px;
  color: #4d5662;
  font-size: 16px;
}

.category-banner span {
  color: var(--accent);
  font-size: 14px;
  font-weight: 880;
}

.category-banner-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.product-surface {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 28px;
  height: 54px;
  background: rgba(0, 0, 0, 0.06);
  transform: skewX(-14deg);
}

.category-banner-art .packshot {
  left: 58%;
  bottom: 82px;
  transform: scale(1.12);
}

.category-banner.large .category-banner-art .charger {
  left: 61%;
  bottom: 142px;
  transform: scale(1.7);
}

.category-banner .cooler {
  left: 42%;
  bottom: 84px;
  transform: scale(1.08);
}

.category-banner .speaker {
  left: 58%;
  bottom: 72px;
  transform: scale(1.08);
}

.category-banner.wide .lifestyle {
  left: 60%;
  bottom: 76px;
  transform: scale(1.2);
}

.dark-feature {
  overflow: hidden;
  background: #050505;
  color: #ffffff;
}

.dark-feature-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(460px, 1.14fr);
  gap: 32px;
  min-height: 560px;
  align-items: center;
  padding: 76px 0;
}

.dark-feature .kicker {
  color: #8bbdff;
}

.dark-feature h2 {
  max-width: 640px;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(40px, 5.2vw, 70px);
  line-height: 0.98;
}

.dark-feature p {
  max-width: 470px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.dark-product-stage {
  position: relative;
  min-height: 440px;
}

.dark-disc {
  position: absolute;
  left: 5%;
  right: 0;
  bottom: 62px;
  height: 74px;
  background: rgba(255, 255, 255, 0.10);
  transform: skewX(-16deg);
}

.dark-product-stage .charger {
  left: 46%;
  bottom: 126px;
  transform: scale(1.3);
  z-index: 3;
}

.dark-product-stage .cooler {
  left: 8%;
  bottom: 112px;
  transform: scale(1.22);
  z-index: 2;
}

.dark-product-stage .speaker {
  right: 9%;
  bottom: 110px;
  transform: scale(1.18);
  z-index: 4;
}

.values-section {
  background: #ffffff;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.value-item {
  padding-top: 22px;
  border-top: 2px solid #151820;
}

.value-item h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.15;
}

.value-item p {
  margin: 0;
  color: var(--muted);
}

.distribution-section {
  background: #f0f2f4;
}

.distribution-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 38px;
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card-body {
  padding: 24px;
}

.card h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.1;
}

.card p {
  color: var(--muted);
}

.panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.product-art,
.visual-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 290px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #eff1f3;
}

.visual-card {
  border: 1px solid var(--line);
}

.product-art .packshot,
.visual-card .packshot {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -42%) scale(0.88);
}

.product-art .cooler,
.visual-card .cooler {
  transform: translate(-50%, -42%) scale(0.88);
}

.tile-bg {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 42px;
  height: 44px;
  background: rgba(0, 0, 0, 0.06);
  transform: skewX(-14deg);
}

.product-image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
  display: block;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid #cfe4d9;
  border-radius: 999px;
  background: #eef8f2;
  color: var(--green);
  font-size: 12px;
  font-weight: 880;
}

.category-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 12px;
  padding: 0 10px;
  border-radius: 999px;
  background: #eef4fb;
  color: var(--accent);
  font-size: 12px;
  font-weight: 880;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: #263142;
  font-weight: 760;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.spec-table {
  display: grid;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.spec-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.spec-row:last-child {
  border-bottom: 0;
}

.spec-row strong {
  color: var(--ink);
}

.spec-row span {
  color: var(--muted);
}

.form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 830;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #cfd6de;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--text);
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.message,
.form-message {
  padding: 12px 14px;
  border-radius: var(--radius);
  background: #eef4fb;
  color: #123d6b;
  font-weight: 760;
}

.message:empty,
.form-message:empty {
  display: none;
}

.message.error,
.form-message.error {
  background: #fff1ed;
  color: var(--red);
}

.empty {
  padding: 28px;
  border: 1px dashed #cbd5e1;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--muted);
}

.footer {
  padding: 46px 0;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) repeat(3, minmax(140px, auto));
  gap: 34px;
  align-items: start;
}

.footer p {
  max-width: 410px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-brand .brand-i {
  font-size: 27px;
}

.footer-brand .brand-g {
  font-size: 37px;
}

.footer-brand .brand-rest {
  font-size: 27px;
}

.footer-group strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 14px;
}

.footer-group a,
.footer-group span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.fine-print {
  color: var(--muted);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.admin-body {
  min-height: 100vh;
  background: #f5f7fa;
}

.admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 260px 1fr;
}

.admin-sidebar {
  padding: 24px;
  background: #101318;
  color: #ffffff;
}

.admin-sidebar .brand {
  margin-bottom: 28px;
}

.admin-nav {
  display: grid;
  gap: 8px;
}

.admin-nav button {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: #dbe3ef;
  text-align: left;
  font-weight: 820;
}

.admin-nav button.active,
.admin-nav button:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.admin-main {
  padding: 28px;
}

.admin-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
}

.admin-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.admin-card-head,
.admin-card-body {
  padding: 20px;
}

.admin-card-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.table-wrap {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

.data-table th {
  color: #475467;
  font-size: 12px;
  text-transform: uppercase;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.row-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.small-btn {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 820;
}

.small-btn.danger {
  border-color: #fed7aa;
  color: #c2410c;
}

.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.login-card {
  width: min(100%, 460px);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.login-card .brand {
  margin-bottom: 24px;
  color: #000000;
}

@media (max-width: 1120px) {
  .nav {
    grid-template-columns: 1fr auto;
    padding: 14px 0;
  }

  .nav-links {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    gap: 22px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .home-hero-inner,
  .dark-feature-inner,
  .distribution-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .home-hero-inner {
    min-height: auto;
  }

  .hero-visual,
  .lineup-stage {
    min-height: 520px;
  }

  .category-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-grid,
  .grid-4,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .site-header {
    position: static;
  }

  .nav {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .nav-tools {
    width: 100%;
    justify-content: space-between;
  }

  .nav-cta {
    flex: 1;
  }

  .nav-links {
    gap: 18px;
  }

  .brand-i {
    font-size: 27px;
  }

  .brand-g {
    font-size: 37px;
  }

  .brand-rest {
    font-size: 27px;
  }

  .home-hero-inner {
    padding: 52px 0 32px;
  }

  .home-hero h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .hero-actions .btn,
  .form .btn {
    width: 100%;
  }

  .hero-visual,
  .lineup-stage {
    min-height: 390px;
  }

  .lineup-stage::before {
    left: 0;
    clip-path: none;
  }

  .hero-charger {
    left: 45%;
    bottom: 94px;
    transform: scale(0.88);
  }

  .hero-cooler {
    left: 3%;
    bottom: 94px;
    transform: scale(0.85);
  }

  .hero-speaker {
    right: 4%;
    bottom: 92px;
    transform: scale(0.86);
  }

  .cable-arc {
    display: none;
  }

  .category-strip-inner {
    justify-content: flex-start;
    min-height: 64px;
  }

  .section {
    padding: 62px 0;
  }

  .section-head {
    display: grid;
  }

  .category-showcase-grid,
  .grid-3,
  .grid-4,
  .value-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .category-banner.large,
  .category-banner.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .category-banner,
  .category-banner a {
    min-height: 430px;
  }

  .category-banner-copy {
    padding: 24px;
  }

  .category-banner.large .category-banner-art .charger,
  .category-banner-art .packshot,
  .category-banner .cooler,
  .category-banner .speaker,
  .category-banner.wide .lifestyle {
    left: 50%;
    bottom: 78px;
    transform: translateX(-50%) scale(0.92);
  }

  .dark-product-stage {
    min-height: 360px;
  }

  .dark-product-stage .charger {
    left: 42%;
    bottom: 100px;
    transform: scale(0.88);
  }

  .dark-product-stage .cooler {
    left: 0;
    bottom: 92px;
    transform: scale(0.82);
  }

  .dark-product-stage .speaker {
    right: 0;
    bottom: 92px;
    transform: scale(0.86);
  }

  .distribution-grid,
  .split {
    gap: 24px;
  }

  .spec-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .admin-main {
    padding: 16px;
  }

  .admin-top,
  .admin-card-head {
    align-items: flex-start;
    flex-direction: column;
  }
}
