/* ============================================================
   SPLASH & PAGE TRANSITIONS
   ============================================================ */
.app-splash {
  align-items: center;
  background: #0a0a0a;
  display: flex;
  inset: 0;
  justify-content: center;
  position: fixed;
  transition: opacity .45s ease;
  z-index: 9999;
}
.app-splash-out { opacity: 0; pointer-events: none; }
.splash-logo {
  animation: splash-breathe 1.6s ease-in-out infinite;
  color: #c8a15a;
  font-family: "Julius Sans One", Arial, sans-serif;
  font-size: 28px;
  letter-spacing: .48em;
  text-transform: uppercase;
}
@keyframes splash-breathe {
  0%, 100% { opacity: .35; }
  50%       { opacity: 1; }
}

/* Page entrance — every render triggers this via data-entering removal */
@keyframes page-enter {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
#app[data-entering="1"] > * {
  animation: none;
  opacity: 0;
}
#app > * { animation: page-enter .38s cubic-bezier(.22,1,.36,1) both; }

/* Overlay & drawer entrances */
@keyframes overlay-enter {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes drawer-from-right {
  from { opacity: .6; transform: translateX(100%); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes drawer-from-left {
  from { opacity: .6; transform: translateX(-100%); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes modal-enter {
  from { opacity: 0; transform: translate(-50%, calc(-50% + 18px)); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}
.overlay    { animation: overlay-enter .22s ease both; }
.cart-drawer { animation: drawer-from-right .32s cubic-bezier(.22,1,.36,1) both; }
.menu-drawer { animation: drawer-from-left .32s cubic-bezier(.22,1,.36,1) both; }
.modal       { animation: modal-enter .28s cubic-bezier(.22,1,.36,1) both; }

:root {
  --black: #0e0f0e;
  --olive: #5a5548;
  --ash: #aaa197;
  --stone: #d2c8bc;
  --sand: #cdbda9;
  --ink: var(--black);
  --paper: var(--stone);
  --muted: var(--olive);
  --line: rgba(14, 15, 14, .24);
  --white: #f4eee7;
  --font-ui: "Julius Sans One", Arial, sans-serif;
  --font-display: "Julius Sans One", Arial, sans-serif;
  --font-logo: "Julius Sans One", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font-ui); font-size: 13px; line-height: 1.5; }
button, input, textarea, select { color: inherit; font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.hidden { display: none !important; }
.uppercase { text-transform: uppercase; letter-spacing: .08em; }
.muted { color: var(--muted); }
.shell { padding-inline: 22px; }
.announcement { background: var(--black); color: var(--stone); font-size: 10px; left: 0; letter-spacing: .12em; overflow: hidden; padding: 9px 0; position: fixed; right: 0; text-transform: uppercase; top: 0; white-space: nowrap; z-index: 9; }
.announcement-track { display: flex; gap: 56px; justify-content: center; width: 100%; }
.announcement-track span:last-child { display: none; }
.announcement-marquee .announcement-track { animation: announcement-scroll 18s linear infinite; justify-content: flex-start; width: max-content; }
.announcement-marquee .announcement-track span { display: inline-block; padding-left: 22px; }
.announcement-marquee .announcement-track span:last-child { display: inline-block; }
@keyframes announcement-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 28px)); }
}
.header { align-items: center; background: transparent; color: var(--white); display: grid; grid-template-columns: 1fr auto 1fr; left: 0; padding-block: 16px; position: fixed; right: 0; top: 0; transition: opacity .3s ease, transform .3s ease; z-index: 8; }
.header-with-announcement { top: 31px; }
.header-dark { color: var(--white); }
.header .logo, .header .nav a, .header-actions button, .mobile-menu-btn { mix-blend-mode: difference; }
.header .logo, .header .nav a, .header-actions .desktop-cart { -webkit-text-stroke: .7px var(--black); paint-order: stroke fill; text-shadow: 0 0 1px var(--black); }
.header-scrolled { background: var(--stone); border-bottom: 1px solid var(--line); color: var(--ink); mix-blend-mode: normal; top: 0; }
.header-scrolled .logo, .header-scrolled .nav a, .header-scrolled .header-actions button, .header-scrolled .mobile-menu-btn { mix-blend-mode: normal; }
.header-scrolled .logo, .header-scrolled .nav a, .header-scrolled .header-actions .desktop-cart { -webkit-text-stroke: 0 transparent; text-shadow: none; }
.header-hidden { opacity: 0; pointer-events: none; transform: translateY(-100%); }
.logo { font-family: var(--font-logo); font-size: 21px; font-weight: 400; letter-spacing: .16em; }
.nav, .header-actions { align-items: center; display: flex; gap: 16px; }
.header-actions { justify-content: flex-end; }
.nav a, .header-actions button, .link-btn { background: none; border: 0; cursor: pointer; font-size: 11px; letter-spacing: .08em; padding: 0; text-transform: uppercase; }
.mobile-menu-btn, .mobile-cart { display: none; }
.eyebrow { font-size: 10px; letter-spacing: .15em; margin-bottom: 12px; text-transform: uppercase; }
.button { align-items: center; background: var(--ink); border: 1px solid var(--ink); color: var(--white); cursor: pointer; display: inline-flex; font-size: 11px; justify-content: center; letter-spacing: .1em; min-height: 42px; padding: 0 18px; text-transform: uppercase; transition: .2s ease; }
.button:hover { background: transparent; color: var(--ink); }
.button.outline { background: transparent; color: var(--ink); }
.button.outline:hover { background: var(--ink); color: var(--white); }
.button.small { min-height: 34px; padding-inline: 12px; }
.section { border-bottom: 1px solid var(--line); padding-block: 56px; }
.section-head { align-items: baseline; display: flex; justify-content: space-between; margin-bottom: 24px; }
.section-head h2 { font-size: 14px; font-weight: 500; letter-spacing: .1em; margin: 0; text-transform: uppercase; }
.section-head span { color: var(--muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.product-grid { display: grid; gap: 1px; grid-template-columns: repeat(4, 1fr); }
.product-card { background: var(--ash); cursor: pointer; overflow: hidden; position: relative; }
.product-card img { aspect-ratio: .76; height: auto; object-fit: cover; transition: transform .45s ease; width: 100%; }
.product-card:hover img { transform: scale(1.025); }
.product-meta { background: var(--paper); border-top: 1px solid var(--line); display: flex; justify-content: space-between; padding: 13px 2px; }
.product-meta h3, .product-meta p { font-size: 11px; font-weight: 500; letter-spacing: .06em; margin: 0; text-transform: uppercase; }
.badge { background: var(--sand); font-size: 9px; left: 10px; letter-spacing: .08em; padding: 6px 8px; position: absolute; text-transform: uppercase; top: 10px; z-index: 1; }
.footer { background: var(--ink); color: var(--white); display: grid; gap: 30px; grid-template-columns: 1.3fr repeat(3, 1fr); padding-block: 44px; }
.footer-logo { font-size: 64px; font-weight: 700; letter-spacing: -.12em; line-height: .8; }
.footer h4 { font-size: 10px; letter-spacing: .12em; margin: 0 0 12px; text-transform: uppercase; }
.footer a, .footer p { color: var(--ash); display: block; font-size: 11px; margin: 6px 0; }
.overlay { background: rgba(0,0,0,.42); inset: 0; position: fixed; z-index: 110; }
.drawer { background: var(--paper); bottom: 0; max-width: 470px; overflow: auto; padding: 20px; position: fixed; right: 0; top: 0; width: min(94vw, 470px); z-index: 111; }
.drawer-head { align-items: center; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; padding-bottom: 15px; }
.icon-btn { background: none; border: 0; cursor: pointer; font-size: 24px; line-height: 1; padding: 2px; }
.qty { align-items: center; display: flex; gap: 9px; margin-top: 11px; }
.cart-bottom { margin-top: 24px; }
.cart-total { display: flex; font-size: 13px; justify-content: space-between; margin: 8px 0; text-transform: uppercase; }
.full { width: 100%; }
.mobile-nav { display: grid; gap: 4px; padding: 32px 0; }
.mobile-nav a { border-bottom: 1px solid var(--line); font-size: 24px; letter-spacing: -.04em; padding: 12px 0; text-transform: uppercase; }
.menu-overlay { backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); background: rgba(14,15,14,.38); }
.menu-drawer { background: rgba(14,15,14,.58); border-right: 1px solid rgba(244,238,231,.2); box-shadow: 24px 0 80px rgba(14,15,14,.28); color: var(--white); left: 0; max-width: 430px; overflow: hidden; padding: 0; right: auto; width: min(88vw, 430px); }
.menu-drawer-bg { background: radial-gradient(circle at 18% 12%, rgba(244,238,231,.18), transparent 36%), linear-gradient(145deg, rgba(90,85,72,.42), rgba(14,15,14,.88)); inset: 0; pointer-events: none; position: absolute; }
.menu-drawer::before { backdrop-filter: blur(30px) saturate(1.05); -webkit-backdrop-filter: blur(30px) saturate(1.05); background: linear-gradient(135deg, rgba(244,238,231,.22), rgba(90,85,72,.18)); border: 1px solid rgba(244,238,231,.18); border-radius: 34px; content: ""; inset: 12px; pointer-events: none; position: absolute; }
.menu-drawer-head, .menu-drawer .mobile-nav, .menu-drawer-foot { position: relative; z-index: 1; }
.menu-drawer-head { align-items: flex-start; display: flex; justify-content: space-between; padding: 26px 24px 0; }
.menu-drawer-head span { color: rgba(244,238,231,.68); display: block; font-size: 9px; letter-spacing: .16em; margin-bottom: 10px; text-transform: uppercase; }
.menu-drawer-head b { display: block; font-size: 22px; font-weight: 400; letter-spacing: .22em; line-height: 1; }
.menu-close { align-items: center; backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); background: rgba(244,238,231,.16); border: 1px solid rgba(244,238,231,.24); border-radius: 50%; color: var(--white); cursor: pointer; display: flex; font-size: 24px; height: 46px; justify-content: center; line-height: 1; padding: 0 0 3px; width: 46px; }
.menu-drawer .mobile-nav { gap: 0; padding: clamp(56px, 12vh, 110px) 24px 28px; }
.menu-drawer .mobile-nav a { align-items: baseline; border-bottom: 1px solid rgba(244,238,231,.18); display: grid; gap: 18px; grid-template-columns: 34px 1fr; letter-spacing: 0; padding: 18px 0; text-transform: none; }
.menu-drawer .mobile-nav a:first-child { border-top: 1px solid rgba(244,238,231,.18); }
.menu-drawer .mobile-nav a span { color: rgba(244,238,231,.5); font-size: 9px; letter-spacing: .12em; }
.menu-drawer .mobile-nav a b { color: var(--white); font-size: clamp(32px, 9vw, 58px); font-weight: 400; letter-spacing: -.05em; line-height: .9; text-shadow: 0 14px 34px rgba(0,0,0,.28); }
.menu-drawer .mobile-nav a:active b { transform: translateX(4px); }
.menu-drawer-foot { bottom: 0; left: 0; padding: 0 24px 26px; position: absolute; right: 0; }
.menu-drawer-foot p { color: rgba(244,238,231,.84); font-size: 10px; letter-spacing: .14em; margin: 0 0 9px; text-transform: uppercase; }
.menu-drawer-foot span { color: rgba(244,238,231,.58); display: block; font-size: 11px; line-height: 1.5; max-width: 280px; }
.product-page { background: var(--paper); display: grid; grid-template-columns: minmax(0, 1fr) min(34vw, 420px); min-height: 100vh; }
.product-gallery { background: var(--ash); display: grid; gap: 1px; grid-template-columns: 1fr; }
.product-photo { background: var(--ash); margin: 0; min-height: 100vh; overflow: hidden; position: relative; }
.product-photo img { height: 100vh; object-fit: cover; width: 100%; }
.product-photo button { background: transparent; border: 0; bottom: 16px; color: var(--ink); cursor: pointer; font-size: 10px; left: 16px; letter-spacing: .1em; padding: 0; position: absolute; text-transform: uppercase; }
.product-panel-wrap { align-items: end; display: flex; min-height: 100vh; padding: 78px 18px 26px; }
.product-panel { bottom: 26px; position: sticky; width: 100%; }
.product-heading { border-bottom: 1px solid var(--line); margin-bottom: 0; padding-bottom: 14px; }
.product-heading h1 { font-family: var(--font-ui); font-size: 13px; font-weight: 500; letter-spacing: .08em; line-height: 1.2; margin: 0 0 7px; text-transform: uppercase; }
.product-heading .price { font-size: 11px; letter-spacing: .06em; margin: 0; text-transform: uppercase; }
.product-heading s { color: var(--muted); margin-left: 6px; }
.option-row { border-bottom: 1px solid var(--line); display: grid; gap: 10px; grid-template-columns: 72px 1fr; padding: 13px 0; }
.option-row span { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.option-row div { display: flex; flex-wrap: wrap; gap: 6px; }
.option-row button { background: transparent; border: 1px solid var(--line); cursor: pointer; font-size: 10px; letter-spacing: .08em; min-height: 29px; padding: 0 10px; text-transform: uppercase; }
.option-row button.selected { background: var(--ink); border-color: var(--ink); color: var(--white); }
.add-to-cart { background: var(--ink); border: 1px solid var(--ink); color: var(--white); cursor: pointer; font-size: 10px; letter-spacing: .1em; margin: 14px 0 17px; min-height: 42px; text-transform: uppercase; width: 100%; }
.product-description { font-size: 12px; line-height: 1.55; margin: 0 0 16px; }
.product-details { border-top: 1px solid var(--line); font-size: 12px; padding-top: 13px; }
.product-details summary { cursor: pointer; font-size: 10px; letter-spacing: .1em; list-style: none; text-transform: uppercase; }
.related { background: var(--paper); }
.page { min-height: 68vh; padding-block: 54px; }
.page-title { font-family: var(--font-display); font-size: clamp(48px, 9vw, 118px); font-weight: 400; letter-spacing: -.06em; line-height: .95; margin: 0 0 32px; }
.form-grid { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; }
.field { display: grid; gap: 5px; }
.field.fullrow { grid-column: 1 / -1; }
.field label { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.field input, .field textarea, .field select { background: transparent; border: 1px solid var(--line); border-radius: 0; min-height: 42px; padding: 10px; width: 100%; }
.field textarea { min-height: 90px; resize: vertical; }
.checkout { display: grid; gap: 54px; grid-template-columns: 1fr 370px; max-width: 1080px; }
.summary { border: 1px solid var(--line); padding: 18px; }
.summary-line { display: flex; justify-content: space-between; padding: 7px 0; }
.notice { background: var(--sand); margin-bottom: 20px; padding: 13px; }
.checkout-page { background: radial-gradient(circle at 12% 10%, rgba(244,238,231,.2), transparent 34%), linear-gradient(145deg, var(--olive), var(--black)); color: var(--white); margin-inline: calc(50% - 50vw); min-height: 100vh; padding: clamp(90px, 12vw, 140px) max(22px, calc(50vw - 640px)) clamp(42px, 7vw, 86px); }
.checkout-hero { margin-bottom: clamp(30px, 5vw, 56px); max-width: 780px; }
.checkout-hero .eyebrow { color: rgba(244,238,231,.7); }
.checkout-hero .page-title { color: var(--white); margin-bottom: 18px; text-shadow: 0 18px 54px rgba(0,0,0,.3); }
.checkout-hero p { color: rgba(244,238,231,.72); font-size: 13px; line-height: 1.6; margin: 0; max-width: 440px; }
.checkout-page .checkout { align-items: start; gap: 18px; max-width: none; }
.checkout-form, .checkout-summary { backdrop-filter: blur(30px) saturate(1.08); -webkit-backdrop-filter: blur(30px) saturate(1.08); background: linear-gradient(135deg, rgba(244,238,231,.28), rgba(90,85,72,.24)); border: 1px solid rgba(244,238,231,.28); border-radius: 28px; box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 28px 80px rgba(0,0,0,.22); }
.checkout-form { padding: clamp(18px, 4vw, 34px); }
.checkout-page .notice { background: rgba(244,238,231,.18); border: 1px solid rgba(244,238,231,.22); border-radius: 18px; color: rgba(244,238,231,.82); font-size: 10px; letter-spacing: .08em; line-height: 1.5; margin-bottom: 22px; padding: 14px 16px; text-transform: uppercase; }
.checkout-page .field { gap: 8px; }
.checkout-page .field label { color: rgba(244,238,231,.68); font-size: 9px; letter-spacing: .14em; }
.checkout-page .field input, .checkout-page .field textarea { background: rgba(14,15,14,.24); border: 1px solid rgba(244,238,231,.22); border-radius: 16px; color: var(--white); min-height: 52px; padding: 14px 15px; }
.checkout-page .field textarea { min-height: 118px; }
.checkout-page .field input:focus, .checkout-page .field textarea:focus { border-color: rgba(244,238,231,.62); box-shadow: 0 0 0 3px rgba(244,238,231,.1); outline: 0; }
.checkout-submit { background: rgba(244,238,231,.96); border-color: rgba(244,238,231,.96); border-radius: 999px; color: var(--black); margin-top: 22px; min-height: 56px; width: 100%; }
.checkout-submit:hover { background: transparent; color: var(--white); }
.checkout-summary { border-color: rgba(244,238,231,.22); color: var(--white); padding: 22px; position: sticky; top: 96px; }
.checkout-summary .eyebrow { color: rgba(244,238,231,.62); }
.checkout-summary hr { border: 0; border-top: 1px solid rgba(244,238,231,.2); margin: 16px 0; }
.checkout-summary .summary-line { border-bottom: 1px solid rgba(244,238,231,.12); color: rgba(244,238,231,.76); gap: 18px; padding: 12px 0; }
.checkout-summary .summary-line:last-child { border-bottom: 0; color: var(--white); font-size: 14px; }
.checkout-summary b { color: var(--white); white-space: nowrap; }
.auth-box { max-width: 480px; }
.auth-switch { display: flex; gap: 16px; margin-bottom: 20px; }
.auth-switch button { background: transparent; border: 0; border-bottom: 1px solid transparent; cursor: pointer; padding: 4px 0; text-transform: uppercase; }
.auth-switch .active { border-color: var(--ink); }
.orders { display: grid; gap: 12px; }
.order { border: 1px solid var(--line); padding: 15px; }
.order-head { display: flex; justify-content: space-between; }
.status { background: var(--sand); display: inline-flex; font-size: 10px; letter-spacing: .08em; padding: 5px 8px; text-transform: uppercase; }
.admin { --admin-panel: rgba(210, 200, 188, .18); --admin-panel-strong: rgba(244, 238, 231, .78); --admin-border: rgba(244,238,231,.18); --admin-border-dark: rgba(14,15,14,.14); --admin-copy: rgba(244,238,231,.78); background: radial-gradient(circle at 14% 8%, rgba(244,238,231,.2), transparent 32%), radial-gradient(circle at 88% 18%, rgba(205,189,169,.12), transparent 34%), linear-gradient(145deg, var(--olive), var(--black)); color: var(--white); min-height: 100vh; }
.admin-bar { align-items: center; backdrop-filter: blur(22px) saturate(1.05); -webkit-backdrop-filter: blur(22px) saturate(1.05); background: rgba(14,15,14,.66); border-bottom: 1px solid var(--admin-border); color: var(--white); display: flex; justify-content: space-between; min-height: 72px; padding: 16px clamp(18px, 3vw, 34px); position: sticky; top: 0; z-index: 12; }
.admin-bar b { display: block; font-size: 20px; font-weight: 400; letter-spacing: .14em; line-height: 1; }
.admin-bar span { color: rgba(244,238,231,.58); display: block; font-size: 9px; letter-spacing: .14em; margin-top: 7px; text-transform: uppercase; }
.admin-actions { align-items: center; display: flex; gap: 18px; }
.admin-actions .link-btn { color: rgba(244,238,231,.76); }
.admin-layout { display: grid; grid-template-columns: 260px 1fr; }
.admin-nav { backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); background: rgba(14,15,14,.26); border-right: 1px solid var(--admin-border); min-height: calc(100vh - 72px); padding: 30px 18px; position: sticky; top: 72px; }
.admin-nav p { color: rgba(244,238,231,.5); font-size: 9px; letter-spacing: .16em; margin: 0 0 18px; padding-left: 12px; text-transform: uppercase; }
.admin-nav button { align-items: center; background: transparent; border: 1px solid transparent; border-radius: 18px; color: rgba(244,238,231,.7); cursor: pointer; display: flex; font-size: 10px; justify-content: space-between; letter-spacing: .11em; margin-bottom: 10px; min-height: 46px; padding: 0 16px; text-align: left; text-transform: uppercase; transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease; width: 100%; }
.admin-nav button:hover { background: rgba(244,238,231,.1); border-color: rgba(244,238,231,.12); color: var(--white); transform: translateX(2px); }
.admin-nav button.active { background: rgba(244,238,231,.9); border-color: rgba(244,238,231,.9); color: var(--black); }
.admin-main { padding: clamp(24px, 4.5vw, 58px); }
.admin-head { align-items: flex-end; display: flex; gap: 24px; justify-content: space-between; margin-bottom: clamp(24px, 4vw, 42px); }
.admin-head h1 { color: var(--white); font-size: clamp(38px, 6vw, 86px); font-weight: 400; letter-spacing: -.08em; line-height: .9; margin: 8px 0 0; }
.admin-head p { color: rgba(244,238,231,.62); font-size: 12px; line-height: 1.6; margin: 16px 0 0; max-width: 660px; }
.admin-kicker { color: rgba(244,238,231,.58); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.admin-card { backdrop-filter: blur(28px) saturate(1.05); -webkit-backdrop-filter: blur(28px) saturate(1.05); background: linear-gradient(135deg, rgba(244,238,231,.24), rgba(90,85,72,.18)); border: 1px solid var(--admin-border); border-radius: 30px; box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 26px 80px rgba(0,0,0,.18); color: var(--white); padding: clamp(18px, 3vw, 28px); }
.admin-card-head { align-items: center; border-bottom: 1px solid rgba(244,238,231,.16); display: flex; justify-content: space-between; margin: -2px 0 22px; padding-bottom: 18px; }
.admin-card-head h2 { color: var(--white); font-size: 16px; font-weight: 700; letter-spacing: .08em; margin: 0; text-transform: uppercase; }
.admin-card-head p { color: rgba(244,238,231,.58); font-size: 11px; line-height: 1.5; margin: 6px 0 0; }
.admin-form-card { max-width: 860px; }
.order-filters { align-items: end; background: rgba(14,15,14,.2); border: 1px solid rgba(244,238,231,.14); border-radius: 22px; display: grid; gap: 14px; grid-template-columns: 1fr 1fr 1.4fr auto auto; margin-bottom: 24px; padding: 18px; }
.filter-count { color: rgba(244,238,231,.62); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.status-filters { border: 1px solid rgba(244,238,231,.14); border-radius: 18px; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 12px; }
.status-filters legend { color: rgba(244,238,231,.58); font-size: 9px; letter-spacing: .14em; padding: 0 6px; text-transform: uppercase; }
.status-filters label { align-items: center; background: rgba(244,238,231,.1); border: 1px solid rgba(244,238,231,.12); border-radius: 999px; color: rgba(244,238,231,.78); cursor: pointer; display: inline-flex; font-size: 9px; gap: 6px; letter-spacing: .08em; min-height: 32px; padding: 0 10px; text-transform: uppercase; }
.status-filters input { accent-color: var(--stone); }
.stats { display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); margin-bottom: 26px; }
.stat { backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); background: linear-gradient(135deg, rgba(244,238,231,.25), rgba(90,85,72,.2)); border: 1px solid var(--admin-border); border-radius: 28px; box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 20px 60px rgba(0,0,0,.14); padding: clamp(22px, 3vw, 30px); }
.stat span { color: rgba(244,238,231,.58); display: block; font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.stat b { color: var(--white); display: block; font-size: clamp(34px, 5vw, 62px); font-weight: 400; letter-spacing: -.08em; line-height: .9; margin-top: 22px; }
.stat small { color: rgba(244,238,231,.6); display: block; font-size: 10px; letter-spacing: .08em; margin-top: 16px; text-transform: uppercase; }
.table-wrap { background: rgba(14,15,14,.16); border: 1px solid rgba(244,238,231,.12); border-radius: 22px; overflow-x: auto; }
.admin table { border-collapse: separate; border-spacing: 0; font-size: 11px; width: 100%; }
.admin th, .admin td { border-bottom: 1px solid rgba(244,238,231,.12); padding: 18px 16px; text-align: left; vertical-align: middle; }
.admin tbody tr { transition: background .18s ease; }
.admin tbody tr:hover { background: rgba(244,238,231,.08); }
.admin tbody tr:last-child td { border-bottom: 0; }
.admin th { background: rgba(14,15,14,.2); color: rgba(244,238,231,.58); font-size: 9px; letter-spacing: .14em; position: sticky; text-transform: uppercase; top: 72px; }
.admin td { color: rgba(244,238,231,.78); }
.admin td img { background: var(--ash); border: 1px solid rgba(244,238,231,.16); border-radius: 16px; height: 72px; object-fit: cover; width: 58px; }
.admin td b { color: var(--white); font-weight: 700; letter-spacing: -.01em; }
.admin-order-list { display: grid; gap: 12px; }
.admin-order-card { align-items: start; background: rgba(14,15,14,.18); border: 1px solid rgba(244,238,231,.12); border-radius: 22px; cursor: pointer; display: grid; gap: 18px; grid-template-columns: minmax(140px, .9fr) minmax(190px, 1.35fr) minmax(150px, 1fr) minmax(110px, .65fr) minmax(150px, .75fr); padding: 16px; transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.admin-order-card:hover { background: rgba(244,238,231,.1); border-color: rgba(244,238,231,.24); transform: translateY(-1px); }
.admin-order-card span { color: rgba(244,238,231,.48); display: block; font-size: 8px; letter-spacing: .15em; margin-bottom: 7px; text-transform: uppercase; }
.admin-order-card b { color: var(--white); display: block; font-size: 11px; line-height: 1.35; overflow-wrap: anywhere; }
.admin-order-card small { color: rgba(244,238,231,.54); display: block; font-size: 10px; line-height: 1.45; margin-top: 4px; overflow-wrap: anywhere; }
.admin-order-card p { color: rgba(244,238,231,.68); font-size: 11px; line-height: 1.5; margin: 4px 0 0; overflow-wrap: anywhere; }
.admin-order-status { min-width: 0; }
.row-actions { align-items: center; display: flex; gap: 12px; justify-content: flex-end; }
.admin .muted { color: rgba(244,238,231,.52); }
.admin .link-btn { color: rgba(244,238,231,.82); font-size: 10px; text-decoration: underline; text-underline-offset: 4px; }
.admin .link-btn.danger { color: #f0b1a8; }
.admin .button { background: rgba(244,238,231,.92); border-color: rgba(244,238,231,.92); border-radius: 999px; color: var(--black); font-weight: 700; }
.admin .button:hover { background: transparent; color: var(--white); }
.admin .field { gap: 8px; }
.admin .field label, .admin .field span.uppercase { color: rgba(244,238,231,.58); font-size: 9px; letter-spacing: .14em; }
.admin .field input, .admin .field textarea, .admin .field select { background: rgba(14,15,14,.22); border-color: rgba(244,238,231,.18); border-radius: 16px; color: var(--white); min-height: 48px; padding: 13px 14px; }
.admin .field textarea { min-height: 120px; }
.admin .field input:focus, .admin .field textarea:focus, .admin .field select:focus { border-color: rgba(244,238,231,.62); box-shadow: 0 0 0 3px rgba(244,238,231,.08); outline: 0; }
.admin label.field input[type="checkbox"] { accent-color: var(--stone); min-height: auto; width: auto; }
.admin-chip { background: rgba(244,238,231,.12); border: 1px solid rgba(244,238,231,.14); border-radius: 999px; color: rgba(244,238,231,.7); display: inline-flex; font-size: 9px; letter-spacing: .1em; padding: 7px 10px; text-transform: uppercase; white-space: nowrap; }
.admin-chip.success { background: rgba(244,238,231,.92); border-color: rgba(244,238,231,.92); color: var(--black); }
.admin-chip.new { background: rgba(244,238,231,.92); border-color: rgba(244,238,231,.92); color: var(--black); }
.admin-chip.confirmed { background: rgba(205,189,169,.72); border-color: rgba(205,189,169,.82); color: var(--black); }
.admin-chip.out-for-delivery { background: rgba(170,161,151,.7); border-color: rgba(170,161,151,.82); color: var(--black); }
.admin-chip.delivered { background: rgba(244,238,231,.22); border-color: rgba(244,238,231,.42); color: var(--white); }
.admin-chip.cancelled { background: rgba(240,177,168,.22); border-color: rgba(240,177,168,.38); color: #ffd8d2; }
.empty-state { align-items: center; background: rgba(14,15,14,.18); border: 1px dashed rgba(244,238,231,.24); border-radius: 24px; display: grid; justify-items: center; min-height: 210px; padding: 34px; text-align: center; }
.empty-state b { color: var(--white); font-size: 16px; letter-spacing: -.03em; text-transform: uppercase; }
.empty-state p { color: rgba(244,238,231,.58); font-size: 11px; margin: 10px 0 0; }
.modal { background: var(--paper); left: 50%; max-height: 90vh; max-width: 650px; overflow: auto; padding: 22px; position: fixed; top: 50%; transform: translate(-50%, -50%); width: min(92vw, 650px); z-index: 112; }
.admin-modal { backdrop-filter: blur(30px) saturate(1.06); -webkit-backdrop-filter: blur(30px) saturate(1.06); background: linear-gradient(135deg, rgba(244,238,231,.92), rgba(210,200,188,.86)); border: 1px solid rgba(244,238,231,.42); border-radius: 28px; box-shadow: 0 34px 100px rgba(14,15,14,.36); color: var(--black); padding: 26px; }
.admin-modal .drawer-head { border-color: rgba(14,15,14,.14); padding-bottom: 18px; }
.admin-modal .drawer-head h2 { font-size: 18px; font-weight: 400; letter-spacing: -.02em; margin: 0; text-transform: uppercase; }
.admin-modal .field label, .admin-modal label { color: var(--olive); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.admin-modal .field input, .admin-modal .field textarea, .admin-modal .field select { background: rgba(244,238,231,.52); border-color: rgba(14,15,14,.18); border-radius: 14px; color: var(--black); min-height: 46px; padding: 12px 13px; }
.admin-modal .field textarea { min-height: 112px; }
.admin-modal .button { border-radius: 999px; }
.admin-modal-kicker { color: var(--olive); display: block; font-size: 9px; letter-spacing: .14em; margin-bottom: 6px; text-transform: uppercase; }
.order-detail { display: grid; gap: 18px; margin-top: 20px; }
.order-detail-hero { background: rgba(14,15,14,.08); border: 1px solid rgba(14,15,14,.12); border-radius: 22px; padding: 18px; }
.order-detail-hero b { color: var(--black); display: block; font-size: clamp(30px, 6vw, 48px); font-weight: 400; letter-spacing: -.07em; line-height: .95; margin-top: 18px; }
.order-detail-hero small { color: var(--olive); display: block; font-size: 10px; letter-spacing: .08em; margin-top: 10px; text-transform: uppercase; }
.order-detail-grid { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
.order-detail-grid section { background: rgba(244,238,231,.42); border: 1px solid rgba(14,15,14,.1); border-radius: 18px; padding: 15px; }
.order-detail-grid span { color: var(--olive); display: block; font-size: 9px; letter-spacing: .14em; margin-bottom: 10px; text-transform: uppercase; }
.order-detail-grid b { color: var(--black); display: block; overflow-wrap: anywhere; }
.order-detail-grid p { color: rgba(14,15,14,.72); font-size: 12px; line-height: 1.55; margin: 5px 0 0; overflow-wrap: anywhere; }
.order-detail-actions { border-top: 1px solid rgba(14,15,14,.12); display: grid; gap: 10px; padding-top: 18px; }
.order-detail-actions.two { grid-template-columns: 1fr 1fr; }
.admin-modal .button.outline.danger { background: transparent; border-color: rgba(91,32,26,.32); color: #5b201a; }
.modal h2 { margin-top: 0; }
.expanded-image { max-height: 84vh; object-fit: contain; width: 100%; }
.image-close { position: absolute; right: 9px; top: 7px; z-index: 1; }
.toast { background: var(--sand); bottom: 15px; left: 50%; padding: 11px 15px; position: fixed; transform: translateX(-50%); z-index: 200; }

@media (max-width: 1180px) {
  .admin-order-card { grid-template-columns: 1fr 1fr; }
  .admin-order-status { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .shell { padding-inline: 14px; }
  .nav { display: none; }
  .header { display: flex; justify-content: space-between; min-height: 52px; padding-block: 14px; }
  .logo { left: 50%; position: absolute; transform: translateX(-50%); }
  .header-actions { gap: 12px; margin-left: auto; }
  .header-actions .hide-mobile { display: none; }
  .desktop-cart { display: none; }
  .mobile-menu-btn { background: none; border: 0; cursor: pointer; display: grid; gap: 5px; padding: 4px 0; width: 24px; }
  .mobile-menu-btn span { background: currentColor; box-shadow: 0 0 0 1px var(--black); display: block; height: 1px; width: 20px; }
  .mobile-cart { background: none; border: 0; cursor: pointer; display: block; height: 24px; padding: 0; position: relative; width: 24px; }
  .mobile-cart svg { fill: none; filter: drop-shadow(0 0 1px var(--black)); height: 22px; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; width: 22px; }
  .mobile-cart span { align-items: center; background: var(--sand); border-radius: 50%; color: var(--ink); display: flex; font-size: 8px; height: 14px; justify-content: center; position: absolute; right: -6px; top: -5px; width: 14px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-page, .checkout { grid-template-columns: 1fr; }
  .checkout-page { padding: 86px 14px 34px; }
  .checkout-hero { margin-bottom: 26px; }
  .checkout-hero .page-title { font-size: clamp(54px, 16vw, 86px); }
  .checkout-form, .checkout-summary { border-radius: 24px; }
  .checkout-summary { position: static; }
  .product-page { display: block; min-height: 0; }
  .product-photo { min-height: 0; }
  .product-photo img { height: 72vh; min-height: 520px; }
  .product-panel-wrap { display: block; min-height: 0; padding: 18px 14px 28px; }
  .product-panel { bottom: auto; position: static; }
  .footer { grid-template-columns: 1fr 1fr; padding-inline: 14px; }
  .footer-logo { grid-column: 1 / -1; }
  .form-grid { grid-template-columns: 1fr; }
  .field.fullrow { grid-column: auto; }
  .admin { background-attachment: fixed; }
  .admin-layout { display: block; }
  .admin-bar { align-items: flex-start; flex-wrap: wrap; gap: 12px; min-height: 74px; padding: 14px; }
  .admin-bar b { font-size: 17px; letter-spacing: .16em; }
  .admin-bar span { font-size: 8px; margin-top: 6px; }
  .admin-actions { gap: 14px; margin-left: auto; padding-top: 2px; }
  .admin-actions .link-btn { font-size: 9px; }
  .admin-nav { background: rgba(14,15,14,.44); border-bottom: 1px solid rgba(244,238,231,.14); border-right: 0; display: flex; gap: 8px; margin-inline: -14px; min-height: auto; overflow-x: auto; padding: 12px 14px 14px; position: sticky; scrollbar-width: none; top: 74px; z-index: 11; }
  .admin-nav::-webkit-scrollbar { display: none; }
  .admin-nav p { display: none; }
  .admin-nav button { border-radius: 999px; flex: 0 0 auto; margin: 0; min-height: 40px; padding-inline: 16px; white-space: nowrap; width: auto; }
  .admin-nav button:hover { transform: none; }
  .admin-main { padding: 24px 14px 38px; }
  .admin-head { align-items: flex-start; flex-direction: column; gap: 16px; margin-bottom: 24px; }
  .admin-head h1 { font-size: clamp(42px, 14vw, 72px); }
  .admin-head p { font-size: 12px; margin-top: 12px; }
  .admin-head .button, .admin-head a.button { min-height: 46px; width: 100%; }
  .admin-card, .stat { border-radius: 24px; }
  .admin-card { padding: 16px; }
  .admin-card-head { align-items: flex-start; flex-direction: column; gap: 4px; margin-bottom: 18px; padding-bottom: 16px; }
  .stats { grid-template-columns: 1fr; }
  .stat { padding: 20px; }
  .stat b { font-size: clamp(36px, 13vw, 56px); margin-top: 18px; }
  .order-filters { grid-template-columns: 1fr; padding: 14px; }
  .status-filters { gap: 7px; padding: 10px; }
  .status-filters label { min-height: 34px; }
  .filter-count { white-space: normal; }
  .admin .field input, .admin .field textarea, .admin .field select { font-size: 16px; min-height: 50px; }
  .admin th, .admin td { padding: 15px 13px; }
  .admin-order-card { grid-template-columns: 1fr; gap: 14px; padding: 14px; }
  .admin-order-card b { font-size: 12px; }
  .admin-order-card p, .admin-order-card small { font-size: 11px; }
  .catalog-table-wrap { background: transparent; border: 0; border-radius: 0; overflow: visible; }
  .catalog-table thead { display: none; }
  .catalog-table, .catalog-table tbody, .catalog-table tr, .catalog-table td { display: block; width: 100%; }
  .catalog-table tr { background: rgba(14,15,14,.2); border: 1px solid rgba(244,238,231,.14); border-radius: 22px; margin-bottom: 12px; overflow: hidden; padding: 12px; }
  .catalog-table td { border-bottom: 1px solid rgba(244,238,231,.1); display: grid; gap: 10px; grid-template-columns: 92px 1fr; min-height: 42px; padding: 11px 4px; }
  .catalog-table td::before { color: rgba(244,238,231,.5); content: attr(data-label); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; }
  .catalog-table td:last-child { border-bottom: 0; }
  .catalog-table td img { height: 108px; width: 86px; }
  .catalog-table .row-actions { justify-content: flex-start; }
  .admin-modal { border-radius: 24px 24px 0 0; bottom: 0; left: 0; max-height: 92svh; max-width: none; padding: 18px 14px 24px; right: 0; top: auto; transform: none; width: 100%; }
  .admin-modal .drawer-head { align-items: center; position: sticky; top: -18px; z-index: 2; }
  .admin-modal .form-grid { gap: 12px; grid-template-columns: 1fr; }
  .admin-modal .field.fullrow { grid-column: auto; }
  .admin-modal .button { min-height: 50px; width: 100%; }
  .order-detail-grid { grid-template-columns: 1fr; }
  .order-detail-actions.two { grid-template-columns: 1fr; }
  .empty-state { border-radius: 22px; min-height: 180px; padding: 26px 18px; }
}

@media (max-width: 390px) {
  .admin-bar { display: grid; grid-template-columns: 1fr; }
  .admin-actions { justify-content: space-between; margin-left: 0; width: 100%; }
  .admin-nav { top: 104px; }
  .admin-head h1 { font-size: clamp(38px, 13vw, 58px); }
  .catalog-table td { grid-template-columns: 1fr; }
  .catalog-table td::before { margin-bottom: -4px; }
}

/* Drop 001 rebuild */
:root {
  --black: #0A0A0A;
  --rich: #111111;
  --charcoal: #1A1A1A;
  --gold: #C8A15A;
  --gold-hi: #D4AF37;
  --gold-dark: #A67C32;
  --green: #014421;
  --emerald: #0B5D3B;
  --red: #7A0019;
  --burgundy: #5C0013;
  --card: #151515;
  --border: #2A2A2A;
  --text: #F5F5F5;
  --subtext: #B0B0B0;
  --muted: #7A7A7A;
  --ink: var(--black);
  --paper: var(--black);
  --line: var(--border);
  --white: var(--text);
}

body { background: var(--black); color: var(--text); font-size: 14px; letter-spacing: .04em; }
.shell { padding-inline: clamp(20px, 4vw, 72px); }
.announcement { background: #050505; border-bottom: 1px solid var(--border); color: var(--gold); font-size: 11px; letter-spacing: .24em; padding: 12px 0; position: fixed; }
.header { background: rgba(10,10,10,.92); border-bottom: 1px solid var(--border); color: var(--text); display: grid; grid-template-columns: 1fr auto 1fr; min-height: 86px; padding-block: 18px; position: sticky; top: 0; z-index: 18; }
.header-with-announcement { top: 36px; }
.header .logo { color: var(--gold); font-size: clamp(28px, 4vw, 54px); font-weight: 400; letter-spacing: .28em; text-shadow: none; -webkit-text-stroke: 0 transparent; }
.header .logo, .header .nav a, .header-actions button, .mobile-menu-btn { mix-blend-mode: normal; }
.nav, .header-actions { gap: clamp(20px, 3vw, 46px); }
.nav a, .header-actions button, .link-btn { color: var(--text); font-size: 12px; font-weight: 700; letter-spacing: .16em; }
.desktop-cart { color: var(--text); }
.mobile-menu-btn { background: none; border: 0; display: grid; gap: 6px; padding: 0; width: 34px; }
.mobile-menu-btn span { background: var(--text); display: block; height: 1px; width: 28px; }
.mobile-cart { background: none; border: 0; color: var(--text); display: none; position: relative; }
.mobile-cart svg { fill: none; height: 24px; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; width: 24px; }
.mobile-cart span { color: var(--text); font-size: 10px; position: absolute; right: -15px; top: 1px; }
.button { background: linear-gradient(135deg, var(--gold), #efcb78); border: 1px solid var(--gold); color: var(--black); font-weight: 800; letter-spacing: .14em; min-height: 58px; }
.button:hover { background: var(--gold-hi); color: var(--black); }
.button:disabled { cursor: not-allowed; opacity: .55; }
.button.outline { background: transparent; border-color: var(--gold); color: var(--gold); }
.button.outline:hover { background: var(--gold); color: var(--black); }

.storefront { background: radial-gradient(circle at 20% 0, rgba(200,161,90,.08), transparent 28%), var(--black); min-height: 100vh; }
.product-page.launch-product { background: var(--black); display: grid; gap: clamp(28px, 5vw, 70px); grid-template-columns: minmax(0, 1.05fr) minmax(380px, .75fr); margin: 0 auto; max-width: 1800px; min-height: auto; padding: clamp(26px, 4vw, 72px) clamp(20px, 4vw, 72px) 64px; }
.product-media { display: grid; gap: 22px; grid-template-columns: 108px minmax(0, 1fr); }
.product-thumbs { display: grid; gap: 14px; align-content: start; }
.product-thumbs button { background: var(--card); border: 1px solid var(--border); cursor: pointer; padding: 0; }
.product-thumbs button.active { border-color: var(--gold); }
.product-thumbs img { aspect-ratio: .86; height: 132px; object-fit: cover; width: 100%; }
.product-hero-image { background: var(--rich); border: 1px solid var(--border); margin: 0; min-height: min(70vh, 820px); overflow: hidden; position: relative; }
.product-hero-image img { height: 100%; object-fit: cover; width: 100%; }
.zoom-btn { align-items: center; background: rgba(10,10,10,.72); border: 1px solid var(--border); border-radius: 50%; color: var(--text); cursor: pointer; display: flex; font-size: 24px; height: 58px; justify-content: center; position: absolute; right: 28px; top: 28px; width: 58px; z-index: 2; }
.trust-strip { background: var(--rich); border: 1px solid var(--border); display: grid; gap: 1px; grid-column: 2; grid-template-columns: repeat(4, 1fr); }
.trust-strip span { border-right: 1px solid var(--border); color: var(--gold); display: grid; font-size: 11px; gap: 5px; justify-items: center; padding: 24px 12px; text-align: center; text-transform: uppercase; }
.trust-strip span:last-child { border-right: 0; }
.trust-strip small { color: var(--subtext); font-size: 10px; text-transform: none; }
.product-panel { background: transparent; bottom: auto; color: var(--text); position: sticky; top: 130px; width: 100%; }
.breadcrumbs { color: var(--subtext); font-size: 11px; letter-spacing: .16em; margin-bottom: 46px; text-transform: uppercase; }
.eyebrow, .section-kicker { color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.product-panel h1 { color: var(--text); font-size: clamp(42px, 4.6vw, 76px); font-weight: 400; letter-spacing: -.03em; line-height: 1; margin: 22px 0 26px; text-transform: uppercase; }
.product-panel .price { color: var(--text); font-size: 28px; margin: 0 0 24px; }
.product-lede { color: var(--subtext); font-size: 16px; line-height: 1.9; margin: 0; }
.product-divider { border-top: 1px solid var(--border); margin: 32px 0; }
.option-block { border-bottom: 1px solid var(--border); padding: 0 0 28px; margin-bottom: 28px; }
.option-block b { color: var(--text); display: block; font-size: 12px; letter-spacing: .12em; margin-bottom: 18px; text-transform: uppercase; }
.option-block b span { color: var(--subtext); }
.swatches { display: flex; gap: 16px; }
.swatch { background: var(--swatch); border: 1px solid var(--border); border-radius: 50%; cursor: pointer; height: 38px; padding: 0; width: 38px; }
.swatch.selected { box-shadow: 0 0 0 2px var(--black), 0 0 0 3px var(--gold); }
.swatch.disabled { opacity: .55; }
.sizes { display: flex; flex-wrap: wrap; gap: 14px; }
.sizes button { background: transparent; border: 1px solid var(--border); color: var(--text); cursor: pointer; font-weight: 700; height: 58px; min-width: 74px; }
.sizes button.selected { border-color: var(--gold); color: var(--gold); }
.size-guide { background: transparent; border: 0; color: var(--gold); cursor: pointer; font-size: 11px; font-weight: 800; letter-spacing: .12em; margin-top: 18px; padding: 0; text-transform: uppercase; }
.cta-stack { display: grid; gap: 16px; margin: 30px 0; }
.accordion-list { border-top: 1px solid var(--border); }
.accordion-list details { border-bottom: 1px solid var(--border); padding: 22px 0; }
.accordion-list summary { color: var(--text); cursor: pointer; font-size: 13px; font-weight: 800; letter-spacing: .14em; list-style: none; text-transform: uppercase; }
.accordion-list summary::after { content: "+"; float: right; }
.accordion-list details[open] summary::after { content: "-"; }
.accordion-list p, .accordion-list li { color: var(--subtext); font-size: 13px; line-height: 1.8; }
.about-band { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); display: grid; grid-template-columns: 1.1fr .9fr; }
.about-band img { height: 100%; object-fit: cover; width: 100%; }
.about-band div { align-content: center; background: var(--rich); display: grid; padding: clamp(42px, 7vw, 110px); }
.about-band span, .signup-band p { color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.about-band h2, .signup-band h2 { color: var(--text); font-size: clamp(38px, 5vw, 70px); font-weight: 400; line-height: 1; margin: 18px 0; text-transform: uppercase; }
.about-band p { color: var(--subtext); font-size: 16px; line-height: 1.9; max-width: 520px; }
.drop-grid { padding: clamp(48px, 7vw, 100px) clamp(20px, 5vw, 90px); text-align: center; }
.related-products { display: grid; gap: 28px; grid-template-columns: repeat(4, 1fr); margin-top: 36px; text-align: left; }
.drop-card { cursor: pointer; }
.drop-card img { background: var(--card); border: 1px solid var(--border); aspect-ratio: 1.25; object-fit: cover; width: 100%; }
.drop-card h3 { color: var(--text); font-size: 13px; letter-spacing: .12em; margin: 18px 0 6px; text-transform: uppercase; }
.drop-card p { color: var(--subtext); font-size: 12px; margin: 0 0 12px; text-transform: uppercase; }
.drop-card span { color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.signup-band { border-top: 1px solid var(--border); display: grid; grid-template-columns: 1fr 1fr; min-height: 360px; }
.signup-band > div { align-content: center; display: grid; padding: clamp(34px, 6vw, 90px); }
.signup-band form { display: grid; grid-template-columns: 1fr 140px; max-width: 520px; }
.signup-band input { background: transparent; border: 1px solid var(--gold); color: var(--text); min-height: 56px; padding: 0 18px; text-transform: uppercase; }
.signup-band img { height: 100%; object-fit: cover; width: 100%; }

.menu-drawer { background: var(--black); border-color: var(--border); color: var(--text); }
.menu-drawer-bg, .menu-drawer::before { display: none; }
.checkout-submit { background: var(--gold); border-color: var(--gold); color: var(--black); }
.menu-drawer .mobile-nav a b { color: var(--text); font-size: clamp(30px, 10vw, 52px); letter-spacing: .08em; }
.menu-drawer .mobile-nav a span, .menu-drawer-foot p { color: var(--gold); }

.page, .checkout-page { background: var(--black); color: var(--text); }
.checkout-page { background: radial-gradient(circle at 20% 0, rgba(200,161,90,.08), transparent 30%), var(--black); }
.checkout-form, .checkout-summary, .auth-box, .order { background: var(--card); border: 1px solid var(--border); border-radius: 0; color: var(--text); }
.checkout-page .field input, .checkout-page .field textarea, .field input, .field textarea, .field select { background: var(--rich); border-color: var(--border); color: var(--text); }
.checkout-hero .page-title, .page-title { color: var(--text); }
.notice { background: var(--rich); border: 1px solid var(--border); color: var(--gold); }
.auth-switch .active { border-color: var(--gold); color: var(--gold); }

.admin { --admin-border: #2A2A2A; background: radial-gradient(circle at 12% 0, rgba(200,161,90,.08), transparent 28%), var(--black); }
.admin-bar, .admin-nav, .admin-card, .stat, .admin-order-card, .order-filters, .table-wrap { background: var(--rich); border-color: var(--border); box-shadow: none; }
.admin-bar b, .admin-head h1, .admin-card-head h2, .admin td b, .stat b { color: var(--text); }
.admin-kicker, .admin-bar span, .admin-nav p, .stat span, .admin-chip.success, .filter-count { color: var(--gold); }
.admin-nav button.active, .admin .button, .admin-chip.success { background: var(--gold); border-color: var(--gold); color: var(--black); }
.admin-modal { background: #111; border-color: var(--border); color: var(--text); }
.admin-modal .field input, .admin-modal .field textarea, .admin-modal .field select { background: var(--black); border-color: var(--border); color: var(--text); }
.admin-modal .drawer-head h2, .order-detail-hero b, .order-detail-grid b { color: var(--text); }
.order-detail-hero, .order-detail-grid section { background: var(--card); border-color: var(--border); }

@media (max-width: 900px) {
  .announcement { font-size: 9px; }
  .header { min-height: 76px; padding-inline: 20px; top: 0; }
  .header-with-announcement { top: 33px; }
  .nav, .desktop-cart, .hide-mobile { display: none; }
  .mobile-cart { display: block; }
  .header .logo { font-size: 26px; left: 50%; position: absolute; transform: translateX(-50%); }
  .product-page.launch-product { display: block; padding: 0 0 48px; }
  .product-media { display: block; }
  .product-thumbs { display: none; }
  .product-hero-image { border-left: 0; border-right: 0; min-height: 58vh; }
  .trust-strip { display: none; }
  .product-panel { padding: 34px 22px 0; position: static; }
  .breadcrumbs { display: none; }
  .product-panel h1 { font-size: clamp(34px, 11vw, 58px); }
  .sizes button { min-width: 62px; }
  .about-band, .signup-band { grid-template-columns: 1fr; }
  .about-band img { min-height: 320px; }
  .related-products { grid-template-columns: 1fr; }
  .drop-grid { text-align: left; }
  .signup-band form { grid-template-columns: 1fr; gap: 12px; }
}

/* Drop 001 refinement pass */
.product-page.launch-product {
  align-items: start;
  gap: clamp(34px, 4vw, 72px);
  padding-top: clamp(34px, 5vw, 86px);
}

.product-media {
  align-items: start;
  position: sticky;
  top: 128px;
}

.product-thumbs {
  max-height: calc(100vh - 178px);
  overflow: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}

.product-thumbs button {
  opacity: .72;
  overflow: hidden;
  position: relative;
  transition: border-color .2s ease, opacity .2s ease, transform .2s ease;
}

.product-thumbs button:hover,
.product-thumbs button.active {
  opacity: 1;
  transform: translateX(4px);
}

.product-thumbs button span {
  background: rgba(10, 10, 10, .7);
  bottom: 6px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  left: 6px;
  letter-spacing: .12em;
  padding: 4px 6px;
  position: absolute;
}

.product-hero-image {
  box-shadow: 0 24px 80px rgba(0, 0, 0, .38);
  min-height: clamp(560px, 70vh, 860px);
}

.product-hero-image::after {
  background: linear-gradient(180deg, transparent 64%, rgba(0, 0, 0, .72));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.product-hero-image img {
  display: block;
  object-position: center;
}

.zoom-btn {
  font-size: 0;
}

.zoom-btn::before {
  content: "+";
  font-size: 25px;
  line-height: 1;
}

.gallery-controls {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(17, 17, 17, .72);
  border: 1px solid rgba(200, 161, 90, .18);
  color: var(--text);
  display: flex;
  gap: 22px;
  grid-column: 2;
  justify-content: center;
  justify-self: center;
  margin-top: -76px;
  min-height: 56px;
  padding: 0 28px;
  position: relative;
  z-index: 3;
}

.gallery-controls button {
  background: transparent;
  border: 0;
  color: var(--gold);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.gallery-controls span {
  color: var(--text);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
}

.product-panel {
  max-width: 650px;
  top: 128px;
}

.product-panel h1 {
  max-width: 780px;
}

.product-lede {
  max-width: 540px;
}

.swatch {
  position: relative;
}

.swatch span {
  background: var(--rich);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 10px;
  left: 50%;
  letter-spacing: .12em;
  opacity: 0;
  padding: 7px 10px;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 10px);
  transform: translate(-50%, -4px);
  transition: opacity .2s ease, transform .2s ease;
  white-space: nowrap;
  z-index: 4;
}

.swatch:hover span {
  opacity: 1;
  transform: translate(-50%, 0);
}

.variant-gallery,
.lookbook-section {
  border-top: 1px solid var(--border);
  padding: clamp(48px, 7vw, 110px) clamp(20px, 5vw, 90px);
}

.variant-gallery > div:first-child,
.lookbook-section > div:first-child {
  margin: 0 auto 34px;
  max-width: 960px;
  text-align: center;
}

.variant-gallery h2,
.lookbook-section h2 {
  color: var(--text);
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1;
  margin: 16px 0;
  text-transform: uppercase;
}

.variant-gallery p,
.lookbook-section p {
  color: var(--subtext);
  font-size: 15px;
  line-height: 1.9;
  margin: 0 auto;
  max-width: 640px;
}

.gallery-grid,
.lookbook-grid {
  display: grid;
  gap: 16px;
}

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

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

.gallery-grid figure,
.lookbook-grid figure {
  background: var(--card);
  border: 1px solid var(--border);
  margin: 0;
  overflow: hidden;
  position: relative;
}

.gallery-grid figure:first-child,
.lookbook-grid figure:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid img,
.lookbook-grid img {
  aspect-ratio: 1;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.gallery-grid figure:first-child img,
.lookbook-grid figure:first-child img {
  aspect-ratio: 1.2;
}

.gallery-grid figcaption {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .82));
  bottom: 0;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  left: 0;
  letter-spacing: .18em;
  padding: 44px 16px 14px;
  position: absolute;
  right: 0;
  text-transform: uppercase;
}

.drop-card.coming {
  cursor: pointer;
  opacity: 1;
}

.drop-card {
  transition: transform .22s ease, opacity .22s ease;
}

.drop-card:hover {
  opacity: .9;
  transform: translateY(-3px);
}

@media (max-width: 1100px) {
  .product-page.launch-product {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-media,
  .product-panel {
    position: static;
  }

  .product-panel {
    max-width: none;
  }
}

@media (max-width: 900px) {
  .product-page.launch-product {
    padding-bottom: 38px;
  }

  .product-media {
    display: block;
  }

  .product-hero-image {
    min-height: 54vh;
  }

  .product-thumbs {
    background: var(--black);
    display: flex;
    gap: 10px;
    max-height: none;
    overflow-x: auto;
    padding: 12px 20px 16px;
  }

  .product-thumbs button {
    flex: 0 0 78px;
  }

  .product-thumbs button:hover,
  .product-thumbs button.active {
    transform: translateY(-2px);
  }

  .product-thumbs img {
    height: 88px;
  }

  .gallery-controls {
    border-left: 0;
    border-right: 0;
    grid-column: auto;
    justify-self: stretch;
    margin: 0;
  }

  .product-panel {
    padding-top: 28px;
  }

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

  .gallery-grid figure:first-child,
  .lookbook-grid figure:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 560px) {
  .variant-gallery,
  .lookbook-section {
    padding-inline: 18px;
  }

  .gallery-grid,
  .lookbook-grid {
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .gallery-grid figure:first-child,
  .lookbook-grid figure:first-child {
    grid-column: auto;
    grid-row: auto;
  }
}

/* Navigation and mobile repair pass */
.header {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}

.header > .mobile-menu-btn {
  display: none !important;
  grid-column: 1;
  grid-row: 1;
}

.header > .nav {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  min-width: 0;
}

.header > .logo {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  white-space: nowrap;
}

.header > .header-actions {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  min-width: 0;
}

.header .mobile-cart {
  display: none !important;
}

.desktop-cart,
.header-actions .hide-mobile {
  display: inline-flex;
  white-space: nowrap;
}

.product-media {
  grid-template-columns: minmax(0, 1fr);
}

.product-thumbs {
  display: none !important;
  grid-column: 1;
  max-height: none;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 2px;
}

.product-thumbs button {
  flex: 0 0 88px;
}

.product-thumbs button:hover,
.product-thumbs button.active {
  transform: translateY(-2px);
}

.product-thumbs img {
  height: 96px;
}

.product-hero-image,
.gallery-controls,
.trust-strip {
  grid-column: 1;
}

@media (max-width: 900px) {
  body {
    overflow-x: hidden;
  }

  .shell {
    padding-inline: 16px;
  }

  .announcement {
    font-size: 8px;
    letter-spacing: .18em;
    padding-block: 9px;
  }

  .header,
  .header.header-with-announcement {
    background: rgba(10, 10, 10, .96);
    border-bottom: 1px solid var(--border);
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    min-height: 68px;
    padding: 0 16px;
    top: 29px;
  }

  .header:not(.header-with-announcement) {
    top: 0;
  }

  .header > .mobile-menu-btn {
    align-items: center;
    color: var(--text);
    display: flex !important;
    flex-direction: column;
    gap: 6px;
    height: 44px;
    justify-content: center;
    width: 44px;
  }

  .header > .mobile-menu-btn span {
    background: currentColor;
    box-shadow: none;
    height: 1px;
    width: 22px;
  }

  .header > .nav {
    display: none !important;
  }

  .header > .logo {
    font-size: 25px;
    grid-column: 2;
    left: auto;
    letter-spacing: .26em;
    position: static;
    transform: none;
  }

  .header > .header-actions {
    align-items: center;
    display: flex;
    gap: 0;
    grid-column: 3;
    justify-content: flex-end;
  }

  .header-actions .hide-mobile,
  .header-actions .desktop-cart {
    display: none !important;
  }

  .header .mobile-cart {
    align-items: center;
    color: var(--text);
    display: flex !important;
    height: 44px;
    justify-content: center;
    position: relative;
    width: 44px;
  }

  .header .mobile-cart svg {
    filter: none;
    height: 23px;
    width: 23px;
  }

  .header .mobile-cart span {
    align-items: center;
    background: var(--gold);
    border-radius: 999px;
    color: var(--black);
    display: flex;
    font-size: 8px;
    font-weight: 800;
    height: 15px;
    justify-content: center;
    min-width: 15px;
    padding-inline: 4px;
    position: absolute;
    right: 0;
    top: 5px;
  }

  .product-page.launch-product {
    padding-top: 0;
  }

  .product-hero-image {
    border-left: 0;
    border-right: 0;
    min-height: 52vh;
  }

  .product-thumbs {
    border-bottom: 1px solid var(--border);
    display: none !important;
    gap: 8px;
    padding: 10px 14px;
  }

  .product-thumbs button {
    flex-basis: 66px;
  }

  .product-thumbs img {
    height: 74px;
  }

  .gallery-controls {
    min-height: 48px;
    padding-inline: 18px;
  }

  .product-panel {
    padding: 26px 18px 0;
  }

  .product-panel h1 {
    font-size: clamp(32px, 10vw, 48px);
    letter-spacing: -.02em;
  }

  .product-lede {
    font-size: 14px;
  }

  .trust-strip {
    display: none !important;
  }

  .related-products {
    gap: 24px;
    grid-template-columns: 1fr;
  }
}

@media (min-width: 901px) {
  .header > .mobile-menu-btn,
  .header .mobile-cart {
    display: none !important;
  }

  .header > .nav {
    display: flex !important;
  }

  .header > .header-actions {
    display: flex !important;
  }
}

/* Cart drawer — warm dark glass matching the drop panel */
.cart-overlay {
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  background: rgba(10, 8, 3, .58);
}
.cart-drawer {
  backdrop-filter: blur(48px) saturate(1.8) brightness(.52);
  -webkit-backdrop-filter: blur(48px) saturate(1.8) brightness(.52);
  background: linear-gradient(165deg, rgba(52,42,20,.72) 0%, rgba(28,22,10,.84) 50%, rgba(10,8,3,.9) 100%);
  border-left: 1px solid rgba(200,161,90,.22);
  box-shadow: -20px 0 80px rgba(0,0,0,.7), inset 1px 0 0 rgba(255,210,90,.07);
  color: rgba(244,238,231,.92);
  max-width: 520px;
  overflow: hidden;
  padding: 0;
  width: min(94vw, 520px);
}
.cart-drawer-bg { display: none; }
.cart-drawer::before { display: none; }
.cart-drawer-inner {
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100%;
  overflow: hidden;
  padding: 28px 22px 22px;
  padding-bottom: max(22px, env(safe-area-inset-bottom, 22px));
  position: relative;
}
.cart-head {
  align-items: flex-start;
  border-bottom: 1px solid rgba(200,161,90,.15);
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 20px;
}
.cart-head-label {
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .22em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.cart-head-count {
  font-size: clamp(26px, 7vw, 34px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1;
  text-transform: uppercase;
}
.cart-head-count span {
  font-size: 12px;
  letter-spacing: .04em;
  opacity: .5;
}
.cart-close {
  align-items: center;
  background: rgba(244,238,231,.1);
  border: 1px solid rgba(244,238,231,.16);
  border-radius: 50%;
  color: rgba(244,238,231,.7);
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  height: 40px;
  justify-content: center;
  padding: 0;
  transition: background .18s, color .18s;
  width: 40px;
}
.cart-close:hover { background: rgba(244,238,231,.18); color: rgba(244,238,231,1); }
.cart-close svg { height: 16px; width: 16px; }
.cart-lines {
  min-height: 0;
  overflow-y: auto;
  padding-right: 2px;
  scrollbar-color: rgba(200,161,90,.22) transparent;
  scrollbar-width: thin;
}
.cart-lines::-webkit-scrollbar { width: 3px; }
.cart-lines::-webkit-scrollbar-thumb { background: rgba(200,161,90,.22); border-radius: 3px; }
.cart-line {
  align-items: center;
  background: rgba(244,238,231,.07);
  border: 1px solid rgba(244,238,231,.11);
  border-radius: 20px;
  display: grid;
  gap: 14px;
  grid-template-columns: 88px 1fr 36px;
  margin-bottom: 10px;
  overflow: hidden;
  padding: 10px;
}
.cart-line img { border-radius: 13px; height: 108px; object-fit: cover; width: 88px; }
.cart-line-copy { min-width: 0; }
.cart-line h4 {
  color: rgba(244,238,231,.9);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.35;
  margin: 0 0 5px;
  text-transform: uppercase;
}
.cart-line-copy > span {
  color: var(--gold);
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.cart-remove {
  align-items: center;
  align-self: start;
  background: rgba(244,238,231,.07);
  border: 1px solid rgba(244,238,231,.12);
  border-radius: 50%;
  color: rgba(244,238,231,.45);
  cursor: pointer;
  display: flex;
  font-size: 20px;
  height: 34px;
  justify-content: center;
  line-height: 1;
  padding-bottom: 2px;
  transition: background .18s, border-color .18s, color .18s;
  width: 34px;
}
.cart-remove:hover { background: rgba(200,161,90,.18); border-color: rgba(200,161,90,.3); color: var(--gold); }
.cart-drawer .qty {
  background: rgba(10,8,3,.32);
  border: 1px solid rgba(244,238,231,.14);
  border-radius: 999px;
  display: inline-flex;
  gap: 0;
  margin-top: 11px;
  overflow: hidden;
}
.cart-drawer .qty button { background: transparent; border: 0; color: var(--gold); cursor: pointer; font-weight: 800; height: 30px; width: 32px; }
.cart-drawer .qty span { align-items: center; color: rgba(244,238,231,.88); display: flex; font-size: 10px; font-weight: 800; justify-content: center; min-width: 26px; }
.cart-bottom {
  background: rgba(244,238,231,.07);
  border: 1px solid rgba(244,238,231,.11);
  border-radius: 20px;
  margin-top: 14px;
  padding: 16px;
}
.cart-note {
  border-bottom: 1px solid rgba(244,238,231,.1);
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.5;
  margin-bottom: 12px;
  padding-bottom: 12px;
  text-transform: uppercase;
}
.cart-total {
  color: rgba(244,238,231,.5);
  display: flex;
  font-size: 10px;
  justify-content: space-between;
  letter-spacing: .1em;
  margin: 7px 0;
  text-transform: uppercase;
}
.cart-total b { color: rgba(244,238,231,.88); font-size: 11px; letter-spacing: .04em; white-space: nowrap; }
.cart-total-strong {
  border-top: 1px solid rgba(244,238,231,.1);
  color: rgba(244,238,231,.9);
  font-size: 11px;
  margin-top: 10px;
  padding-top: 12px;
}
.cart-total-strong b { color: rgba(244,238,231,1); font-size: 20px; font-weight: 400; letter-spacing: -.04em; }
.cart-checkout {
  background: rgba(244,238,231,.95);
  border: none;
  border-radius: 999px;
  color: #0a0a0a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  margin-top: 14px;
  min-height: 52px;
  text-transform: uppercase;
  transition: background .2s;
  width: 100%;
}
.cart-checkout:hover { background: var(--gold); }
.cart-empty {
  align-content: center;
  background: rgba(244,238,231,.07);
  border: 1px solid rgba(244,238,231,.11);
  border-radius: 24px;
  display: grid;
  justify-items: start;
  min-height: 52vh;
  padding: 28px;
}
.cart-empty b { color: rgba(244,238,231,.9); display: block; font-size: clamp(30px, 8vw, 48px); font-weight: 400; letter-spacing: -.07em; line-height: .92; text-transform: uppercase; }
.cart-empty p { color: rgba(244,238,231,.5); font-size: 12px; line-height: 1.6; margin: 16px 0 24px; max-width: 240px; }
.cart-empty .button { background: rgba(244,238,231,.92); border-color: transparent; border-radius: 999px; color: #0a0a0a; font-size: 11px; font-weight: 900; letter-spacing: .14em; }

/* Checkout page — warm dark glass */
.checkout-page {
  background:
    radial-gradient(circle at 18% 0, rgba(200,161,90,.1), transparent 32%),
    linear-gradient(160deg, rgba(52,42,20,.2) 0%, rgba(10,8,3,1) 36%);
  color: rgba(244,238,231,.9);
  margin-inline: calc(50% - 50vw);
  min-height: 100vh;
  padding: clamp(108px, 12vw, 160px) max(18px, calc(50vw - 660px)) clamp(44px, 7vw, 92px);
}
.checkout-hero {
  border-bottom: 1px solid rgba(200,161,90,.15);
  margin-bottom: clamp(32px, 5vw, 56px);
  padding-bottom: clamp(22px, 4vw, 38px);
}
.checkout-hero .eyebrow {
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .22em;
}
.checkout-hero .page-title {
  color: rgba(244,238,231,.96);
  font-size: clamp(52px, 9vw, 120px);
  letter-spacing: -.04em;
  line-height: .92;
  margin-bottom: 18px;
  text-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.checkout-hero p {
  color: rgba(244,238,231,.52);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
  max-width: 420px;
}
.checkout-page .checkout {
  align-items: start;
  display: grid;
  gap: clamp(14px, 3vw, 26px);
  grid-template-columns: minmax(0, 1fr) minmax(290px, 390px);
  max-width: none;
}
.checkout-form,
.checkout-summary {
  backdrop-filter: blur(32px) saturate(1.6) brightness(.55);
  -webkit-backdrop-filter: blur(32px) saturate(1.6) brightness(.55);
  background: linear-gradient(165deg, rgba(52,42,20,.68) 0%, rgba(28,22,10,.82) 50%, rgba(10,8,3,.9) 100%);
  border: 1px solid rgba(200,161,90,.2);
  border-radius: 24px;
  box-shadow: inset 0 1px 0 rgba(255,210,90,.1), 0 24px 60px rgba(0,0,0,.36);
  color: rgba(244,238,231,.9);
}
.checkout-form { padding: clamp(22px, 4vw, 36px); }
.co-notice {
  background: rgba(200,161,90,.1);
  border: 1px solid rgba(200,161,90,.26);
  border-radius: 12px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.6;
  margin-bottom: 22px;
  padding: 11px 15px;
  text-transform: uppercase;
}
.checkout-page .field label {
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.checkout-page .field input,
.checkout-page .field textarea {
  background: rgba(10,8,3,.38);
  border: 1px solid rgba(244,238,231,.13);
  border-radius: 14px;
  color: rgba(244,238,231,.92);
  min-height: 52px;
  padding: 14px 16px;
}
.checkout-page .field input::placeholder,
.checkout-page .field textarea::placeholder { color: rgba(244,238,231,.22); }
.checkout-page .field textarea { min-height: 108px; }
.checkout-page .field input:focus,
.checkout-page .field textarea:focus {
  border-color: rgba(200,161,90,.55);
  box-shadow: 0 0 0 3px rgba(200,161,90,.1);
  outline: 0;
}
.checkout-submit {
  background: rgba(244,238,231,.95);
  border: none;
  border-radius: 999px;
  color: #0a0a0a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  margin-top: 22px;
  min-height: 56px;
  text-transform: uppercase;
  transition: background .2s;
  width: 100%;
}
.checkout-submit:hover { background: var(--gold); }
.checkout-summary {
  padding: clamp(20px, 3vw, 28px);
  position: sticky;
  top: 108px;
}
.co-summary-label {
  border-bottom: 1px solid rgba(200,161,90,.15);
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .22em;
  margin-bottom: 14px;
  padding-bottom: 14px;
  text-transform: uppercase;
}
.co-items { display: grid; gap: 10px; margin-bottom: 14px; }
.co-item {
  align-items: center;
  display: grid;
  gap: 13px;
  grid-template-columns: 68px minmax(0, 1fr) auto;
}
.co-item img { border: 1px solid rgba(244,238,231,.1); border-radius: 11px; height: 82px; object-fit: cover; width: 68px; }
.co-item-copy { display: grid; gap: 5px; min-width: 0; }
.co-item-copy b { color: rgba(244,238,231,.9); font-size: 11px; letter-spacing: .07em; line-height: 1.3; text-transform: uppercase; }
.co-item-copy small { color: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.co-item strong { color: rgba(244,238,231,.88); font-size: 12px; font-weight: 700; white-space: nowrap; }
.co-totals { border-top: 1px solid rgba(244,238,231,.1); padding-top: 14px; }
.co-total-row {
  color: rgba(244,238,231,.5);
  display: flex;
  font-size: 10px;
  justify-content: space-between;
  letter-spacing: .1em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.co-total-row b { color: rgba(244,238,231,.85); font-size: 11px; }
.co-total-strong {
  border-top: 1px solid rgba(244,238,231,.1);
  color: rgba(244,238,231,.9);
  font-size: 12px;
  margin-top: 10px;
  padding-top: 12px;
}
.co-total-strong b { color: rgba(244,238,231,1); font-size: 20px; font-weight: 400; letter-spacing: -.04em; }

@media (max-width: 900px) {
  .cart-drawer {
    border-left: 0;
    width: 100vw;
  }

  .cart-line {
    gap: 12px;
    grid-template-columns: 78px minmax(0, 1fr) 34px;
  }

  .cart-line img {
    border-radius: 11px;
    height: 96px;
    width: 78px;
  }

  .checkout-page {
    padding: 104px 16px 36px;
  }

  .checkout-page .checkout {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
  }

  .checkout-item {
    grid-template-columns: 66px minmax(0, 1fr);
  }

  .checkout-item strong {
    grid-column: 2;
  }
}

/* Admin black/gold dashboard redesign */
.admin {
  --admin-bg: #0A0A0A;
  --admin-panel: #111111;
  --admin-card: #151515;
  --admin-card-soft: #1A1A1A;
  --admin-border: #2A2A2A;
  --admin-text: #F5F5F5;
  --admin-subtext: #B0B0B0;
  --admin-muted: #7A7A7A;
  --admin-gold: #C8A15A;
  --admin-gold-hi: #D4AF37;
  background:
    radial-gradient(circle at 14% 0, rgba(200, 161, 90, .1), transparent 30%),
    linear-gradient(180deg, #050505, var(--admin-bg));
  color: var(--admin-text);
  min-height: 100vh;
}

.admin *,
.admin-modal * {
  text-shadow: none;
}

.admin-bar {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: rgba(10, 10, 10, .98);
  border-bottom: 1px solid var(--admin-border);
  color: var(--admin-text);
}

.admin-bar b {
  color: var(--admin-gold);
  font-size: 22px;
  letter-spacing: .22em;
}

.admin-bar span,
.admin-actions .link-btn {
  color: var(--admin-subtext);
}

.admin-actions .link-btn:hover,
.admin .link-btn:hover {
  color: var(--admin-gold);
}

.admin-layout {
  grid-template-columns: 250px minmax(0, 1fr);
}

.admin-nav {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: var(--admin-panel);
  border-right: 1px solid var(--admin-border);
}

.admin-nav p,
.admin-kicker,
.filter-count,
.stat span,
.admin-card-head p,
.admin-head p {
  color: var(--admin-subtext);
}

.admin-nav button {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 0;
  color: var(--admin-subtext);
  font-weight: 800;
}

.admin-nav button:hover {
  background: var(--admin-card);
  border-color: var(--admin-border);
  color: var(--admin-text);
  transform: translateX(2px);
}

.admin-nav button.active {
  background: var(--admin-gold);
  border-color: var(--admin-gold);
  color: var(--admin-bg);
}

.admin-main {
  min-width: 0;
}

.admin-head {
  border-bottom: 1px solid var(--admin-border);
  padding-bottom: clamp(22px, 3vw, 34px);
}

.admin-head h1 {
  color: var(--admin-text);
  letter-spacing: -.03em;
}

.admin-card,
.stat,
.order-filters,
.table-wrap,
.admin-order-card,
.empty-state {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: var(--admin-card);
  border: 1px solid var(--admin-border);
  border-radius: 0;
  box-shadow: none;
  color: var(--admin-text);
}

.admin-card-head {
  border-bottom: 1px solid var(--admin-border);
}

.admin-card-head h2,
.stat b,
.admin td b,
.admin-order-card b,
.empty-state b {
  color: var(--admin-text);
}

.stat {
  background: linear-gradient(145deg, var(--admin-card), var(--admin-panel));
}

.stat b {
  letter-spacing: -.03em;
}

.stat small,
.admin-order-card small,
.admin-order-card p,
.admin td,
.admin .muted,
.empty-state p {
  color: var(--admin-subtext);
}

.admin table {
  color: var(--admin-text);
}

.admin th {
  background: var(--admin-panel);
  color: var(--admin-gold);
  top: 72px;
}

.admin th,
.admin td {
  border-bottom: 1px solid var(--admin-border);
}

.admin tbody tr:hover {
  background: rgba(200, 161, 90, .06);
}

.admin td img {
  background: var(--admin-panel);
  border: 1px solid var(--admin-border);
  border-radius: 0;
}

.row-actions {
  gap: 14px;
}

.admin .link-btn {
  color: var(--admin-gold);
  font-weight: 800;
  text-decoration-color: rgba(200, 161, 90, .55);
}

.admin .link-btn.danger {
  color: #ffb4aa;
  text-decoration-color: rgba(255, 180, 170, .5);
}

.admin .button,
.admin-modal .button {
  background: linear-gradient(135deg, var(--admin-gold), #efcb78);
  border: 1px solid var(--admin-gold);
  border-radius: 0;
  color: var(--admin-bg);
  font-weight: 900;
  letter-spacing: .14em;
}

.admin .button:hover,
.admin-modal .button:hover {
  background: transparent;
  color: var(--admin-gold);
}

.admin .button.outline,
.admin-modal .button.outline {
  background: transparent;
  color: var(--admin-gold);
}

.admin-modal .button.outline.danger {
  background: transparent;
  border-color: #ffb4aa;
  color: #ffb4aa;
}

.admin .field label,
.admin .field span.uppercase,
.status-filters legend,
.admin-order-card span {
  color: var(--admin-gold);
  font-weight: 800;
}

.admin .field input,
.admin .field textarea,
.admin .field select,
.admin-modal .field input,
.admin-modal .field textarea,
.admin-modal .field select {
  background: var(--admin-bg);
  border: 1px solid var(--admin-border);
  border-radius: 0;
  color: var(--admin-text);
}

.admin .field input::placeholder,
.admin .field textarea::placeholder,
.admin-modal .field input::placeholder,
.admin-modal .field textarea::placeholder {
  color: var(--admin-muted);
}

.admin .field input:focus,
.admin .field textarea:focus,
.admin .field select:focus,
.admin-modal .field input:focus,
.admin-modal .field textarea:focus,
.admin-modal .field select:focus {
  border-color: var(--admin-gold);
  box-shadow: 0 0 0 3px rgba(200, 161, 90, .12);
  outline: 0;
}

.admin label,
.admin-modal label {
  color: var(--admin-text);
}

.admin input[type="checkbox"],
.admin-modal input[type="checkbox"],
.status-filters input {
  accent-color: var(--admin-gold);
}

.status-filters {
  background: var(--admin-panel);
  border: 1px solid var(--admin-border);
  border-radius: 0;
}

.status-filters label {
  background: var(--admin-card-soft);
  border: 1px solid var(--admin-border);
  border-radius: 0;
  color: var(--admin-text);
}

.admin-chip {
  background: var(--admin-card-soft);
  border: 1px solid var(--admin-border);
  border-radius: 0;
  color: var(--admin-text);
  font-style: normal;
  font-weight: 900;
}

.admin-chip.success,
.admin-chip.new {
  background: var(--admin-gold);
  border-color: var(--admin-gold);
  color: var(--admin-bg);
}

.admin-chip.confirmed {
  background: #D4AF37;
  border-color: #D4AF37;
  color: var(--admin-bg);
}

.admin-chip.out-for-delivery {
  background: #1A1A1A;
  border-color: var(--admin-gold);
  color: var(--admin-gold);
}

.admin-chip.delivered {
  background: #0B5D3B;
  border-color: #0B5D3B;
  color: var(--admin-text);
}

.admin-chip.cancelled {
  background: #5C0013;
  border-color: #7A0019;
  color: var(--admin-text);
}

.admin-order-card {
  gap: 20px;
}

.admin-order-card:hover {
  background: var(--admin-card-soft);
  border-color: rgba(200, 161, 90, .46);
}

.admin-modal {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: var(--admin-panel);
  border: 1px solid var(--admin-border);
  border-radius: 0;
  box-shadow: 0 34px 100px rgba(0, 0, 0, .58);
  color: var(--admin-text);
}

.admin-modal .drawer-head {
  border-bottom: 1px solid var(--admin-border);
}

.admin-modal .drawer-head h2,
.admin-modal-kicker,
.order-detail-grid span {
  color: var(--admin-gold);
}

.admin-modal .icon-btn {
  color: var(--admin-text);
}

.order-detail-hero,
.order-detail-grid section {
  background: var(--admin-card);
  border: 1px solid var(--admin-border);
  border-radius: 0;
}

.order-detail-hero b,
.order-detail-grid b {
  color: var(--admin-text);
}

.order-detail-hero small,
.order-detail-grid p,
.order-detail-actions .muted {
  color: var(--admin-subtext);
}

.order-detail-actions {
  border-top: 1px solid var(--admin-border);
}

@media (max-width: 760px) {
  .admin-bar {
    background: var(--admin-bg);
    border-bottom: 1px solid var(--admin-border);
  }

  .admin-nav {
    background: var(--admin-panel);
    border-bottom: 1px solid var(--admin-border);
  }

  .admin-nav button {
    border-radius: 0;
  }

  .admin-card,
  .stat {
    border-radius: 0;
  }

  .catalog-table tr {
    background: var(--admin-card);
    border: 1px solid var(--admin-border);
    border-radius: 0;
  }

  .catalog-table td {
    border-bottom: 1px solid var(--admin-border);
  }

  .catalog-table td::before {
    color: var(--admin-gold);
    font-weight: 800;
  }

  .admin-modal {
    background: var(--admin-panel);
    border-radius: 0;
  }
}

/* Admin modal visibility fix */
body:has(.admin-modal) > .overlay[data-close-modal] {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(0, 0, 0, .82);
  inset: 0;
  position: fixed;
  z-index: 80;
}

.modal.admin-modal {
  background: #111111 !important;
  border: 1px solid #2A2A2A;
  box-shadow: 0 34px 120px rgba(0, 0, 0, .86);
  color: #F5F5F5;
  opacity: 1;
  position: fixed;
  z-index: 81;
}

.modal.admin-modal::before {
  background: #111111;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.modal.admin-modal .drawer-head,
.modal.admin-modal .order-detail,
.modal.admin-modal form {
  position: relative;
  z-index: 1;
}

@media (max-width: 760px) {
  .modal.admin-modal {
    background: #111111 !important;
    z-index: 81;
  }
}

/* Admin order action visibility */
.modal.admin-modal .order-detail-actions .button {
  background: linear-gradient(135deg, #C8A15A, #D4AF37) !important;
  border: 1px solid #D4AF37 !important;
  color: #0A0A0A !important;
  font-weight: 950;
  min-height: 56px;
}

.modal.admin-modal .order-detail-actions .button:hover {
  background: #D4AF37 !important;
  color: #0A0A0A !important;
}

.modal.admin-modal .order-detail-actions .button[data-status="Delivered"] {
  background: #0B5D3B !important;
  border-color: #0B5D3B !important;
  color: #F5F5F5 !important;
}

.modal.admin-modal .order-detail-actions .button[data-status="Cancelled"],
.modal.admin-modal .order-detail-actions .button.danger {
  background: #7A0019 !important;
  border-color: #7A0019 !important;
  color: #F5F5F5 !important;
}

/* Admin product cards */
.admin-product-grid {
  display: grid;
  gap: 14px;
}

.admin-product-card {
  align-items: stretch;
  background: var(--admin-panel);
  border: 1px solid var(--admin-border);
  color: var(--admin-text);
  display: grid;
  gap: 18px;
  grid-template-columns: 104px minmax(0, 1fr) auto;
  min-width: 0;
  padding: 16px;
}

.admin-product-media {
  background: #0A0A0A;
  border: 1px solid var(--admin-border);
  min-height: 126px;
  overflow: hidden;
}

.admin-product-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.admin-product-body {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.admin-product-title {
  min-width: 0;
}

.admin-product-title span,
.admin-product-meta dt {
  color: var(--admin-gold);
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.admin-product-title h3 {
  color: var(--admin-text);
  font-size: clamp(15px, 1.5vw, 20px);
  line-height: 1.2;
  margin: 10px 0 6px;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.admin-product-title p {
  color: var(--admin-subtext);
  font-size: 11px;
  letter-spacing: .08em;
  margin: 0;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.admin-product-meta {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
}

.admin-product-meta div {
  background: var(--admin-card);
  border: 1px solid var(--admin-border);
  min-width: 0;
  padding: 12px;
}

.admin-product-meta dt,
.admin-product-meta dd {
  margin: 0;
}

.admin-product-meta dd {
  color: var(--admin-text);
  font-size: 12px;
  margin-top: 8px;
  overflow-wrap: anywhere;
}

.admin-product-actions {
  align-content: center;
  display: grid;
  gap: 10px;
  min-width: 118px;
}

.admin-product-actions .link-btn {
  align-items: center;
  border: 1px solid var(--admin-border);
  color: var(--admin-gold);
  display: inline-flex;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  text-decoration: none;
}

.admin-product-actions .link-btn.danger {
  border-color: rgba(122, 0, 25, .8);
  color: #f5b3bd;
}

@media (max-width: 1180px) and (min-width: 761px) {
  .catalog-table-wrap {
    overflow-x: auto;
  }
}

@media (max-width: 760px) {
  .admin-product-card {
    gap: 14px;
    grid-template-columns: 82px minmax(0, 1fr);
    padding: 12px;
  }

  .admin-product-media {
    min-height: 104px;
  }

  .admin-product-meta {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .admin-product-actions {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
    min-width: 0;
  }
}

@media (max-width: 430px) {
  .admin-product-card {
    grid-template-columns: 1fr;
  }

  .admin-product-media {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

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

/* ============================================================
   LANDING PAGE
   ============================================================ */
body:has(.landing) { overflow-x: hidden; }

.landing { background: var(--black); min-height: 100svh; }

/* Landing header */
.landing-header {
  align-items: center;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  left: 0;
  padding: max(20px, env(safe-area-inset-top)) 20px 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 18;
}

.landing-logo {
  color: var(--gold);
  font-size: 20px;
  font-weight: 400;
  justify-self: center;
  letter-spacing: .32em;
  text-shadow: 0 2px 18px rgba(0,0,0,.6);
  text-transform: uppercase;
}

.landing-cart-btn {
  background: none;
  border: 0;
  color: var(--text);
  cursor: pointer;
  filter: drop-shadow(0 1px 6px rgba(0,0,0,.7));
  justify-self: end;
  padding: 0;
  position: relative;
}
.landing-cart-btn svg { display: block; height: 24px; stroke: currentColor; width: 24px; }
.landing-cart-count {
  align-items: center;
  background: var(--gold);
  border-radius: 999px;
  color: var(--black);
  display: flex;
  font-size: 8px;
  font-weight: 900;
  height: 15px;
  justify-content: center;
  min-width: 15px;
  padding-inline: 3px;
  position: absolute;
  right: -6px;
  top: -4px;
}

/* Landing nav button (shared with drop viewer) */
.drop-nav-btn {
  align-items: center;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  color: var(--text);
  cursor: pointer;
  display: flex;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}
.drop-nav-btn svg { height: 18px; width: 18px; }
.lh-menu { flex-direction: column; gap: 5px; }
.lh-menu span,
.drop-menu-btn span { background: var(--text); display: block; height: 1px; width: 18px; }
.drop-menu-btn { flex-direction: column; gap: 5px; }

/* Landing hero */
.landing-hero {
  align-items: flex-end;
  background-position: center;
  background-size: cover;
  display: flex;
  height: 100svh;
  justify-content: center;
  padding: 0 22px max(56px, calc(env(safe-area-inset-bottom) + 40px));
  position: relative;
}
.landing-hero::after {
  background: linear-gradient(180deg, rgba(10,10,10,.15) 0%, rgba(10,10,10,.28) 45%, rgba(10,10,10,.84) 100%);
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
}
.landing-hero-content {
  max-width: 560px;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 2;
}
.landing-kicker {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .28em;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.landing-title {
  color: var(--text);
  font-size: clamp(72px, 22vw, 160px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .86;
  margin: 0 0 26px;
  text-transform: uppercase;
}
.landing-sub {
  color: rgba(245,245,245,.7);
  font-size: clamp(11px, 3vw, 15px);
  letter-spacing: .18em;
  margin: 0 0 40px;
  text-transform: uppercase;
}
.landing-cta {
  align-items: center;
  background: var(--text);
  border: 1px solid var(--text);
  border-radius: 999px;
  color: var(--black);
  cursor: pointer;
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  gap: 10px;
  justify-content: center;
  letter-spacing: .18em;
  min-height: 54px;
  padding: 0 30px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .22s, border-color .22s, color .22s;
}
.landing-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

/* Staggered entrance for landing hero content */
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.landing-kicker  { animation: hero-rise .5s cubic-bezier(.22,1,.36,1) .08s both; }
.landing-title   { animation: hero-rise .6s cubic-bezier(.22,1,.36,1) .2s  both; }
.landing-sub     { animation: hero-rise .5s cubic-bezier(.22,1,.36,1) .34s both; }
.landing-hero-content > .landing-cta { animation: hero-rise .45s cubic-bezier(.22,1,.36,1) .46s both; }


/* Landing products section */
.landing-products { background: var(--black); padding: clamp(56px, 9vw, 110px) 22px; }
.landing-label {
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .26em;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.landing-grid { display: grid; gap: 14px; grid-template-columns: repeat(3, 1fr); margin-bottom: 44px; }
.landing-card { animation: hero-rise .5s cubic-bezier(.22,1,.36,1) both; cursor: pointer; display: block; text-decoration: none; }
.landing-card:nth-child(1) { animation-delay: .1s; }
.landing-card:nth-child(2) { animation-delay: .2s; }
.landing-card:nth-child(3) { animation-delay: .3s; }
.landing-card-img { aspect-ratio: .78; background: var(--card); border: 1px solid var(--border); overflow: hidden; }
.landing-card-img img { display: block; height: 100%; object-fit: cover; transition: transform .42s ease; width: 100%; }
.landing-card:hover .landing-card-img img { transform: scale(1.04); }
.landing-card-info { padding: 12px 0; }
.landing-card-info span { color: var(--gold); display: block; font-size: 9px; font-weight: 900; letter-spacing: .22em; text-transform: uppercase; }
.landing-card-info b { color: var(--text); display: block; font-size: 12px; letter-spacing: .1em; margin: 6px 0 4px; text-transform: uppercase; }
.landing-card-info em { color: var(--subtext); display: block; font-size: 11px; font-style: normal; letter-spacing: .06em; }
.landing-cta-wrap { text-align: center; }

/* Landing about */
.landing-about {
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.landing-about-copy {
  align-content: center;
  display: grid;
  padding: clamp(42px, 7vw, 100px);
}
.landing-about-copy h2 {
  color: var(--text);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 400;
  line-height: 1;
  margin: 16px 0 22px;
  text-transform: uppercase;
}
.landing-about-copy p {
  color: var(--subtext);
  font-size: 15px;
  line-height: 1.9;
  margin: 0 0 34px;
  max-width: 400px;
}
.landing-about-visual { overflow: hidden; }
.landing-about-visual img { display: block; height: 100%; object-fit: cover; width: 100%; }

/* Landing footer */
.landing-foot {
  background: var(--rich);
  border-top: 1px solid var(--border);
  padding: 48px 22px 40px;
  text-align: center;
}
.landing-foot-logo {
  color: var(--gold);
  display: block;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: .32em;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.landing-foot-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  justify-content: center;
  margin-bottom: 18px;
}
.landing-foot-nav a {
  color: var(--subtext);
  font-size: 10px;
  letter-spacing: .18em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s;
}
.landing-foot-nav a:hover { color: var(--gold); }
.landing-foot p { color: var(--muted); font-size: 9px; letter-spacing: .14em; margin: 0; text-transform: uppercase; }

@media (max-width: 768px) {
  .landing-about { grid-template-columns: 1fr; }
  .landing-about-visual { min-height: 260px; order: -1; }
  .landing-about-copy { padding: 36px 22px; }
  .landing-about-copy p { max-width: none; }
}
@media (max-width: 480px) {
  .landing-grid { gap: 8px; }
  .landing-products { padding-inline: 16px; }
}
@media (max-width: 360px) {
  .landing-grid { grid-template-columns: 1fr 1fr; }
  .landing-title { font-size: clamp(64px, 20vw, 80px); }
  .cookie-banner { flex-direction: column; align-items: stretch; }
  .cookie-accept { text-align: center; }
}

/* ============================================================
   DROP VIEWER — immersive full-screen product experience
   ============================================================ */
body:has(#drop-viewer) { overflow: hidden; }

.drop-viewer {
  background: var(--black);
  height: 100svh;
  inset: 0;
  overflow: hidden;
  position: fixed;
  z-index: 100;
}

/* Floating header */
.drop-header {
  align-items: center;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  left: 0;
  padding: max(18px, env(safe-area-inset-top)) 18px 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
}
.drop-header-logo {
  color: var(--gold);
  font-family: var(--font-logo);
  font-size: 18px;
  font-weight: 400;
  justify-self: center;
  letter-spacing: .32em;
  text-shadow: 0 2px 16px rgba(0,0,0,.6);
  text-transform: uppercase;
}
.drop-back-btn { justify-self: start; }

/* Vertical image rail — scroll snaps per image */
.drop-image-rail {
  inset: 0;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  position: absolute;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
}
.drop-image-rail::-webkit-scrollbar { display: none; }
.drop-image-frame {
  height: 100svh;
  position: relative;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.drop-image-frame img { display: block; height: 100%; object-fit: cover; width: 100%; }
.drop-image-frame::after {
  background: linear-gradient(180deg, rgba(10,10,10,.12) 0%, transparent 28%, rgba(10,10,10,.7) 100%);
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
}

/* Product navigation dots — sits above the collapsed panel (max-height 268px) */
.drop-dots {
  bottom: calc(282px + env(safe-area-inset-bottom, 0px));
  display: flex;
  gap: 6px;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 8;
}
.drop-dot {
  background: rgba(255,255,255,.32);
  border-radius: 999px;
  height: 4px;
  transition: all .3s ease;
  width: 18px;
}
.drop-dot.active { background: var(--gold); width: 30px; }

/* Bottom product panel — warm translucent frosted glass */
.drop-panel {
  backdrop-filter: blur(48px) saturate(1.8) brightness(.58);
  -webkit-backdrop-filter: blur(48px) saturate(1.8) brightness(.58);
  background: linear-gradient(170deg,
    rgba(52, 42, 20, .68) 0%,
    rgba(28, 22, 10, .78) 50%,
    rgba(14, 11, 5, .84) 100%
  );
  border-radius: 24px 24px 0 0;
  border-top: 1px solid rgba(200,161,90,.22);
  bottom: 0;
  box-shadow:
    inset 0 1px 0 rgba(255,210,90,.12),
    inset 0 0 40px rgba(200,161,90,.04),
    0 -20px 50px rgba(0,0,0,.4);
  left: 0;
  max-height: 268px;
  overflow: hidden;
  position: absolute;
  right: 0;
  transition: max-height .45s cubic-bezier(.22,1,.36,1);
  z-index: 9;
  animation: panel-rise .5s cubic-bezier(.22,1,.36,1) .12s both;
}
@keyframes panel-rise {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.drop-panel.is-expanded {
  max-height: 82svh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(200,161,90,.25) transparent;
}

.dp-topbar {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 14px 18px 0;
}
.dp-badge {
  background: rgba(200,161,90,.22);
  border: 1px solid rgba(200,161,90,.4);
  border-radius: 999px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
  padding: 5px 12px;
  text-transform: uppercase;
}
.dp-toggle {
  align-items: center;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  color: rgba(245,245,245,.85);
  cursor: pointer;
  display: flex;
  height: 32px;
  justify-content: center;
  padding: 0;
  transition: background .2s;
  width: 32px;
}
.dp-toggle:hover { background: rgba(255,255,255,.18); }
.dp-toggle svg { height: 15px; transition: transform .35s cubic-bezier(.22,1,.36,1); width: 15px; }
.dp-toggle.is-expanded svg { transform: rotate(180deg); }

.dp-body { padding: 12px 18px 0; }
.dp-brand {
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .36em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.dp-row { align-items: baseline; display: flex; gap: 12px; justify-content: space-between; }
.dp-name {
  color: #f8f4ec;
  font-size: clamp(24px, 6.5vw, 34px);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}
.dp-price {
  color: #f8f4ec;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .02em;
  white-space: nowrap;
}
.dp-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.dp-chips span {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: rgba(245,245,245,.62);
  font-size: 10px;
  letter-spacing: .05em;
  padding: 5px 13px;
}

/* Expandable details */
@keyframes details-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes details-out {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-8px); }
}
.dp-details { animation: details-in .3s cubic-bezier(.22,1,.36,1) both; padding: 16px 18px 0; }
.dp-leaving { animation: details-out .22s ease both !important; pointer-events: none; }
.dp-hidden { display: none; }
.dp-section { margin-bottom: 22px; }
.dp-label {
  color: var(--gold);
  display: block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .22em;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.dp-color-name {
  color: rgba(245,245,245,.6);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: none;
}
.dp-section p {
  color: rgba(245,245,245,.65);
  font-size: 13px;
  line-height: 1.85;
  margin: 0;
}

/* Circular size buttons matching mockup */
.dp-sizes { display: flex; gap: 10px; }
.dp-size {
  align-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  color: rgba(245,245,245,.85);
  cursor: pointer;
  display: flex;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  height: 44px;
  justify-content: center;
  letter-spacing: .04em;
  padding: 0;
  transition: background .2s, border-color .2s, color .2s;
  width: 44px;
}
.dp-size:hover {
  background: rgba(200,161,90,.18);
  border-color: rgba(200,161,90,.4);
  color: var(--gold);
}
.dp-size.active {
  background: #f8f4ec;
  border-color: #f8f4ec;
  color: #0a0a0a;
}

/* Color swatches */
.dp-swatches { display: flex; gap: 14px; margin-top: 6px; }
.dp-swatch {
  background: var(--sw, #0A0A0A);
  border: 2px solid rgba(255,255,255,.12);
  border-radius: 50%;
  cursor: pointer;
  height: 36px;
  padding: 0;
  transition: box-shadow .2s, border-color .2s;
  width: 36px;
}
.dp-swatch:hover { border-color: rgba(200,161,90,.5); }
.dp-swatch.active {
  border-color: transparent;
  box-shadow: 0 0 0 2px rgba(14,11,5,.9), 0 0 0 4px var(--gold);
}

/* Swipe hint */
.dp-hint {
  align-items: center;
  color: rgba(245,245,245,.48);
  display: flex;
  flex-direction: column;
  font-size: 9px;
  gap: 8px;
  letter-spacing: .2em;
  padding: 10px 18px 2px;
  text-align: center;
  text-transform: uppercase;
}
.dp-hint svg { height: 22px; opacity: .65; width: 22px; }

/* Action buttons */
.dp-actions {
  border-top: 1px solid rgba(200,161,90,.1);
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
  padding: 14px 18px max(24px, calc(env(safe-area-inset-bottom) + 14px));
}
.dp-add {
  background: var(--text);
  border: 1px solid var(--text);
  border-radius: 999px;
  color: var(--black);
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  min-height: 52px;
  text-transform: uppercase;
  transition: background .2s, color .2s;
}
.dp-add:hover { background: transparent; color: var(--text); }
.dp-add:disabled { cursor: not-allowed; opacity: .5; }
.dp-next {
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  min-height: 52px;
  text-transform: uppercase;
  transition: background .2s, color .2s;
}
.dp-next:hover { background: var(--gold); color: var(--black); }

/* Hide dots when panel is expanded */
#drop-viewer:has(.drop-panel.is-expanded) .drop-dots { display: none; }

/* Cart button in drop viewer header */
.drop-cart-btn { justify-self: end; position: relative; }
.drop-cart-count {
  align-items: center;
  background: var(--gold);
  border-radius: 50%;
  color: #0a0a0a;
  display: flex;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 900;
  height: 16px;
  justify-content: center;
  min-width: 16px;
  padding: 0 3px;
  position: absolute;
  right: -4px;
  top: -4px;
}

/* Cookie consent banner */
.cookie-banner {
  align-items: center;
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  background: rgba(18,14,6,.92);
  border-top: 1px solid rgba(200,161,90,.2);
  bottom: 0;
  box-shadow: 0 -8px 32px rgba(0,0,0,.3);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  justify-content: space-between;
  left: 0;
  padding: 14px 20px max(14px, env(safe-area-inset-bottom));
  position: fixed;
  right: 0;
  z-index: 300;
}
.cookie-banner p {
  color: rgba(245,245,245,.72);
  font-size: 12px;
  letter-spacing: .04em;
  line-height: 1.5;
  margin: 0;
}
.cookie-accept {
  background: var(--gold);
  border: none;
  border-radius: 999px;
  color: #0a0a0a;
  cursor: pointer;
  flex-shrink: 0;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  padding: 9px 20px;
  text-transform: uppercase;
  transition: opacity .2s;
  white-space: nowrap;
}
.cookie-accept:hover { opacity: .85; }
