:root {
  color-scheme: light;
  --ink: #111113;
  --ink-2: #2f3137;
  --muted: #696b73;
  --paper: #fbfaf7;
  --paper-2: #f3f0e9;
  --bone: #fffdf8;
  --line: rgba(17, 17, 19, 0.1);
  --line-strong: rgba(17, 17, 19, 0.18);
  --red: #c91e24;
  --red-dark: #8c1116;
  --green: #9ab089;
  --moss: #53644f;
  --yellow: #ffc857;
  --shadow: 0 24px 70px rgba(16, 18, 24, 0.14), 0 7px 22px rgba(16, 18, 24, 0.08);
  --soft-shadow: 0 18px 45px rgba(18, 18, 18, 0.08);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --max: 1180px;
  --ease: cubic-bezier(.2,.8,.2,1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.drawer-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
.skip-link {
  position: fixed;
  left: 14px;
  top: -60px;
  z-index: 80;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  transition: top .2s ease;
}
.skip-link:focus { top: 14px; }

.site-shell { min-height: 100vh; }
.announcement {
  background: #0b0b0c;
  color: rgba(255,255,255,.76);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px 16px;
}
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, 0.84);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(17,17,19,.08);
}
.nav {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
  letter-spacing: -.05em;
  font-size: 22px;
}
.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: radial-gradient(circle at 64% 35%, #fff 0 4px, transparent 5px), linear-gradient(135deg, #ea2d31 0%, #9a1116 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.3), 0 8px 18px rgba(201,30,36,.28);
  position: relative;
  overflow: hidden;
}
.brand-mark::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 5px;
  left: 7px;
  bottom: 7px;
  border-radius: 999px;
  background: rgba(0,0,0,.54);
}
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-link {
  color: rgba(17,17,19,.74);
  font-size: 14px;
  font-weight: 650;
  padding: 10px 12px;
  border-radius: 999px;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.nav-link:hover, .nav-link.active { background: rgba(17,17,19,.07); color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 9px; }
.icon-button, .cart-button, .mobile-menu-button {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  color: var(--ink);
  border-radius: 999px;
  min-width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 3px 12px rgba(0,0,0,.04);
  transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}
.icon-button:hover, .cart-button:hover, .mobile-menu-button:hover { transform: translateY(-1px); border-color: var(--line-strong); background: #fff; }
.cart-button { padding: 0 14px; font-weight: 750; }
.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--red);
  color: white;
  font-size: 12px;
  font-weight: 850;
}
.mobile-menu-button { display: none; }
.mobile-panel { display: none; }

.main { overflow: hidden; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.section { padding: 86px 0; }

.hero {
  position: relative;
  padding: 68px 0 58px;
  background:
    radial-gradient(circle at 18% 12%, rgba(201,30,36,.13), transparent 30%),
    radial-gradient(circle at 90% 15%, rgba(255,200,87,.26), transparent 24%),
    linear-gradient(180deg, var(--paper) 0%, #f7f3ea 100%);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: 60px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0,0,0,.04);
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(201,30,36,.13); }
h1, h2, h3, p { margin-top: 0; }
.hero-title {
  margin: 22px 0 18px;
  font-size: clamp(52px, 8vw, 112px);
  line-height: .86;
  letter-spacing: -.085em;
  font-weight: 950;
}
.hero-title .outline {
  color: transparent;
  -webkit-text-stroke: 1.8px var(--ink);
  text-shadow: none;
}
.hero-copy {
  max-width: 590px;
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--ink-2);
  letter-spacing: -.02em;
}
.cta-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  border: 0;
  border-radius: 999px;
  min-height: 48px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 850;
  letter-spacing: -.01em;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: #111113; color: white; box-shadow: 0 18px 42px rgba(17,17,19,.22); }
.btn-primary:hover { background: #232327; box-shadow: 0 22px 48px rgba(17,17,19,.26); }
.btn-red { background: var(--red); color: white; box-shadow: 0 18px 42px rgba(201,30,36,.24); }
.btn-red:hover { background: var(--red-dark); }
.btn-secondary { background: rgba(255,255,255,.8); color: var(--ink); border: 1px solid var(--line); }
.btn-ghost { background: transparent; border: 1px solid var(--line); color: var(--ink); }
.btn-full { width: 100%; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 36px; max-width: 560px; }
.proof-card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.62);
  border-radius: 18px;
  padding: 15px;
}
.proof-card strong { display: block; font-size: 24px; line-height: 1; letter-spacing: -.04em; }
.proof-card span { display: block; margin-top: 7px; font-size: 12px; color: var(--muted); font-weight: 750; text-transform: uppercase; letter-spacing: .06em; }

.hero-showcase {
  position: relative;
  min-height: 610px;
  isolation: isolate;
}
.showcase-plate {
  position: absolute;
  inset: 56px 22px 44px 62px;
  border-radius: 42px;
  background: linear-gradient(145deg, rgba(255,255,255,.86), rgba(240,233,220,.9));
  border: 1px solid rgba(17,17,19,.1);
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}
.product-orbit {
  position: absolute;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(17,17,19,.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.product-orbit img { width: 100%; height: 100%; object-fit: cover; }
.orbit-main { width: min(74%, 430px); aspect-ratio: 1; left: 0; top: 90px; transform: rotate(3deg); }
.orbit-pin { width: 210px; aspect-ratio: 1; right: 0; top: 36px; transform: rotate(-7deg); }
.orbit-mug { width: 230px; aspect-ratio: 1; right: 42px; bottom: 28px; transform: rotate(5deg); }
.orbit-label {
  position: absolute;
  left: 42px;
  bottom: 42px;
  width: 260px;
  border-radius: 24px;
  padding: 18px;
  background: #111113;
  color: white;
  box-shadow: 0 24px 58px rgba(0,0,0,.24);
}
.orbit-label b { display: block; font-size: 12px; color: rgba(255,255,255,.62); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 8px; }
.orbit-label span { display: block; font-size: 28px; line-height: .98; font-weight: 950; letter-spacing: -.055em; }

.ticker {
  background: #111113;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.ticker-track {
  display: inline-flex;
  gap: 34px;
  padding: 18px 0;
  animation: marquee 28s linear infinite;
  font-weight: 900;
  letter-spacing: -.03em;
  font-size: 18px;
}
.ticker-track span { display: inline-flex; align-items: center; gap: 34px; }
.ticker-track span::after { content: "•"; color: var(--red); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  margin-bottom: 30px;
}
.section-kicker { font-size: 12px; text-transform: uppercase; letter-spacing: .13em; color: var(--red); font-weight: 900; margin-bottom: 10px; }
.section-title { font-size: clamp(34px, 5vw, 62px); line-height: .94; letter-spacing: -.065em; font-weight: 940; margin-bottom: 0; }
.section-copy { max-width: 430px; color: var(--muted); font-size: 16px; margin-bottom: 0; }

.collection-controls {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  box-shadow: 0 12px 28px rgba(17,17,19,.04);
}
.filter-pills { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 1px; }
.filter-pill {
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink-2);
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 780;
  white-space: nowrap;
}
.filter-pill.active { background: var(--ink); color: #fff; }
.sort-select {
  border: 1px solid var(--line);
  min-height: 40px;
  border-radius: 999px;
  padding: 0 36px 0 14px;
  background: #fff;
  color: var(--ink);
  font-weight: 720;
}
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.82);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 13px 34px rgba(17,17,19,.06);
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.product-image-wrap { display: block; position: relative; background: #f7f7f5; aspect-ratio: 1 / 1; overflow: hidden; flex: 0 0 auto; }
.product-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.product-card:hover .product-image-wrap img { transform: scale(1.045); }
.product-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(17,17,19,.08);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.quick-add {
  position: absolute;
  right: 14px;
  bottom: 14px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .22s var(--ease), transform .22s var(--ease);
}
.product-card:hover .quick-add { opacity: 1; transform: translateY(0); }
.product-card-body { padding: 20px; }
.card-meta { color: var(--muted); font-size: 12px; font-weight: 820; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 9px; }
.product-card h3 { font-size: 21px; line-height: 1.05; letter-spacing: -.035em; margin-bottom: 10px; }
.product-card h3 a:hover { color: var(--red); }
.card-bottom { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-top: 18px; }
.price { font-size: 21px; font-weight: 920; letter-spacing: -.04em; }
.swatches { display: inline-flex; gap: 5px; align-items: center; }
.swatch { width: 14px; height: 14px; border-radius: 50%; border: 1px solid rgba(0,0,0,.2); box-shadow: inset 0 0 0 1px rgba(255,255,255,.35); }
.more-swatches { font-size: 12px; color: var(--muted); font-weight: 800; }

.story-band { background: #111113; color: #fff; }
.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: center; }
.story-card {
  border-radius: 34px;
  background: linear-gradient(160deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.14);
  padding: 34px;
  box-shadow: 0 22px 70px rgba(0,0,0,.18);
}
.story-card h2 { font-size: clamp(36px, 5vw, 70px); line-height: .9; letter-spacing: -.075em; margin-bottom: 20px; }
.story-card p { color: rgba(255,255,255,.72); font-size: 18px; margin-bottom: 0; }
.feature-list { display: grid; gap: 12px; }
.feature-item { display: grid; grid-template-columns: 44px 1fr; gap: 15px; align-items: start; padding: 18px; border-radius: 22px; border: 1px solid rgba(255,255,255,.11); background: rgba(255,255,255,.06); }
.feature-icon { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; background: var(--red); color: #fff; font-weight: 900; }
.feature-item h3 { margin-bottom: 4px; font-size: 18px; }
.feature-item p { margin-bottom: 0; color: rgba(255,255,255,.68); }

.product-page { padding: 54px 0 86px; }
.breadcrumbs { display: flex; gap: 8px; flex-wrap: wrap; color: var(--muted); font-size: 13px; font-weight: 760; margin-bottom: 22px; }
.breadcrumbs a { color: var(--ink); }
.detail-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: 42px; align-items: start; }
.gallery { display: grid; grid-template-columns: 86px 1fr; gap: 16px; position: sticky; top: 98px; }
.thumbs { display: grid; gap: 12px; align-content: start; }
.thumb {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1;
  padding: 0;
}
.thumb.active { outline: 3px solid rgba(201,30,36,.18); border-color: var(--red); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.main-image { border-radius: 34px; overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: var(--soft-shadow); aspect-ratio: 1; }
.main-image img { width: 100%; height: 100%; object-fit: cover; }
.buy-panel {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.84);
  border-radius: 34px;
  padding: 30px;
  box-shadow: var(--soft-shadow);
}
.product-title { font-size: clamp(34px, 5vw, 58px); line-height: .9; letter-spacing: -.065em; margin-bottom: 12px; }
.product-lede { color: var(--muted); font-size: 17px; }
.option-group { margin-top: 22px; }
.option-label { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 10px; color: var(--ink-2); font-size: 13px; font-weight: 880; letter-spacing: .04em; text-transform: uppercase; }
.option-row { display: flex; flex-wrap: wrap; gap: 9px; }
.option-button {
  min-height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 780;
}
.option-button.active { background: #111113; color: #fff; border-color: #111113; }
.color-button { width: 42px; padding: 0; position: relative; }
.color-button span { width: 22px; height: 22px; border-radius: 50%; border: 1px solid rgba(0,0,0,.2); }
.quantity-row { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.qty-stepper { display: inline-grid; grid-template-columns: 42px 52px 42px; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; background: #fff; }
.qty-stepper button { border: 0; background: transparent; font-size: 20px; }
.qty-stepper input { border: 0; text-align: center; width: 52px; background: transparent; font-weight: 850; }
.detail-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 22px; }
.notice { margin-top: 16px; color: var(--muted); font-size: 13px; }
.accordion { margin-top: 28px; border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); padding: 17px 0; }
.accordion summary { cursor: pointer; font-weight: 890; }
.accordion p, .accordion ul { color: var(--muted); margin: 12px 0 0; }
.accordion li { margin: 6px 0; }
.related { padding-top: 54px; }

.policy-page { padding: 64px 0 90px; }
.policy-card { max-width: 860px; border: 1px solid var(--line); background: #fff; border-radius: 30px; padding: clamp(24px, 5vw, 54px); box-shadow: var(--soft-shadow); }
.policy-card h1 { font-size: clamp(38px, 6vw, 68px); letter-spacing: -.07em; line-height: .92; }
.policy-card h2 { margin-top: 30px; }
.policy-card p, .policy-card li { color: var(--muted); }

.footer { background: #0b0b0c; color: #fff; padding: 54px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 28px; }
.footer h3, .footer h4 { margin-bottom: 12px; }
.footer p, .footer a { color: rgba(255,255,255,.66); }
.footer a:hover { color: #fff; }
.footer-links { display: grid; gap: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 36px; padding-top: 22px; display: flex; justify-content: space-between; gap: 18px; color: rgba(255,255,255,.5); font-size: 13px; }

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.36);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s var(--ease);
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(460px, 100%);
  background: var(--bone);
  z-index: 100;
  box-shadow: -24px 0 70px rgba(0,0,0,.2);
  transform: translateX(104%);
  transition: transform .28s var(--ease);
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.cart-drawer.open { transform: translateX(0); }
.drawer-head { display: flex; justify-content: space-between; align-items: center; padding: 24px; border-bottom: 1px solid var(--line); }
.drawer-head h2 { margin: 0; letter-spacing: -.04em; }
.drawer-close { border: 1px solid var(--line); background: #fff; border-radius: 999px; width: 42px; height: 42px; }
.drawer-body { overflow: auto; padding: 20px 24px; }
.empty-cart { border: 1px dashed var(--line-strong); border-radius: 24px; padding: 26px; color: var(--muted); text-align: center; }
.cart-item { display: grid; grid-template-columns: 86px 1fr; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 86px; height: 86px; object-fit: cover; border-radius: 18px; background: #fff; }
.cart-item h3 { font-size: 15px; line-height: 1.1; margin: 0 0 5px; }
.cart-item p { margin: 0; color: var(--muted); font-size: 12px; }
.cart-item-actions { display: flex; justify-content: space-between; align-items: center; gap: 8px; margin-top: 10px; }
.mini-stepper { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; background: #fff; overflow: hidden; }
.mini-stepper button { border: 0; background: transparent; width: 32px; height: 30px; }
.mini-stepper span { min-width: 28px; text-align: center; font-weight: 850; }
.remove-btn { border: 0; background: transparent; color: var(--red); font-weight: 800; }
.drawer-foot { padding: 22px 24px 24px; border-top: 1px solid var(--line); background: rgba(255,255,255,.66); }
.subtotal-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; font-weight: 900; font-size: 19px; }
.checkout-note { color: var(--muted); font-size: 12px; margin: 12px 0 0; }
.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 20px);
  z-index: 120;
  background: #111113;
  color: #fff;
  border-radius: 999px;
  padding: 13px 17px;
  box-shadow: 0 18px 50px rgba(0,0,0,.24);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease);
  font-weight: 780;
}
.toast.open { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 980px) {
  .nav { grid-template-columns: auto auto; justify-content: space-between; }
  .nav-links { display: none; }
  .mobile-menu-button { display: inline-flex; }
  .mobile-panel {
    display: none;
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 18px;
  }
  .mobile-panel.open { display: grid; gap: 8px; }
  .mobile-panel .nav-link { display: block; background: rgba(255,255,255,.76); }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-showcase { min-height: 520px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .story-grid, .detail-grid { grid-template-columns: 1fr; }
  .gallery { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .announcement { font-size: 10px; }
  .nav { height: 64px; width: min(100% - 22px, var(--max)); }
  .brand { font-size: 19px; }
  .brand-mark { width: 28px; height: 28px; }
  .hero { padding-top: 42px; }
  .hero-title { font-size: clamp(48px, 18vw, 72px); }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-showcase { min-height: 430px; }
  .showcase-plate { inset: 44px 8px 34px 18px; border-radius: 30px; }
  .orbit-main { width: 70%; top: 74px; }
  .orbit-pin { width: 138px; }
  .orbit-mug { width: 150px; right: 8px; }
  .orbit-label { left: 8px; bottom: 20px; width: 210px; border-radius: 20px; }
  .orbit-label span { font-size: 23px; }
  .section { padding: 58px 0; }
  .section-head { display: grid; }
  .collection-controls { align-items: stretch; border-radius: 24px; display: grid; }
  .sort-select { width: 100%; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card-body { padding: 18px; }
  .quick-add { opacity: 1; transform: translateY(0); }
  .detail-grid { gap: 24px; }
  .gallery { grid-template-columns: 1fr; }
  .thumbs { grid-template-columns: repeat(4, 1fr); order: 2; }
  .buy-panel { padding: 22px; border-radius: 26px; }
  .detail-actions { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; }
}
