:root {
  --white: #ffffff;
  --paper: #f8f8f6;
  --silver: #ededed;
  --gold: #0a0a0a;
  --gold-soft: #e7e7e7;
  --black: #0a0a0a;
  --ink: #171717;
  --muted: #77746d;
  --line: rgba(10, 10, 10, .09);
  --shadow: 0 28px 90px rgba(10, 10, 10, .10);
  --radius: 28px;
  --font: "SF Pro Display", "Segoe UI", Tahoma, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100svh;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }

.site-intro {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .16), transparent 18rem),
    linear-gradient(135deg, #000 0%, #111 44%, #f5f5f5 300%);
  color: #fff;
  transition: opacity .85s ease, visibility .85s ease, transform .85s ease;
}
.site-intro.hide {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.025);
  pointer-events: none;
}
.intro-grid {
  position: absolute;
  inset: -20%;
  background-image:
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 72px 72px;
  transform: perspective(900px) rotateX(62deg) translateY(8%);
  animation: gridDrift 4.8s ease-in-out both;
}
.intro-ring {
  position: absolute;
  width: min(72vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: inset 0 0 80px rgba(255, 255, 255, .08), 0 0 80px rgba(255, 255, 255, .08);
  animation: introPulse 3.2s ease-in-out both;
}
.intro-ring-b {
  width: min(56vw, 460px);
  border-style: dashed;
  opacity: .55;
  animation-delay: .18s;
}
.intro-mark {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 14px;
  animation: introMark 3.9s cubic-bezier(.2, .8, .2, 1) both;
}
.intro-mark span {
  position: relative;
  font-size: clamp(64px, 14vw, 190px);
  line-height: .82;
  letter-spacing: .24em;
  padding-inline-start: .24em;
  font-weight: 950;
  color: transparent;
  background: linear-gradient(95deg, #fff 0%, #fff 35%, #777 47%, #fff 60%, #fff 100%);
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 32px 90px rgba(255, 255, 255, .16);
  animation: introSweep 2.6s ease-in-out .55s both;
}
.intro-mark small {
  font-weight: 950;
  letter-spacing: .18em;
  color: rgba(255, 255, 255, .78);
  animation: introSmall 2.8s ease both;
}
.intro-line {
  position: absolute;
  width: min(760px, 82vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  filter: drop-shadow(0 0 16px rgba(255, 255, 255, .7));
  opacity: 0;
  animation: introLine 3s ease-in-out both;
}
.intro-line-one { transform: translateY(-120px) rotate(-9deg); }
.intro-line-two { transform: translateY(120px) rotate(9deg); animation-delay: .2s; }
.site-intro p {
  position: absolute;
  bottom: 13vh;
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  letter-spacing: .38em;
  text-transform: uppercase;
  font-weight: 950;
  animation: introSmall 3.1s ease both;
}

.shell { min-height: 100svh; background: linear-gradient(180deg, #fff, #f7f7f7 48%, #fff); }

.topbar {
  position: sticky;
  top: 14px;
  z-index: 50;
  width: min(1380px, calc(100% - 28px));
  margin: 0 auto;
  border: 1px solid rgba(10, 10, 10, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(26px) saturate(150%);
  box-shadow: 0 18px 60px rgba(10, 10, 10, .08);
}
.nav-wrap {
  width: 100%;
  min-height: 68px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px minmax(360px, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 8px 12px 8px 20px;
}
.brand {
  display: grid;
  gap: 2px;
  line-height: 1;
}
.brand b {
  font-size: 24px;
  letter-spacing: .22em;
  padding-inline-start: .22em;
  font-weight: 950;
}
.brand span {
  color: var(--black);
  font-weight: 900;
  font-size: 12px;
}
.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: nowrap;
  padding: 6px;
  border-radius: 999px;
  background: #f4f4f4;
  border: 1px solid rgba(10, 10, 10, .05);
}
.desktop-nav a, .mobile-nav a {
  white-space: nowrap;
  padding: 10px 15px;
  border-radius: 999px;
  color: #4c4944;
  font-size: 12px;
  font-weight: 850;
}
.desktop-nav a.active, .desktop-nav a:hover, .mobile-nav a.active {
  background: #111;
  color: #fff;
}
.nav-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: end;
}
.icon-btn, .premium-btn, .outline-btn, .mini-btn {
  border: 0;
  border-radius: 999px;
  font-weight: 950;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.icon-btn {
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  background: #fff;
  border: 1px solid var(--line);
}
.premium-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #000, #151515);
  color: #fff;
  box-shadow: 0 18px 54px rgba(10, 10, 10, .18);
}
.outline-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 13px 20px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}
.mini-btn {
  padding: 9px 13px;
  background: #fff;
  border: 1px solid var(--line);
}
.premium-btn:hover, .outline-btn:hover, .icon-btn:hover, .mini-btn:hover {
  transform: translateY(-2px);
}
.mobile-toggle { display: none; }
.mobile-nav {
  display: none;
  width: min(1380px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 12px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.more-menu {
  position: relative;
}
.more-menu summary {
  list-style: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-weight: 950;
  cursor: pointer;
}
.more-menu summary::-webkit-details-marker { display: none; }
.more-menu[open] summary { background: #000; }
.more-menu div {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 70;
  min-width: 250px;
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.more-menu a {
  padding: 12px;
  border-radius: 16px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}
.more-menu a:hover, .more-menu a.active {
  background: #111;
  color: #fff;
}

.page {
  width: min(1380px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 76px;
}
.page-narrow { width: min(1080px, calc(100% - 32px)); }
.section { margin-top: 46px; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.kicker {
  margin: 0 0 10px;
  color: var(--gold);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 950;
}
h1, h2, h3, p { margin-top: 0; }
.hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 20px;
  align-items: stretch;
}
.hero-copy {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(28px, 5vw, 70px);
  border-radius: 44px;
  background: linear-gradient(135deg, #fff, #f2f2f2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero-copy:before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(10, 10, 10, .12);
  border-radius: 34px;
  pointer-events: none;
}
.hero h1 {
  position: relative;
  max-width: 780px;
  font-size: clamp(54px, 8vw, 122px);
  line-height: .9;
  letter-spacing: -.055em;
  font-weight: 950;
}
.hero p {
  position: relative;
  max-width: 620px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.9;
}
.hero-media {
  min-height: 620px;
  border-radius: 44px;
  overflow: hidden;
  position: relative;
  background: #111;
  box-shadow: var(--shadow);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  animation: slowDolly 12s ease-in-out infinite alternate;
}
.hero-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .36), transparent 52%);
}
.hero-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  width: min(310px, calc(100% - 48px));
  padding: 22px;
  border-radius: 28px;
  color: #111;
  background: rgba(255, 255, 255, .76);
  backdrop-filter: blur(22px);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.collection-card {
  min-height: 240px;
  padding: 24px;
  border-radius: 30px;
  background: #111;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}
.collection-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 10%, rgba(255, 255, 255, .18), transparent 15rem);
}
.collection-card * { position: relative; }
.collection-card b {
  font-size: 52px;
  color: #fff;
}

.categories-section {
  padding: 24px;
  border-radius: 36px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 20px 70px rgba(10, 10, 10, .07);
}
.category-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.category-tile {
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(145deg, #fff, #f3f3f3);
  color: var(--black);
  text-align: start;
  display: grid;
  align-content: space-between;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.category-tile:hover {
  transform: translateY(-4px);
  background: #0a0a0a;
  color: #fff;
}
.category-tile span {
  color: var(--muted);
  font-weight: 950;
}
.category-tile b {
  font-size: 26px;
  letter-spacing: -.03em;
}
.category-tile small {
  color: currentColor;
  opacity: .64;
  font-weight: 800;
}
.privacy-panel {
  display: grid;
  gap: 14px;
  line-height: 1.9;
}
.privacy-panel h2 {
  margin: 20px 0 0;
  font-size: clamp(22px, 3vw, 34px);
}
.privacy-panel p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}
.campaign-split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.product-card {
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 55px rgba(10, 10, 10, .07);
  transition: transform .25s ease, box-shadow .25s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 76px rgba(10, 10, 10, .12);
}
.product-image {
  aspect-ratio: 4 / 5;
  background: var(--silver);
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-image img { transform: scale(1.045); }
.product-info { padding: 18px; }
.product-info h3 {
  min-height: 56px;
  font-size: 21px;
  line-height: 1.28;
  letter-spacing: -.02em;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-weight: 900;
}
.price-row strong {
  color: var(--ink);
  font-size: 20px;
}
.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}

.filters {
  display: grid;
  grid-template-columns: 1fr 210px 190px;
  gap: 12px;
  padding: 16px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: #fff;
  margin-bottom: 22px;
}
.field {
  width: 100%;
  border: 1px solid var(--line);
  background: #fbfbfa;
  color: var(--ink);
  border-radius: 18px;
  padding: 14px 16px;
  outline: none;
}

.split {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 20px;
  align-items: start;
}
.panel {
  border-radius: 32px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 24px;
}
.cart-list { display: grid; gap: 14px; }
.cart-item {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 12px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: #fff;
}
.cart-item img {
  width: 110px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 20px;
}
.qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.qty button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-weight: 950;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 850;
}
.summary-line.total {
  color: var(--ink);
  font-size: 24px;
  border-bottom: 0;
}
.master-pay {
  margin: 16px 0;
  padding: 14px;
  border-radius: 18px;
  color: white;
  background: var(--ink);
  display: grid;
  gap: 6px;
}
.master-pay span { color: rgba(255,255,255,.72); font-weight: 800; }
.master-pay b { color: var(--gold); font-size: 24px; letter-spacing: .04em; }

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 410px;
  gap: 20px;
  align-items: start;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-grid .full { grid-column: 1 / -1; }
textarea.field { min-height: 110px; resize: vertical; }
.payment-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.payment-options label {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-weight: 900;
}

.product-page {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 28px;
}
.gallery {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
}
.thumbs { display: grid; gap: 10px; align-content: start; }
.thumbs button {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
}
.thumbs button.active { border-color: var(--gold); }
.thumbs img, .main-image img, .main-image video {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.main-image video {
  display: block;
  background: #050505;
}
.video-thumb {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 4 / 5;
  color: white;
  background: #050505;
  font-size: 24px;
}
.main-image {
  overflow: hidden;
  border-radius: 34px;
  background: var(--silver);
  box-shadow: var(--shadow);
}
.detail-copy h1 {
  font-size: clamp(36px, 5vw, 70px);
  line-height: .98;
  letter-spacing: -.05em;
}
.tryon-panel {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 22px;
  align-items: stretch;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(10, 10, 10, .08), transparent 18rem),
    linear-gradient(135deg, #fff, #f5f5f5);
}
.tryon-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
}
.tryon-copy h2 {
  max-width: 820px;
  font-size: clamp(36px, 5vw, 78px);
  line-height: .92;
  letter-spacing: -.055em;
}
.tryon-copy p {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.9;
}
.tryon-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.tryon-result {
  min-height: 360px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.92), rgba(238,238,238,.92)),
    radial-gradient(circle at 50% 24%, rgba(255,255,255,.9), transparent 14rem);
  border: 1px solid var(--line);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.65), 0 22px 70px rgba(10,10,10,.08);
}
.tryon-result img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tryon-placeholder,
.tryon-loading,
.tryon-error {
  width: calc(100% - 32px);
  min-height: 280px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 24px;
  border: 1px dashed rgba(10,10,10,.18);
  color: var(--muted);
  font-weight: 950;
}
.tryon-placeholder {
  font-size: clamp(42px, 7vw, 96px);
  letter-spacing: .18em;
  padding-inline-start: .18em;
  color: rgba(10,10,10,.18);
}
.tryon-loading {
  color: var(--black);
  background: rgba(255,255,255,.72);
}
.tryon-error {
  color: #7a1b1b;
  background: rgba(122,27,27,.05);
}
.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-weight: 900;
}
.swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--line);
}

.empty {
  min-height: 310px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(135deg, #fff, var(--paper));
  border: 1px solid var(--line);
}
.empty h2 {
  font-size: clamp(34px, 6vw, 76px);
  line-height: .95;
  letter-spacing: -.05em;
}

.metric h3 {
  font-size: 38px;
  margin-bottom: 4px;
}
.table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 22px;
}
.table th, .table td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: start;
}
.table th { color: var(--muted); font-size: 13px; }
.login-card {
  width: min(460px, 100%);
  margin: 7vh auto;
}

.footer {
  margin-top: 48px;
  background: #0a0a0a;
  color: #fff;
  padding: 54px max(16px, calc((100vw - 1380px) / 2));
}
.footer-grid {
  width: min(1380px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 28px;
}
.footer a, .footer p { color: rgba(255, 255, 255, .68); }
.toast {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 90;
  max-width: 360px;
  padding: 14px 18px;
  border-radius: 18px;
  background: #111;
  color: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: .25s ease;
}
.toast.show { opacity: 1; transform: none; }

@keyframes slowDolly {
  to { transform: scale(1.08) translate3d(-1.4%, 0, 0); }
}
@keyframes introMark {
  0% { opacity: 0; transform: translateY(26px) scale(.92); filter: blur(14px); }
  28% { opacity: 1; transform: translateY(0) scale(1.02); filter: blur(0); }
  72% { transform: scale(1); }
  100% { transform: scale(1.04); }
}
@keyframes introSweep {
  0% { background-position: 180% 0; }
  100% { background-position: -80% 0; }
}
@keyframes introSmall {
  0%, 22% { opacity: 0; transform: translateY(10px); }
  55%, 100% { opacity: 1; transform: none; }
}
@keyframes introPulse {
  0% { opacity: 0; transform: scale(.72); }
  34% { opacity: 1; transform: scale(1); }
  100% { opacity: .62; transform: scale(1.18); }
}
@keyframes introLine {
  0% { opacity: 0; clip-path: inset(0 50%); }
  34% { opacity: .9; clip-path: inset(0 0); }
  100% { opacity: 0; clip-path: inset(0 50%); }
}
@keyframes gridDrift {
  0% { opacity: 0; transform: perspective(900px) rotateX(62deg) translateY(18%); }
  35% { opacity: .75; }
  100% { opacity: .34; transform: perspective(900px) rotateX(62deg) translateY(0); }
}
@media (max-width: 1100px) {
  .topbar { top: 10px; border-radius: 28px; }
  .desktop-nav {
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .desktop-nav::-webkit-scrollbar { display: none; }
  .mobile-toggle { display: none; }
  .mobile-nav.open {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-wrap {
    grid-template-columns: 1fr;
    justify-content: stretch;
    border-radius: 28px;
  }
  .brand { justify-self: center; text-align: center; }
  .nav-actions { justify-content: center; }
  .more-menu { display: block; }
  .hero, .split, .checkout-grid, .product-page, .campaign-split { grid-template-columns: 1fr; }
  .collection-grid, .product-grid, .category-strip { grid-template-columns: repeat(2, 1fr); }
  .tryon-panel { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .page { width: min(100% - 22px, 1380px); padding-top: 24px; }
  .hero-copy, .hero-media { min-height: 460px; border-radius: 30px; }
  .hero h1 { font-size: 54px; }
  .section-head { display: block; }
  .collection-grid, .product-grid, .filters, .form-grid, .payment-options, .footer-grid, .mobile-nav.open { grid-template-columns: 1fr; }
  .category-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-tile { min-height: 136px; padding: 16px; border-radius: 22px; }
  .category-tile b { font-size: 20px; }
  .product-actions { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 86px 1fr; }
  .cart-item img { width: 86px; }
  .cart-item .qty { grid-column: 1 / -1; justify-self: start; }
  .gallery { grid-template-columns: 1fr; }
  .thumbs { grid-template-columns: repeat(4, 1fr); }
  .nav-actions .outline-btn { display: none; }
}
