:root {
  color-scheme: dark;
  --bg: #0b0d10;
  --surface: rgba(255,255,255,.04);
  --surface-strong: rgba(255,255,255,.08);
  --header-bg: rgba(9, 12, 18, 0.96);
  --text: #f7f2ea;
  --muted: #ded4c5;
  --accent: #d9b14a;
  --accent-soft: rgba(217,177,74,.15);
  --border: rgba(255,255,255,.08);
  --radius: 24px;
  font-family: 'Inter', sans-serif;
}

.site-header,
.admin-header {
  background: var(--header-bg, rgba(3, 8, 20, 0.95));
}

.site-main,
.admin-main,
.admin-panel {
  background: var(--bg);
}

.section-surface,
.product-card,
.review-preview-image,
.form-grid input,
.form-grid select,
.form-grid textarea,
.button,
.button-ghost,
.toast-message {
  background: var(--surface);
}

.toast-message {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 9999;
  width: min(460px, calc(100% - 32px));
  padding: 14px 18px;
  border: 1px solid rgba(212, 175, 55, .45);
  border-radius: 14px;
  background: #16130a;
  color: #fff;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .45);
  transform: translateX(-50%);
}

html, body {
  margin: 0;
  min-height: 100%;
  background: radial-gradient(circle at top, rgba(122, 92, 35, 0.16), transparent 26%), linear-gradient(180deg, #090b0f 0%, #090909 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: #fff;
}

button, input, select, textarea {
  font: inherit;
}

.site-header, .admin-header {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 8px 18px 6px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.site-header {
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}

.site-header-top {
  display: grid;
  grid-template-columns: auto minmax(340px, 1.25fr) auto;
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.primary-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  width: 100%;
  padding: 10px 0 0;
  border-top: 1px solid rgba(255,255,255,.08);
  max-width: 100%;
  min-width: 0;
}

.mobile-nav-toggle {
  display: none;
}

.header-cart {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
}

.cart-icon {
  position: relative;
  display: inline-flex;
  width: 34px;
  height: 30px;
  align-items: center;
  color: #fff;
}

.cart-icon svg {
  width: 32px;
  height: 28px;
}

.cart-count {
  position: absolute;
  top: -7px;
  right: -3px;
  min-width: 16px;
  height: 16px;
  padding: 0 3px;
  border-radius: 999px;
  background: var(--accent);
  color: #111;
  font-size: .68rem;
  font-weight: 800;
  line-height: 16px;
  text-align: center;
}

.nav-item-with-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
  z-index: 10;
  padding-bottom: 14px;
  margin-bottom: -14px;
}

@media (max-width: 760px) {
  .site-header {
    gap: 10px;
    padding: 10px 14px;
  }

  .site-header-top {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  .brand {
    min-width: 0;
  }

  .logo-mark {
    width: 42px;
    height: 42px;
  }

  .logo-copy strong {
    display: none;
  }

  .header-actions {
    gap: 2px;
  }

  .header-link {
    padding: 8px;
    font-size: .82rem;
  }

  .header-actions #accountLink {
    font-size: 0;
  }

  .header-actions #accountLink::before {
    content: 'Account';
    font-size: .82rem;
  }

  .search-bar {
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: none;
  }

  .search-bar input {
    padding: 11px 12px;
    font-size: .9rem;
  }

  .search-bar button {
    padding: 10px 12px;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 5px;
    padding: 8px 12px;
    border: 0;
    border-radius: 0;
    background: #1a2028;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
  }

  .mobile-nav-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .mobile-nav-icon > span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 0;
    background: #fff;
  }

  .mobile-nav-toggle-label {
    margin-left: 3px;
    color: #fff;
    font-size: .9rem;
  }

  .primary-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    padding: 8px 0 0;
    border-top: 0;
  }

  .primary-nav.is-open { display: flex; }

  .primary-nav > .nav-link,
  .primary-nav > .nav-item-with-menu { width: 100%; }

  .primary-nav > .nav-link,
  .primary-nav .dropdown-toggle { display: flex; width: 100%; justify-content: space-between; padding: 11px 12px; }

  .nav-item-with-menu {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    max-width: none;
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns: 1fr !important;
    margin-top: 4px;
    transform: none;
    display: none !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-item-with-menu.is-open > .dropdown-menu,
  .nav-dropdown.is-open > .dropdown-menu { display: grid !important; }
}

/* Product-led deal carousel */
.deal-of-day { overflow: visible; }
.deal-heading-row { align-items: center; }
.deal-viewport { position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.1); box-shadow: 0 20px 48px rgba(0,0,0,.25); }
.deal-slide { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(220px, .9fr); gap: clamp(20px, 5vw, 72px); min-height: 340px; padding: clamp(26px, 5vw, 52px); align-items: center; }
.deal-slide-copy { max-width: 540px; }
.deal-slide .deal-kicker { margin: 0 0 12px; color: #f6da7b; letter-spacing: .16em; font-size: .75rem; font-weight: 800; }
.deal-slide h2 { font-size: clamp(2rem, 4.4vw, 3.7rem); line-height: 1.03; }
.deal-slide > .deal-slide-copy > span { display: block; max-width: 470px; margin: 14px 0 18px; line-height: 1.6; }
.deal-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 9px; margin-bottom: 10px; }
.deal-price strong { color: #fff; font-size: clamp(1.65rem, 3vw, 2.25rem); }
.deal-price s { color: rgba(255,255,255,.65); font-size: 1rem; }
.deal-price b { padding: 4px 8px; border-radius: 999px; background: rgba(255,255,255,.14); color: #f7dc7c; font-size: .76rem; }
.deal-slide .deal-stock { margin: 0 0 22px; color: #f7dc7c; font-size: .9rem; font-weight: 700; letter-spacing: normal; }
.deal-slide a { display: inline-flex; align-items: center; gap: 9px; padding: 12px 18px; transition: transform .2s ease, background .2s ease; }
.deal-slide a:hover { transform: translateY(-2px); background: #ffe17a; }
.deal-product-image { justify-self: end; width: min(100%, 300px); aspect-ratio: 1; display: grid; place-items: center; overflow: hidden; border-radius: 24px; background: rgba(255,255,255,.92); box-shadow: 0 18px 35px rgba(0,0,0,.22); transform: rotate(3deg); }
.deal-product-image img { width: 100%; height: 100%; object-fit: cover; }
.deal-indicators { display: flex; justify-content: center; gap: 8px; position: absolute; bottom: 16px; left: 0; right: 0; }
.deal-indicators button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,.42); cursor: pointer; transition: width .2s ease, background .2s ease; }
.deal-indicators button.active { width: 26px; background: #f4d86c; }

@media (max-width: 760px) {
  .deal-of-day { width: min(100% - 28px, 1180px); margin-top: 22px; }
  .deal-heading-row { align-items: end; margin-bottom: 12px; }
  .deal-heading-row h1 { font-size: 2rem; }
  .deal-controls { position: static; gap: 6px; }
  .deal-controls button { width: 38px; height: 38px; padding: 0; border: 1px solid rgba(212,175,55,.42); border-radius: 50%; background: var(--surface); color: var(--text); font-size: 1.15rem; }
  .deal-slide { grid-template-columns: 1fr; gap: 22px; min-height: 0; padding: 28px 24px 42px; }
  .deal-product-image { justify-self: center; order: -1; width: min(64vw, 250px); border-radius: 20px; transform: rotate(2deg); }
  .deal-slide h2 { font-size: clamp(1.9rem, 9vw, 2.6rem); }
  .deal-slide > .deal-slide-copy > span { margin: 10px 0 16px; }
  .deal-indicators { bottom: 14px; }
}

.nav-sell-link {
  color: #1a1407 !important;
  background: linear-gradient(180deg, #e8c85a 0%, #d6aa34 100%);
}

.nav-sell-link:hover,
.nav-sell-link:focus { background: #f4d86c !important; color: #1a1407 !important; }

.nav-link,
.primary-nav a {
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 600;
  padding: 9px 12px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
  text-decoration: none;
}

.nav-link:hover,
.nav-link:focus,
.primary-nav a:hover,
.primary-nav a:focus {
  color: #fff;
  background: rgba(212,175,55,.14);
}

.nav-item-with-menu.is-open > .dropdown-menu,
.nav-dropdown.is-open > .dropdown-menu {
  display: grid;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-item-with-menu:hover > .dropdown-menu,
.nav-item-with-menu:focus-within > .dropdown-menu,
.nav-dropdown:hover > .dropdown-menu,
.nav-dropdown:focus-within > .dropdown-menu {
  display: grid;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.search-bar {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 680px;
  min-width: 0;
  background: rgba(17, 20, 25, 0.92);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  overflow: visible;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
}

.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 16px;
  background: transparent;
  color: var(--text);
  font-size: 1.02rem;
}

.search-bar input::placeholder {
  color: rgba(244, 239, 232, 0.68);
}

.search-bar button {
  border: none;
  background: linear-gradient(180deg, #e8c85a 0%, #d6aa34 100%);
  color: #11150c;
  font-weight: 800;
  padding: 13px 18px;
  border-radius: 0 999px 999px 0;
  cursor: pointer;
}

.header-search-suggestions {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: rgba(11, 14, 19, 0.98) !important;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  box-shadow: 0 18px 32px rgba(0,0,0,0.28);
  overflow: hidden;
  z-index: 40;
  padding: 6px;
}

.header-search-suggestions.hidden {
  display: none;
}

.header-search-suggestion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  border: none;
  background: transparent !important;
  color: #f3efe9 !important;
  padding: 12px 16px;
  margin: 3px 0;
  border-radius: 12px;
  text-align: left;
  font-size: 0.96rem;
  font-weight: 600;
  cursor: pointer;
}

.header-search-suggestion:first-child {
  margin-top: 0;
}

.header-search-suggestion:last-child {
  margin-bottom: 0;
}

.header-search-suggestion:hover,
.header-search-suggestion:focus {
  background: rgba(255,255,255,0.04) !important;
}

.header-search-suggestion small {
  color: rgba(255,255,255,0.72) !important;
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
}

.header-actions {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
}

.header-link {
  color: var(--muted);
  font-size: .92rem;
  font-weight: 600;
  padding: 9px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}

.header-link:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
}

  .header-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }


.header-cart:hover {
  background: #ffe27d;
}

.cart-count { display: inline-grid; place-items: center; min-width: 20px; height: 20px; padding: 0 5px; margin-left: 3px; border-radius: 50px; background: var(--accent); color: #171307; font-size: .75rem; font-weight: 800; }
.deal-of-day { width: min(1180px, calc(100% - 40px)); margin: 42px auto 18px; position: relative; overflow: hidden; }.deal-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 18px; }.deal-heading-row h1 { margin: 5px 0 0; font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.2rem); }.deal-controls { display: flex; gap: 9px; }.deal-controls button { width: 43px; height: 43px; border: 1px solid rgba(212,175,55,.42); border-radius: 50%; background: var(--surface); color: var(--text); font-size: 1.3rem; cursor: pointer; }.deal-controls button:hover { background: var(--accent); color: #12100a; }.deal-viewport { overflow: hidden; border-radius: 24px; }.deal-track { display: flex; transition: transform .55s ease; }.deal-slide { min-width: 100%; min-height: 230px; padding: clamp(28px, 6vw, 56px); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; border: 1px solid rgba(255,255,255,.08); }.deal-slide p { margin: 0 0 12px; color: #f4d86c; letter-spacing: .22em; font-size: .8rem; font-weight: 800; }.deal-slide h2 { margin: 0; font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.4rem); }.deal-slide span { margin: 10px 0 22px; color: rgba(255,255,255,.82); }.deal-slide a { padding: 11px 17px; border-radius: 999px; background: #f3c637; color: #161208; font-weight: 800; }.deal-gold { background: radial-gradient(circle at 85% 25%, rgba(212,175,55,.35), transparent 34%), linear-gradient(115deg, #171308, #3a2a08); }.deal-wine { background: radial-gradient(circle at 84% 30%, rgba(255,164,164,.17), transparent 36%), linear-gradient(115deg, #1f0a13, #4c1526); }.deal-blue { background: radial-gradient(circle at 84% 30%, rgba(125,185,255,.2), transparent 36%), linear-gradient(115deg, #081625, #10365a); }
.home-rails { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding-top: 0; }.rail-section { margin: 40px 0; }.rail-title { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 16px; }.rail-title h2 { margin: 0; font-size: 1.5rem; }.rail-title a { color: #f4d86c; font-size: .9rem; font-weight: 800; }.home-product-grid { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(220px, 260px); gap: 16px; overflow-x: auto; padding: 0 0 10px; scroll-snap-type: x proximity; }.rail-product-card { overflow: hidden; scroll-snap-align: start; border: 1px solid var(--border); border-radius: 16px; background: var(--surface); }.rail-product-card img { width: 100%; height: 180px; object-fit: cover; background: #171717; }.rail-product-card div { padding: 15px; }.rail-product-card p { margin: 0; color: var(--muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; }.rail-product-card h3 { min-height: 40px; margin: 7px 0; font-size: 1rem; }.rail-product-card strong { color: #f4d86c; }.rail-product-card button { display: block; width: 100%; margin-top: 14px; padding: 10px; border: 0; border-radius: 9px; background: var(--accent); color: #191308; font-weight: 800; cursor: pointer; }.rail-empty { color: var(--muted); }

@media (max-width: 760px) {
  .home-product-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    grid-auto-columns: auto;
    overflow-x: visible;
    overflow-y: visible;
    scroll-snap-type: none;
    gap: 14px;
    padding: 0;
  }

  .rail-product-card {
    scroll-snap-align: unset;
  }

  .rail-product-card img {
    height: 220px;
  }

  .rail-title {
    margin-bottom: 12px;
  }
}
.catalogue-tools { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin: 0 0 18px; }.filter-toggle { display: inline-flex; align-items: center; gap: 8px; padding: 11px 15px; border: 1px solid rgba(212,175,55,.35); border-radius: 999px; background: var(--surface); color: var(--text); cursor: pointer; font-weight: 800; }.filter-toggle span, .product-result-count { color: var(--muted); font-size: .78rem; font-weight: 600; }.filters-panel.filters-open { display: grid !important; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; padding: 16px; margin-bottom: 24px; border: 1px solid var(--border); border-radius: 16px; background: rgba(255,255,255,.035); }.filters-panel .filter-group { margin: 0; }.filters-panel label { gap: 6px; font-size: .78rem; }.filters-panel input, .filters-panel select { padding: 10px 11px; min-height: 42px; }.filters-panel .filter-range { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }.filters-panel #clearFilters { min-height: 42px; align-self: end; }
.listing-disclosure, .footer-disclaimer { color: var(--muted); font-size: .83rem; line-height: 1.6; }.listing-disclosure { max-width: 850px; margin: 26px auto 0; text-align: center; }.footer-disclaimer { max-width: 1100px; margin: 18px auto 0; padding: 0 24px 22px; text-align: center; }
.legal-nav { display: flex; gap: 18px; color: var(--muted); font-weight: 700; font-size: .9rem; }.legal-page { max-width: 940px; }.policy-nav { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 28px; }.policy-nav a { padding: 10px 13px; border: 1px solid var(--border); border-radius: 999px; color: var(--muted); font-size: .85rem; font-weight: 700; }.policy-card { margin: 0 0 22px; padding: clamp(24px, 4vw, 38px); border: 1px solid var(--border); border-radius: 20px; background: var(--surface); }.policy-card h2 { margin: 0 0 16px; font-family: 'Playfair Display', serif; font-size: clamp(1.55rem, 3vw, 2.1rem); }.policy-card p { color: var(--muted); line-height: 1.8; }.policy-card a { color: #f4e7a4; }.compliance-note { padding: 15px; border-left: 3px solid var(--accent); background: var(--accent-soft); }.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }.team-card { padding: 26px; border: 1px solid var(--border); border-radius: 18px; background: var(--surface); }.team-card h2 { margin: 7px 0; font-family: 'Playfair Display', serif; }.team-card p { margin: 0 0 14px; color: #f4e7a4; font-weight: 700; }.team-card span { color: var(--muted); line-height: 1.65; }
.simple-header { min-height: 76px; padding: 16px max(5vw, 24px); display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--border); background: var(--header-bg); }
.brand-link { color: #f4e7a4; letter-spacing: .12em; font-weight: 800; }.brand-link span { display: block; margin-top: 4px; color: var(--muted); font-size: .65rem; font-weight: 600; letter-spacing: .06em; }
.auth-layout { width: min(1120px, calc(100% - 40px)); min-height: calc(100vh - 77px); margin: auto; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(32px, 8vw, 120px); }.auth-intro h1, .page-heading h1 { margin: 8px 0 14px; font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5vw, 4.8rem); line-height: 1; }.auth-intro > p:not(.eyebrow), .page-heading > p { color: var(--muted); line-height: 1.75; font-size: 1.05rem; }.auth-card { padding: 32px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); box-shadow: 0 32px 72px rgba(0,0,0,.22); }.auth-card form { display: grid; gap: 15px; }.auth-card label, .checkout-form label { display: grid; gap: 8px; color: var(--muted); font-size: .86rem; font-weight: 700; }.auth-card input, .checkout-form input { width: 100%; border: 1px solid var(--border); border-radius: 12px; padding: 13px 14px; background: rgba(0,0,0,.22); color: var(--text); outline: none; }.auth-card input:focus, .checkout-form input:focus { border-color: var(--accent); }.hidden { display: none !important; }.wide-button { width: 100%; justify-content: center; margin-top: 8px; }.auth-divider { display: flex; align-items: center; gap: 12px; margin: 18px 0; color: var(--muted); font-size: .8rem; }.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }.form-message { min-height: 20px; color: #8fe4ac; font-size: .9rem; }.form-message.is-error { color: #ff9e9e; }.stack-actions { display: grid; gap: 12px; }.muted-copy { color: var(--muted); line-height: 1.6; }.text-link { display: inline-block; margin-top: 20px; color: #f4e7a4; font-weight: 700; }
.shop-page { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 70px 0 100px; }.page-heading { margin-bottom: 42px; }.page-heading h1 { font-size: clamp(2.2rem, 4vw, 3.6rem); }.cart-layout, .checkout-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 360px); align-items: start; gap: 28px; }.cart-items, .checkout-form, .order-summary { border: 1px solid var(--border); border-radius: 20px; background: var(--surface); }.cart-item { display: grid; grid-template-columns: 108px 1fr auto auto; gap: 18px; align-items: center; padding: 20px; border-bottom: 1px solid var(--border); }.cart-item:last-child { border-bottom: none; }.cart-item img { width: 108px; height: 108px; border-radius: 12px; object-fit: cover; background: #111; }.cart-item h2 { margin: 5px 0 12px; font-size: 1.05rem; }.quantity-control { display: inline-flex; align-items: center; gap: 10px; padding: 5px; border: 1px solid var(--border); border-radius: 10px; }.quantity-control button, .remove-item { border: 0; background: transparent; color: var(--text); cursor: pointer; }.quantity-control button { width: 28px; height: 28px; border-radius: 7px; background: var(--surface-strong); font-size: 1.1rem; }.remove-item { color: #f0aaaa; font-weight: 700; }.order-summary { position: sticky; top: 22px; padding: 24px; }.order-summary h2, .checkout-form h2 { margin: 0 0 22px; font-size: 1.2rem; }.summary-line, .summary-total, .checkout-item { display: flex; justify-content: space-between; gap: 16px; padding: 14px 0; color: var(--muted); }.summary-total { margin-bottom: 14px; border-top: 1px solid var(--border); color: var(--text); font-size: 1.12rem; }.is-disabled { pointer-events: none; opacity: .45; }.empty-state { padding: 56px 28px; text-align: center; }.empty-state h2 { margin: 0; }.empty-state p { color: var(--muted); }.checkout-form { padding: 28px; }.checkout-form .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }.full-field { grid-column: 1 / -1; }.payment-option { display: flex !important; grid-template-columns: auto 1fr; align-items: center; margin: 12px 0; padding: 14px; border: 1px solid var(--border); border-radius: 12px; }.payment-option input { width: auto; }.checkout-items { border-bottom: 1px solid var(--border); margin-bottom: 8px; }.product-whatsapp { display: inline-block; margin-top: 10px; color: var(--muted); font-size: .85rem; font-weight: 700; }
@media (max-width: 760px) { .auth-layout, .cart-layout, .checkout-layout { grid-template-columns: 1fr; }.auth-layout { padding: 64px 0; }.cart-item { grid-template-columns: 80px 1fr auto; gap: 12px; }.cart-item img { width: 80px; height: 80px; }.remove-item { grid-column: 2 / 4; justify-self: start; }.order-summary { position: static; }.checkout-form .form-grid { grid-template-columns: 1fr; }.full-field { grid-column: auto; }.simple-header { padding: 14px 20px; }.brand-link span { display: none; } }

.site-header .brand {
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  padding: 0;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 32px;
  background: rgba(16, 23, 48, 0.88);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.18);
  flex-shrink: 0;
}

.logo-svg {
  width: 68px;
  height: 68px;
}

.logo-copy {
  display: grid;
  line-height: 1.1;
}

.logo-copy .eyebrow {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.logo-copy strong {
  font-size: 1.05rem;
  color: #f4e7a4;
  letter-spacing: 0.06em;
}

.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,.08);
  color: var(--muted);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.dropdown-toggle:hover,
.dropdown-toggle:focus {
  background: rgba(212,175,55,.14);
  color: #fff;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 280px;
  width: max-content;
  max-width: min(520px, 76vw);
  padding: 16px;
  border-radius: 24px;
  background: rgba(6, 12, 22, 0.98);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 24px 64px rgba(0,0,0,.28);
  display: none;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 16px;
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  pointer-events: none;
}

.ribbon-dropdown {
  min-width: 220px;
  grid-template-columns: 1fr;
}

.nav-item-with-menu:hover > .dropdown-menu,
.nav-item-with-menu:focus-within > .dropdown-menu,
.nav-dropdown:hover > .dropdown-menu,
.nav-dropdown:focus-within > .dropdown-menu {
  pointer-events: auto;
}

.dropdown-column {
  display: grid;
  gap: 10px;
}

.dropdown-column strong {
  color: var(--text);
  margin-bottom: 8px;
}

.dropdown-submenu {
  grid-column: span 2;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.submenu-items {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.dropdown-back {
  width: 100%;
  justify-content: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
}

.dropdown-item {
  display: inline-flex;
  align-items: center;
  width: 100%;
  min-height: 44px;
  background: rgba(255,255,255,.05);
  color: var(--text);
  border: none;
  border-radius: 14px;
  padding: 12px 14px;
  text-align: left;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: rgba(212,175,55,.16);
  color: #fff;
  transform: translateX(4px);
}

.filters-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  margin-bottom: 24px;
  border-radius: 26px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.filter-group {
  display: grid;
  gap: 8px;
}

.filter-group label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: .95rem;
}

.filters-panel input,
.filters-panel select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.12);
  color: var(--text);
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.filters-panel select {
  color: #f6f5f3;
  background: rgba(18, 24, 40, .88);
  border: 1px solid rgba(255,255,255,.16);
}

.filters-panel select option {
  color: #f6f5f3;
  background: #0d1321;
}

.filters-panel input:focus,
.filters-panel select:focus {
  border-color: rgba(212,175,55,.85);
  box-shadow: 0 0 0 4px rgba(212,175,55,.12);
}

.filter-range {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.category-action {
  text-align: left;
  border: none;
  cursor: pointer;
  padding: 30px;
  background: rgba(255,255,255,.04);
}

.category-action:hover {
  background: rgba(212,175,55,.12);
}

.sell-with-us-panel {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 24px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
}

.seller-page {
  padding-top: 56px;
  padding-bottom: 72px;
}

.seller-hero {
  margin-bottom: 30px;
}

.seller-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  margin: 8px 0 16px;
}

.seller-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.seller-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

.seller-card,
.step-card,
.seller-highlight,
.seller-contact-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 26px;
}

.seller-card h2,
.step-card h3,
.seller-split-copy h2,
.seller-contact h2 {
  margin: 10px 0 12px;
}

.seller-card p,
.step-card p,
.seller-split-copy p,
.seller-contact-box p,
.seller-highlight p {
  color: var(--muted);
  line-height: 1.7;
}

.seller-section {
  margin-top: 26px;
}

.seller-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212,175,55,.12);
  color: #f4d86c;
  font-weight: 800;
}

.seller-split {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 20px;
  align-items: stretch;
}

.seller-tags {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.seller-tags li {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--text);
  font-size: .9rem;
}

.seller-contact-box {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.seller-contact-box a {
  color: #f4d86c;
}

.sell-copy {
  display: grid;
  gap: 18px;
}

.sell-copy p {
  margin: 0;
  color: var(--text);
  font-size: 1.04rem;
  line-height: 1.8;
}

.sell-points {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
  color: var(--muted);
  line-height: 1.7;
}

.sell-card {
  display: grid;
  gap: 16px;
  padding: 26px;
  border-radius: 24px;
  background: rgba(11,16,24,.78);
  border: 1px solid rgba(212,175,55,.25);
}

.sell-mini-tag {
  margin: 0;
  color: #f4d86c;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .7rem;
  font-weight: 700;
}

.sell-card h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.sell-steps {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.brand-text-classic {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f8e89b;
}

.brand-text-glam {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #f5d472;
  text-shadow: 0 0 12px rgba(212, 175, 55, .55);
}

.brand-text-modern {
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 800;
}

.admin-logo-mark {
  padding: 10px 14px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .72rem;
  color: rgba(212, 175, 55, 0.95);
  margin: 0 0 8px;
}

.site-header {
  background: var(--header-bg, rgba(3, 8, 20, 0.88));
  position: relative;
  z-index: 20;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body {
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.14), transparent 30%), linear-gradient(180deg, #05070f 0%, #090d1e 100%);
}

.button-primary {
  background: var(--accent);
  color: #0d101a;
}

.button-secondary,
.button-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border-color: rgba(212, 175, 55, 0.18);
}

.login-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  padding: 28px;
  max-width: 520px;
  margin: 0 auto;
}

.login-card form {
  display: grid;
  gap: 18px;
}

.login-card label {
  display: grid;
  gap: 10px;
  font-weight: 500;
  color: var(--text);
}

.login-card input {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255,255,255,.06);
  color: var(--text);
}

.login-card input::placeholder {
  color: rgba(255,255,255,.55);
}

.login-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: .95rem;
}

.product-card {
  display: grid;
  gap: 18px;
  padding: 18px;
  border-radius: 26px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}

.product-type-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  color: var(--muted);
}

.product-price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: baseline;
}

.product-price-row .product-price {
  font-size: 1.4rem;
  font-weight: 800;
}

.product-price-row .product-market {
  text-decoration: line-through;
  color: rgba(255,255,255,.65);
}

.product-discount {
  color: var(--accent);
  font-weight: 700;
}

.product-detail {
  margin: 8px 0 0;
  color: rgba(255,255,255,.78);
  font-size: .95rem;
  line-height: 1.5;
}

.testimonial-image {
  width: 100%;
  border-radius: 20px;
  margin-top: 18px;
  max-height: 260px;
  object-fit: cover;
}

.product-info {
  display: grid;
  gap: 18px;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

@media (min-width: 1300px) {
  .product-grid {
    grid-template-columns: repeat(4, minmax(240px, 1fr));
  }
}

@media (max-width: 780px) {
  .hero-actions,
  .product-actions,
  .header-actions,
  .hero-features,
  .login-extra-actions,
  .login-toggle {
    flex-direction: column;
    align-items: stretch;
  }
}

.login-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  padding: 28px;
  max-width: 620px;
  margin: 0 auto;
}

.login-toggle {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.tab-button {
  flex: 1;
  min-width: 120px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(255,255,255,.06);
  color: var(--text);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.tab-button.active {
  background: var(--accent);
  color: #0d101a;
  border-color: rgba(255,255,255,.18);
}

.form-row {
  display: grid;
  gap: 18px;
}

.hidden {
  display: none !important;
}

.login-card label {
  display: grid;
  gap: 12px;
  font-weight: 500;
  color: var(--text);
}

.login-card input {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255,255,255,.06);
  color: var(--text);
}

.login-card input::placeholder {
  color: rgba(255,255,255,.55);
}

.login-extra-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.login-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: .95rem;
}

.review-preview-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.review-status-badge {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.review-status-badge.approved {
  background: rgba(40, 167, 69, .16);
  color: #28a745;
}

.review-status-badge.pending {
  background: rgba(255, 193, 7, .16);
  color: #ffc107;
}

.review-status-badge.rejected {
  background: rgba(220, 53, 69, .16);
  color: #dc3545;
}

.review-row {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  padding: 20px;
  margin-bottom: 18px;
  background: rgba(255,255,255,.04);
}

.review-row.review-status-rejected {
  opacity: .85;
}

.review-preview-image {
  margin-top: 14px;
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  max-height: 260px;
  object-fit: cover;
}

.theme-default {
  --bg: #050505;
  --surface: rgba(255,255,255,.05);
  --surface-strong: rgba(255,255,255,.1);
  --text: #f6f5f3;
  --muted: #bebab4;
  --accent: #d4af37;
  --border: rgba(255,255,255,.08);
  --bg-gradient: radial-gradient(circle at top, rgba(212,175,55,.12), transparent 30%), linear-gradient(180deg, #070707 0%, #020202 100%);
}

.theme-midnight {
  --bg: #070c19;
  --surface: rgba(255,255,255,.06);
  --surface-strong: rgba(255,255,255,.12);
  --text: #f8f4ea;
  --muted: #cbbf9a;
  --accent: #ffd36e;
  --border: rgba(255,255,255,.1);
  --bg-gradient: radial-gradient(circle at top, rgba(255,211,134,.14), transparent 28%), linear-gradient(180deg, #050919 0%, #070e21 100%);
}

.theme-ivory {
  --bg: #f8f4ec;
  --surface: rgba(18, 21, 31, .08);
  --surface-strong: rgba(18, 21, 31, .12);
  --text: #10121a;
  --muted: #5e5a54;
  --accent: #b98d30;
  --border: rgba(16, 20, 31, .12);
  --bg-gradient: linear-gradient(180deg, #fbf7f2 0%, #eae2d2 100%);
}

.theme-noir {
  --bg: #040509;
  --surface: rgba(255,255,255,.05);
  --surface-strong: rgba(255,255,255,.12);
  --text: #eef0f5;
  --muted: #a8a9b3;
  --accent: #c6a76d;
  --border: rgba(255,255,255,.1);
  --bg-gradient: radial-gradient(circle at top, rgba(198,167,109,.12), transparent 24%), linear-gradient(180deg, #020204 0%, #07090f 100%);
}

body {
  background: var(--bg-gradient);
  color: var(--text);
  min-height: 100vh;
}

.site-header {
  background: rgba(3, 8, 20, 0.95);
  position: relative;
  z-index: 50;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 60px rgba(0,0,0,.25);
}

.floating-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: grid;
  align-items: end;
  gap: 14px;
  z-index: 40;
}

.floating-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 54px;
  padding: 10px;
  border-radius: 999px;
  overflow: hidden;
  width: 54px;
  text-align: center;
  transition: width .22s ease, transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

.floating-button:hover {
  width: 170px;
  justify-content: space-between;
}

.floating-button .floating-label {
  opacity: 0;
  width: 0;
  white-space: nowrap;
  overflow: hidden;
  transition: opacity .18s ease, width .18s ease;
}

.floating-button:hover .floating-label {
  opacity: 1;
  width: auto;
}

.floating-button {
  color: #fff;
  font-weight: 700;
  letter-spacing: .03em;
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  background: rgba(9, 14, 26, 0.92);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

.floating-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
  background: rgba(12, 20, 35, 0.96);
  border-color: rgba(255,255,255,.14);
}

.floating-button .icon {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
  flex-shrink: 0;
}

.floating-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.button-instagram {
  background: rgba(9, 14, 26, 0.92);
  border-color: rgba(212, 175, 55, 0.25);
}

.button-instagram:hover {
  border-color: rgba(214, 41, 118, 0.55);
  box-shadow: 0 30px 90px rgba(0,0,0,.28), 0 0 0 1px rgba(214, 41, 118, 0.25);
}

.button-instagram .icon {
  color: #f4d86c;
}

.button-whatsapp {
  background: rgba(9, 14, 26, 0.92);
  border-color: rgba(212, 175, 55, 0.25);
}

.button-whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.55);
  box-shadow: 0 30px 90px rgba(0,0,0,.28), 0 0 0 1px rgba(37, 211, 102, 0.25);
}

.button-whatsapp .icon {
  color: #f4d86c;
}

.button-home {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.16);
}

.button-home:hover {
  background: rgba(255,255,255,.16);
}

.topnav a {
  color: rgba(255,255,255,.82);
  transition: color .2s ease, transform .2s ease;
}

.topnav a:hover {
  color: #fff;
  transform: translateY(-1px);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: .92rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-subtitle {
  display: block;
  margin-top: 10px;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

  .hero-actions .button-primary {
    box-shadow: 0 20px 60px rgba(212,175,55,.24);
  }

  .hero-actions .button-secondary {
    border-color: rgba(255,255,255,.16);
    backdrop-filter: blur(10px);
  }

.hero-features span {
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.01);
}

.hero-features span {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  color: var(--text);
  text-align: center;
  font-size: .95rem;
  border: 1px solid rgba(255,255,255,.08);
}

.visual-card {
  position: relative;
  padding: 34px;
  border-radius: 40px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.08);
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 40px 90px rgba(0,0,0,.18);
}

.visual-spotlight {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.18), transparent 32%),
              radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 25%);
  pointer-events: none;
}

.visual-content {
  position: relative;
  z-index: 1;
}

.visual-content .eyebrow {
  margin-bottom: 18px;
}

.visual-content h3 {
  margin: 0 0 14px;
  font-size: 2rem;
}

.visual-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
}

.visual-meta span {
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255,255,255,.05);
}

.visual-meta .badge {
  background: rgba(212,175,55,.18);
  color: var(--accent);
  font-weight: 700;
}

.hero-visual {
  position: relative;
}

.hero-copy h2 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 4vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: #f5f0e8;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.hero-copy p {
  max-width: 620px;
  margin: 24px 0;
  color: #d8d0c3;
  font-size: 1.05rem;
  line-height: 1.8;
}

.logo-preview {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.logo-preview img {
  width: 160px;
  max-width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}

.admin-body.theme-ivory .admin-header,
.admin-body.theme-noir .admin-header,
.admin-body.theme-midnight .admin-header,
.admin-body.theme-default .admin-header {
  background: rgba(3, 8, 20, 0.85);
}


.site-logo {
  width: 72px;
  height: 72px;
  display: block;
  border-radius: 18px;
  object-fit: cover;
}

.logo-mark.custom-logo {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  padding: 0;
  overflow: hidden;
}

.logo-preview {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.logo-preview img {
  width: 160px;
  max-width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}

.admin-body.theme-ivory .admin-header,
.admin-body.theme-noir .admin-header,
.admin-body.theme-midnight .admin-header,
.admin-body.theme-default .admin-header {
  background: rgba(3, 8, 20, 0.85);
}

.hero-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 36px;
  min-height: 340px;
}

.site-header h1, .admin-header h1 {
  margin: 0;
  font-size: clamp(1.5rem, 2.2vw, 2.4rem);
  line-height: 1.05;
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.topnav a {
  color: rgba(255,255,255,.8);
  font-size: .98rem;
  transition: color .2s ease;
}

.topnav a:hover {
  color: #fff;
}

.social-action-bar {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
}

.social-action-bar .button-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  min-width: 140px;
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 12px 24px;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #111;
  border-color: transparent;
}

.button-secondary {
  background: rgba(255,255,255,.08);
  color: var(--text);
  border-color: rgba(255,255,255,.12);
}

.button-ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,.18);
}

.hero {
  width: 100%;
  margin: 0;
  padding: 40px 30px 60px;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-copy h2 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 4vw, 4.6rem);
  line-height: 1.02;
}

.hero-copy p {
  max-width: 620px;
  margin: 24px 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-visual {
  position: relative;
}

.hero-card {
  border-radius: 32px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  padding: 36px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(14px);
}

.product-label {
  text-transform: uppercase;
  color: var(--accent);
  font-size: .85rem;
  margin: 0 0 16px;
}

.price {
  font-size: 1.35rem;
  font-weight: 700;
}

.section {
  width: 100%;
  margin: 0;
  padding: 40px 30px;
}

.section-alt {
  background: rgba(255,255,255,.02);
  border-top: 1px solid rgba(255,255,255,.05);
}

.section-head {
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.category-grid, .products-grid, .feedback-grid, .support-panel, .footer-grid {
  display: grid;
  gap: 20px;
}

.category-grid {
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
}

.category-card {
  padding: 32px;
  border-radius: 28px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease, border-color .24s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.16);
  box-shadow: 0 28px 70px rgba(0,0,0,.14);
}

.category-card h3 {
  margin: 0 0 12px;
}

.products-grid {
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
}

.product-card {
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  min-height: 0;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease, border-color .24s ease;
}

@media (max-width: 760px) {
  .section {
    padding: 28px 16px;
  }

  .section-head {
    margin-bottom: 18px;
  }

  .section-head h2 {
    font-size: clamp(1.6rem, 6vw, 2.3rem);
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-card {
    min-height: 0;
    border-radius: 22px;
  }

  .product-card img {
    height: 200px;
  }

  .product-info {
    padding: 18px;
  }

  .product-info h3 {
    font-size: 1.05rem;
  }

  .product-pricing {
    gap: 8px;
  }

  .product-actions {
    margin-top: 14px;
    flex-direction: column;
    align-items: stretch;
  }

  .product-actions button,
  .product-actions a {
    width: 100%;
    justify-content: center;
  }
}

.product-card:hover {
  transform: translateY(-4px);
  background: #fff;
  border-color: rgba(0,0,0,.12);
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-image-wrap {
  aspect-ratio: 1;
  height: auto;
  padding: 10px;
  background: #f4f4f4;
}

.product-info {
  padding: 16px 16px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  background: #fff;
  color: #111;
}

.product-copy {
  display: grid;
  gap: 5px;
}

.product-sponsored,
.product-brand,
.product-bought,
.product-delivery {
  color: #56616d !important;
}

.product-sponsored {
  font-size: .78rem;
}

.product-sponsored span {
  display: inline-flex;
  width: 14px;
  height: 14px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #9aa1a8;
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
}

.product-brand {
  font-size: 1.05rem;
  font-weight: 800;
  color: #111 !important;
}

.product-info h3 {
  margin: 0;
  color: #111;
  font-size: 1.08rem;
  line-height: 1.4;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-info p {
  margin: 0;
  line-height: 1.4;
}

.product-summary {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 0;
  font-size: .88rem;
  color: #56616d !important;
}

.product-rating {
  color: #111 !important;
  font-size: .9rem;
}

.product-rating a {
  color: #1769aa;
}

.rating-stars {
  color: #f46b22;
  letter-spacing: 0;
}

.product-bought {
  font-size: .9rem;
}

.product-pricing {
  display: flex;
  gap: 7px;
  align-items: baseline;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.product-price {
  color: #111;
  font-size: 1.8rem;
  font-weight: 500;
}

.product-market {
  color: #69727b;
  text-decoration: line-through;
  font-size: 0.82rem;
}

.product-discount {
  color: #b12704;
  font-size: 0.8rem;
  font-weight: 700;
}

.product-bottom {
  display: grid;
  gap: 8px;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 0;
}

.product-delivery {
  font-size: .88rem;
  color: #111 !important;
}

.product-actions button {
  width: 100%;
  min-height: 40px;
  padding: 9px 16px;
  background: #ffd814;
  color: #111;
  border-color: #fcd200;
  font-size: .95rem;
}

.stock-pill {
  color: var(--muted);
  font-size: 0.75rem;
  white-space: nowrap;
}

.product-actions {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.customer-tag {
  color: var(--accent);
  font-size: .9rem;
}

.feedback-section .feedback-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feedback-card {
  padding: 28px;
  border-radius: 26px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}

.feedback-card span {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: .95rem;
}

.support-panel {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.testimonial-panel {
  width: 100%;
  padding: 32px 20px 36px;
  background: rgba(8, 12, 24, 0.95);
}

.testimonial-panel-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.testimonial-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.testimonial-header h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
}

.testimonial-title {
  margin: 0;
  font-size: .95rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
}

.testimonial-rotator {
  position: relative;
  min-height: 220px;
  overflow: hidden;
}

.testimonial-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .4s ease, transform .4s ease;
  padding: 24px 24px 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  display: grid;
  gap: 18px;
}

.testimonial-item.active {
  opacity: 1;
  position: relative;
  transform: translateY(0);
}

.testimonial-item.active {
  opacity: 1;
  position: relative;
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.12);
}

.testimonial-rating {
  font-size: 1rem;
  letter-spacing: .08em;
  color: #f7d768;
}

.testimonial-name {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: .95rem;
}

.testimonial-item p {
  margin: 0;
  font-size: 1rem;
  color: #f7f7f7;
  line-height: 1.9;
}

.testimonial-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.testimonial-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  transition: background .25s ease, transform .25s ease;
}

.testimonial-indicator.active {
  background: var(--accent);
  transform: scale(1.15);
}

.site-footer {
  width: 100%;
  margin: 0 0 40px;
  padding: 42px 28px 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: var(--muted);
  background: rgba(4, 8, 18, 0.95);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 24px;
  align-items: start;
}

.footer-card {
  display: grid;
  gap: 12px;
}

.site-footer h3,
.site-footer h4 {
  margin: 0;
  color: #fff;
  font-weight: 700;
}

.footer-link,
.social-links a {
  display: inline-block;
  margin-top: 10px;
  color: var(--muted);
}

.footer-link:hover,
.social-links a:hover {
  color: #fff;
}

.footer-note-row {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 22px;
}

.footer-note {
  margin: 0;
  opacity: .78;
  font-size: .95rem;
}

.admin-body {
  min-height: 100vh;
}

.admin-main {
  width: 100%;
  margin: 0;
  padding: 0 30px 60px;
}

.admin-panel {
  display: grid;
  gap: 28px;
}

.admin-section {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  padding: 28px;
}

.form-grid select {
  appearance: none;
  background: rgba(255,255,255,.1);
  color: var(--text);
}

.form-grid select option {
  color: #0c1017;
}

.admin-section h2 {
  margin-top: 0;
}

.form-grid {
  display: grid;
  gap: 18px;
}

.form-grid label {
  display: grid;
  gap: 10px;
  font-size: .95rem;
  color: var(--muted);
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  padding: 14px 16px;
  color: var(--text);
}

.form-grid textarea {
  resize: vertical;
}

.span-full {
  grid-column: 1 / -1;
}

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.product-list {
  display: grid;
  gap: 16px;
}

.product-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.08);
  align-items: center;
}

.product-row div {
  min-width: 0;
}

.product-row h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.product-row p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}

.product-actions button {
  white-space: nowrap;
}

.coupon-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.coupon-card {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.coupon-card span {
  font-weight: 600;
}

.admin-footer {
  width: 100%;
  margin: 0;
  padding: 0 30px 40px;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .site-header-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
  }

  .brand {
    flex: 1 1 220px;
    min-width: 0;
  }

  .search-bar {
    flex: 1 1 300px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .header-actions {
    flex: 1 1 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .primary-nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .primary-nav::-webkit-scrollbar {
    display: none !important;
  }

  .nav-item-with-menu {
    flex: 0 0 auto;
  }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 32px 20px 50px;
  }

  .hero-copy h2 {
    font-size: clamp(2.4rem, 6vw, 3.6rem);
  }

  .hero-copy p {
    margin: 20px 0;
  }

  .site-header {
    padding: 18px 18px 12px;
  }

  .site-header-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
  }

  .brand {
    flex: 1 1 180px;
    min-width: 0;
  }

  .search-bar {
    flex: 1 1 320px;
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .header-actions {
    flex: 1 1 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .primary-nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .primary-nav::-webkit-scrollbar {
    display: none;
  }

  .hero-features {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .dropdown-menu {
    left: 0;
    max-width: min(320px, 70vw);
  }
}

@media (max-width: 680px) {
  .site-header, .hero, .section, .admin-main, .site-footer {
    width: calc(100% - 24px);
  }

  .site-header {
    position: relative;
    width: 100%;
    padding: 18px 12px 12px;
  }

  .header-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    justify-content: flex-start;
  }

  .header-link {
    text-align: center;
    width: auto;
    padding: 10px 10px;
    flex: 1 1 calc(50% - 8px);
    min-width: 90px;
  }

  .site-header-top {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .brand {
    width: 100%;
    justify-content: flex-start;
  }

  .search-bar {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    min-width: 0;
  }

  .search-bar input {
    min-width: 0;
    flex: 1 1 auto;
  }

  .search-bar button {
    flex: 0 0 auto;
    padding-inline: 16px;
  }

  body {
    padding-top: 0;
  }

  .primary-nav {
    gap: 10px;
    justify-content: flex-start;
    padding: 10px 0 0;
    overflow-x: auto;
    flex-wrap: nowrap;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .primary-nav::-webkit-scrollbar {
    display: none;
  }

  .primary-nav a,
  .nav-dropdown {
    min-width: 0;
    flex: 0 0 auto;
    text-align: center;
  }

  .hero {
    gap: 26px;
  }

  .hero-copy h2 {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .hero-features {
    grid-template-columns: 1fr;
  }

  .hero-features span {
    padding: 14px 16px;
  }

  .category-grid,
  .products-grid,
  .filters-panel,
  .feedback-grid,
  .support-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .filters-panel {
    gap: 16px;
  }

  .filters-panel label,
  .filters-panel button {
    width: 100%;
  }

  .search-bar {
    flex-wrap: wrap;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
  }

  .testimonial-float {
    left: 12px;
    right: 12px;
    bottom: 14px;
  }

  .testimonial-list {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-card img {
    height: 220px;
  }

  .product-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Catalogue drawer remains accessible and responsive without forcing hidden sections. */
.filters-panel { display: none; }
.filters-panel.filters-open { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; padding: 16px; margin-bottom: 24px; border: 1px solid var(--border); border-radius: 16px; background: rgba(255,255,255,.035); }
.filters-panel .filter-group { margin: 0; }
.filters-panel label { gap: 6px; font-size: .78rem; }
.filters-panel input, .filters-panel select { padding: 10px 11px; min-height: 42px; }
.filters-panel .filter-range { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.filters-panel #clearFilters { min-height: 42px; align-self: end; }
@media (max-width: 760px) {
  .deal-of-day { width: min(100% - 28px, 1180px); margin-top: 24px; }
  .deal-slide { min-height: 210px; }
  .filter-toggle span { display: none; }
  .filters-panel.filters-open { grid-template-columns: 1fr 1fr; }
  .filters-panel .filter-group:first-child, .filters-panel .filter-group:nth-child(4), .filters-panel .filter-group:nth-child(5), .filters-panel .filter-range, .filters-panel #clearFilters { grid-column: 1 / -1; }
  .catalogue-tools { margin-bottom: 14px; }
}

/* Deal controls sit inside the visible banner area so the page does not exceed viewport width on tablet/mobile ratios. */
.deal-controls { position: absolute; z-index: 2; top: 59%; left: 16px; right: 16px; justify-content: space-between; pointer-events: none; }
.deal-controls button { width: auto; height: auto; padding: 4px; border: 0; background: transparent; color: #f4d86c; box-shadow: none; font-size: 2.15rem; line-height: 1; pointer-events: auto; }
.deal-controls button:hover { background: transparent; color: #fff; transform: scale(1.15); }
@media (max-width: 760px) { .deal-controls { left: 8px; right: 8px; top: 61%; }.deal-controls button { font-size: 1.8rem; } }

/* Catalogue contrast must not inherit a light admin-configured surface colour. */
.filter-toggle { background: #191813 !important; border-color: rgba(244, 216, 108, .55) !important; color: #fff !important; }
.filter-toggle span { color: #d8d1c3 !important; }
.product-result-count { color: #cfc7ba !important; }
.rail-product-card { background: #151515 !important; border-color: #343434 !important; box-shadow: 0 10px 24px rgba(0,0,0,.18); }
.rail-product-card div { background: #151515 !important; }
.rail-product-card p { color: #c7bda9 !important; }
.rail-product-card h3 { color: #fff !important; }
.rail-product-card strong { color: #f4d86c !important; }
.rail-product-card button { background: #d7af2f !important; color: #171307 !important; }
.rail-product-card button:hover { background: #f4d86c !important; }
.products-grid .product-card { background: #fff !important; border-color: rgba(0,0,0,.12) !important; }
.products-grid .product-info { background: #fff !important; }
.products-grid .product-info h3 { color: #111 !important; }

/* Keep the retail card hierarchy while matching the storefront theme. */
.products-grid .product-card {
  background: #151515 !important;
  border-color: #343434 !important;
}

.products-grid .product-info {
  background: #151515 !important;
  color: var(--text);
}

.products-grid .product-info h3,
.products-grid .product-brand,
.products-grid .product-rating,
.products-grid .product-delivery strong {
  color: #fff !important;
}

.products-grid .product-sponsored,
.products-grid .product-summary,
.products-grid .product-bought,
.products-grid .product-delivery {
  color: #c7bda9 !important;
}

.products-grid .product-price {
  color: #f4e7a4 !important;
}

.products-grid .product-market {
  color: #aaa !important;
}

.products-grid .product-discount {
  color: #f4d86c !important;
}

.products-grid .product-image-wrap {
  overflow: hidden;
}

.products-grid .product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Keep stacked header sections content-sized on phones instead of using desktop flex bases as heights. */
@media (max-width: 680px) {
  .site-header-top > .brand,
  .site-header-top > .search-bar,
  .site-header-top > .header-actions {
    flex: 0 0 auto;
  }

  .brand {
    height: auto;
  }

  .search-bar {
    height: auto;
    flex-wrap: nowrap;
  }

  .header-actions {
    height: auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 4px 6px;
  }

  .header-link {
    flex: 1 1 calc(33.333% - 6px);
    min-width: 0;
    padding: 8px 6px;
    font-size: .82rem;
  }
}

@media (max-width: 360px) {
  .site-header {
    padding-inline: 8px;
  }

  .brand {
    gap: 8px;
  }

  .logo-mark,
  .logo-svg,
  .site-logo {
    width: 48px;
    height: 48px;
  }

  .logo-copy .eyebrow {
    font-size: .55rem;
    letter-spacing: .16em;
  }

  .logo-copy strong {
    font-size: .72rem;
    letter-spacing: .02em;
  }

  .search-bar input {
    padding-inline: 10px;
    font-size: .78rem;
  }

  .search-bar button {
    padding-inline: 11px;
    font-size: .78rem;
  }

  .header-link {
    min-width: 0;
    padding-inline: 6px;
    font-size: .78rem;
    flex-basis: calc(50% - 6px);
  }
}

@media (max-width: 760px) {
  .products-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 82vw);
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 4px 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    overscroll-behavior-x: contain;
  }

  .products-grid .product-card {
    min-width: 0;
    scroll-snap-align: start;
  }
}

.product-header {
  min-height: 70px;
}

.product-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
}

.product-nav a:hover {
  color: #fff;
}

.product-detail-page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0 100px;
}

.product-detail-status {
  padding: 60px 0;
  color: var(--muted);
  text-align: center;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.product-gallery {
  min-width: 0;
}

.product-main-image {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid #343434;
  border-radius: 18px;
  background: #f4f4f4;
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-main-image video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.product-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
}

.product-thumbnail {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  padding: 4px;
  border: 1px solid #343434;
  border-radius: 10px;
  background: #151515;
  cursor: pointer;
}

.product-thumbnail.is-active {
  border-color: var(--accent);
}

.product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-copy {
  padding-top: 8px;
}

.product-detail-brand {
  margin: 0 0 8px;
  color: #f4e7a4;
  font-size: 1.05rem;
  font-weight: 800;
}

.product-detail-copy h1 {
  margin: 0 0 14px;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.product-detail-rating {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 26px;
  color: var(--muted);
}

.product-detail-rating span {
  color: #f46b22;
}

.product-detail-rating a {
  color: #70b7ed;
}

.product-detail-description {
  max-width: 620px;
  margin: 0 0 26px;
  color: var(--muted);
  line-height: 1.75;
}

.product-detail-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}

.product-detail-price strong {
  color: #f4e7a4;
  font-size: 2rem;
}

.product-detail-price span {
  color: #f4d86c;
  font-weight: 800;
}

.product-detail-price del {
  color: #999;
}

.product-detail-delivery {
  margin: 0 0 24px;
  color: var(--muted);
}

.product-detail-delivery strong {
  color: #fff;
}

.product-specs {
  display: grid;
  gap: 1px;
  margin: 0 0 28px;
  border-top: 1px solid #343434;
  border-bottom: 1px solid #343434;
}

.product-specs div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  padding: 11px 0;
}

.product-specs dt {
  color: var(--muted);
}

.product-specs dd {
  margin: 0;
  color: #fff;
  font-weight: 600;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-detail-actions .button {
  flex: 1 1 180px;
}

.product-detail-actions .button-primary {
  background: #ffd814;
  color: #111;
}

.product-stock {
  margin: 14px 0 0;
  color: #9ce2b0;
  font-size: .9rem;
}

.similar-products {
  margin-top: 86px;
}

.similar-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.similar-product-card {
  min-width: 0;
  padding: 12px;
  border: 1px solid #343434;
  border-radius: 14px;
  background: #151515;
}

.similar-product-card > div {
  aspect-ratio: 1;
  overflow: hidden;
  margin: -12px -12px 12px;
  background: #f4f4f4;
}

.similar-product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.similar-product-card p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: .78rem;
}

.similar-product-card h3 {
  min-height: 42px;
  margin: 0 0 8px;
  color: #fff;
  font-size: .98rem;
}

.similar-product-card strong {
  color: #f4e7a4;
}

@media (max-width: 760px) {
  .product-header {
    min-height: 0;
    padding: 14px 16px;
  }

  .product-nav {
    gap: 12px;
    font-size: .78rem;
  }

  .product-detail-page {
    width: calc(100% - 28px);
    padding: 28px 0 70px;
  }

  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product-detail-copy h1 {
    font-size: 2.25rem;
  }

  .similar-products {
    margin-top: 56px;
  }

  .similar-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.products-grid .product-price { color: #f4d86c !important; }
.products-grid .product-market { color: #a9a297 !important; }

/* Storefront header: final mobile cascade to keep the menu compact and tappable. */
@media (max-width: 760px) {
  .site-header {
    width: 100%;
    padding: 10px 14px;
  }

  .site-header-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  .site-header-top .brand {
    width: auto;
    flex: initial;
  }

  .site-header-top .search-bar {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    flex: initial;
  }

  .site-header-top .header-actions {
    width: auto;
    flex: initial;
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .site-header-top .header-link {
    width: auto;
    min-width: 0;
    flex: initial;
  }

  .site-header-top .header-cart {
    display: inline-flex;
    align-items: center;
    color: #fff;
  }

  .primary-nav {
    display: none;
    overflow: visible;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    padding: 8px 0 0;
    white-space: normal;
  }

  .primary-nav.is-open { display: flex; }

  .primary-nav > .nav-link,
  .primary-nav > .nav-item-with-menu,
  .primary-nav a,
  .primary-nav .nav-dropdown { width: 100%; flex: initial; text-align: left; }

  .primary-nav > .nav-link,
  .primary-nav .dropdown-toggle { display: flex; justify-content: space-between; padding: 11px 12px; }

  .primary-nav .dropdown-menu {
    position: static;
    width: 100%;
    max-width: 100%;
    margin-top: 4px;
    transform: none;
    display: none !important;
    grid-template-columns: 1fr;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .primary-nav .nav-item-with-menu.is-open > .dropdown-menu,
  .primary-nav .nav-dropdown.is-open > .dropdown-menu { display: grid !important; }
}

/* Keep the deal controls in the heading on phones (later legacy rules use absolute positioning). */
@media (max-width: 760px) {
  .deal-of-day .deal-controls { position: static; left: auto; right: auto; top: auto; }
  .deal-of-day .deal-controls button { width: 38px; height: 38px; padding: 0; border: 1px solid rgba(212,175,55,.42); border-radius: 50%; background: var(--surface); color: var(--text); font-size: 1.15rem; }
}

/* Compact deal banner: keep the offer visible above the fold on every screen. */
.deal-of-day .deal-controls {
  position: static;
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
  pointer-events: auto;
}

.deal-of-day .deal-controls button {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0 0 3px;
  place-items: center;
  border: 1px solid rgba(244,216,108,.45);
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  color: #f4d86c;
  box-shadow: none;
  font-family: Arial, sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.deal-of-day .deal-controls button:hover,
.deal-of-day .deal-controls button:focus-visible {
  background: #f4d86c;
  color: #1b1405;
  transform: translateY(-1px);
  outline: none;
}

.deal-of-day .deal-slide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 28px;
  align-items: center;
  min-height: 230px;
  padding: 28px 44px 34px;
}

.deal-of-day .deal-slide h2 {
  font-size: clamp(1.8rem, 3.1vw, 2.7rem);
}

.deal-of-day .deal-slide > .deal-slide-copy > span {
  margin: 7px 0 10px;
  line-height: 1.45;
}

.deal-of-day .deal-price { margin-bottom: 6px; }
.deal-of-day .deal-price strong { font-size: 1.65rem; }
.deal-of-day .deal-slide .deal-stock { margin-bottom: 13px; font-size: .82rem; }
.deal-of-day .deal-slide a { padding: 10px 15px; }
.deal-of-day .deal-product-image { width: 170px; border-radius: 18px; transform: rotate(2deg); }
.deal-of-day .deal-indicators { bottom: 11px; }

@media (max-width: 760px) {
  .deal-of-day .deal-slide {
    grid-template-columns: minmax(0, 1fr) 112px;
    gap: 16px;
    min-height: 190px;
    padding: 22px 24px 31px;
  }

  .deal-of-day .deal-product-image {
    order: initial;
    justify-self: end;
    width: 108px;
    border-radius: 14px;
  }

  .deal-of-day .deal-kicker { margin-bottom: 6px; font-size: .65rem; }
  .deal-of-day .deal-slide h2 { font-size: clamp(1.45rem, 6.5vw, 2rem); }
  .deal-of-day .deal-slide > .deal-slide-copy > span { font-size: .83rem; }
  .deal-of-day .deal-price { gap: 5px; }
  .deal-of-day .deal-price strong { font-size: 1.35rem; }
  .deal-of-day .deal-price s, .deal-of-day .deal-price b { font-size: .67rem; }
  .deal-of-day .deal-slide .deal-stock { display: none; }
  .deal-of-day .deal-slide a { padding: 9px 12px; font-size: .84rem; }
  .deal-of-day .deal-controls button { width: 34px; height: 34px; font-size: 1.75rem; }
}

/* Product cards: scan-friendly shopping layout. */

.products-grid .product-card {
  overflow: hidden;
  border-radius: 18px;
  background: #151515 !important;
  border-color: #343434 !important;
  box-shadow: 0 10px 26px rgba(0,0,0,.16);
}

.products-grid .product-card:hover { transform: translateY(-4px); box-shadow: 0 18px 32px rgba(0,0,0,.26); }
.products-grid .product-image-wrap { position: relative; aspect-ratio: 1; padding: 12px; background: #f5f5f4; }
.products-grid .product-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.product-badge { position: absolute; z-index: 1; padding: 6px 9px; border-radius: 999px; font-size: .72rem; font-weight: 800; line-height: 1; }
.product-badge-sale { top: 11px; left: 11px; background: #1c1710; color: #f6d768; }
.product-badge-stock { right: 11px; bottom: 11px; background: rgba(255,255,255,.94); color: #a43b12; }
.products-grid .product-info { min-height: 0; padding: 15px; gap: 13px; background: #151515 !important; }
.products-grid .product-copy { gap: 5px; }
.products-grid .product-brand { font-size: .73rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #cfc4a4 !important; }
.products-grid .product-info h3 { min-height: 44px; font-size: 1.02rem; line-height: 1.32; }
.products-grid .product-rating { font-size: .8rem; }
.products-grid .product-rating a { color: #d2c8b8; }
.products-grid .product-pricing { margin: 0; gap: 7px; }
.products-grid .product-price { font-size: 1.45rem; font-weight: 800; color: #f7e6a5 !important; }
.products-grid .product-market { font-size: .78rem; }
.products-grid .product-discount { font-size: .74rem; color: #f4d86c !important; }
.products-grid .product-delivery { margin: 0; color: #c7bda9 !important; font-size: .78rem; }
.products-grid .product-actions { margin-top: 2px; }
.products-grid .product-actions button { width: 100%; min-height: 42px; border-radius: 11px; font-size: .9rem; }
.products-grid .product-actions button:disabled { cursor: not-allowed; opacity: .55; filter: grayscale(1); }

.products-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

@media (max-width: 760px) {
  .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .products-grid .product-card { border-radius: 14px; }
  .products-grid .product-image-wrap { padding: 7px; }
  .product-badge { padding: 5px 6px; font-size: .6rem; }
  .product-badge-sale { top: 7px; left: 7px; }
  .product-badge-stock { display: none; }
  .products-grid .product-info { padding: 11px; gap: 10px; }
  .products-grid .product-brand { font-size: .62rem; }
  .products-grid .product-info h3 { min-height: 36px; font-size: .85rem; }
  .products-grid .product-rating { font-size: .68rem; }
  .products-grid .product-price { font-size: 1.08rem; }
  .products-grid .product-market, .products-grid .product-discount { font-size: .62rem; }
  .products-grid .product-delivery { font-size: .65rem; }
  .products-grid .product-actions button { min-height: 36px; padding: 8px; font-size: .75rem; }
}

@media (max-width: 560px) {
  .products-grid {
    width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 14px;
  }

  .products-grid .product-card {
    width: 100%;
    min-width: 0;
  }
}

/* Footer: keep support easy to find without changing the existing policy copy. */
.site-footer {
  margin-bottom: 0;
  padding: 46px clamp(20px, 4vw, 56px) 24px;
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  gap: 30px;
}

.footer-card { gap: 5px; }
.footer-card h3, .footer-card h4 { margin-bottom: 8px; }
.footer-card p { max-width: 290px; margin: 0; line-height: 1.65; }
.footer-link { width: fit-content; margin-top: 5px; padding: 3px 0; }
.footer-link:hover { color: #f4d86c; }
.footer-support-card {
  padding: 16px;
  border: 1px solid rgba(244,216,108,.2);
  border-radius: 16px;
  background: rgba(244,216,108,.05);
}
.footer-note-row { max-width: 1180px; margin: 30px auto 0; }
.footer-disclaimer { max-width: 1180px; padding: 18px 0 0; font-size: .76rem; text-align: left; opacity: .82; }

@media (max-width: 960px) {
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .site-footer { padding: 34px 18px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
  .footer-card:first-child, .footer-support-card { grid-column: 1 / -1; }
  .footer-card h3, .footer-card h4 { font-size: .95rem; }
  .footer-card p, .footer-link { font-size: .82rem; }
  .footer-note-row { display: grid; gap: 8px; margin-top: 24px; padding-top: 16px; }
  .footer-note { font-size: .76rem; }
  .footer-disclaimer { padding-top: 16px; font-size: .68rem; line-height: 1.55; }
}

/* Support: clear contact paths with WhatsApp as the primary action. */
.support-panel {
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  gap: 20px;
  align-items: stretch;
}

.support-intro,
.support-whatsapp-card {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
}

.support-intro { background: rgba(255,255,255,.035); }
.support-intro h3, .support-whatsapp-card h3 { margin: 0 0 9px; font-size: 1.35rem; }
.support-intro > p, .support-whatsapp-card > p { margin: 0; color: var(--muted); line-height: 1.6; }
.support-contact-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 22px; }
.support-contact-card {
  min-width: 0;
  display: grid;
  gap: 6px;
  padding: 13px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px;
  background: rgba(255,255,255,.035);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.support-contact-card span { color: #cfc4a4; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.support-contact-card strong { overflow-wrap: anywhere; color: var(--text); font-size: .82rem; line-height: 1.35; }
.support-contact-card:hover { transform: translateY(-2px); border-color: rgba(244,216,108,.52); background: rgba(244,216,108,.08); }
.support-whatsapp-card { display: flex; flex-direction: column; align-items: flex-start; background: radial-gradient(circle at top right, rgba(244,216,108,.22), transparent 52%), linear-gradient(145deg, #262010, #17140b); border-color: rgba(244,216,108,.26); }
.support-whatsapp-card .eyebrow { margin-bottom: 9px; color: #f4d86c; }
.support-whatsapp-card > p { margin-bottom: 22px; }
.support-whatsapp-card .button { margin-top: auto; gap: 10px; }

@media (max-width: 760px) {
  .support-panel { grid-template-columns: 1fr; }
  .support-contact-grid { grid-template-columns: 1fr; }
  .support-contact-card { padding: 12px 14px; }
  .support-whatsapp-card .button { width: 100%; justify-content: center; }
}

/* Product discovery: show the active search/filter state clearly. */
.catalogue-tools { align-items: center; }
.active-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: -6px 0 18px;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(244,216,108,.26);
  border-radius: 14px;
  background: rgba(244,216,108,.07);
  color: #dfd4bc;
  font-size: .84rem;
}
.active-filter-bar span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.active-filter-bar button { flex: 0 0 auto; border: 0; border-radius: 9px; padding: 7px 10px; background: rgba(255,255,255,.09); color: #fff; font-weight: 700; font-size: .75rem; cursor: pointer; }
.active-filter-bar button:hover { background: #f4d86c; color: #1b1405; }

@media (max-width: 760px) {
  .active-filter-bar { align-items: flex-start; margin-top: -2px; font-size: .74rem; }
  .active-filter-bar span { white-space: normal; line-height: 1.45; }
}

/* Cart and checkout: a focused, readable purchase flow. */
.cart-layout, .checkout-layout { gap: 22px; }
.cart-items, .checkout-form, .order-summary { border-color: rgba(255,255,255,.11); background: rgba(255,255,255,.035); }
.cart-item { padding: 18px; transition: background .2s ease; }
.cart-item:hover { background: rgba(255,255,255,.025); }
.cart-item img { border: 1px solid rgba(255,255,255,.08); background: #f5f5f4; }
.cart-item-info h2 { color: var(--text); }
.cart-item-info strong { color: #f4d86c; font-size: 1.1rem; }
.quantity-control { gap: 7px; padding: 4px; background: rgba(255,255,255,.035); }
.quantity-control button { width: 30px; height: 30px; }
.quantity-control span { min-width: 18px; text-align: center; font-weight: 800; }
.remove-item { padding: 8px; border-radius: 8px !important; font-size: .8rem; }
.remove-item:hover { background: rgba(240,170,170,.1); }
.order-summary { border-radius: 18px; box-shadow: 0 16px 36px rgba(0,0,0,.14); }
.order-summary h2 { color: var(--text); }
.summary-line { font-size: .9rem; }
.summary-total { padding-top: 18px; font-size: 1.2rem; }
.summary-total strong { color: #f4d86c; }
.checkout-form { padding: clamp(20px, 3vw, 30px); }
.checkout-form h2:not(:first-child) { margin-top: 30px; }
.checkout-form input { min-height: 46px; background: rgba(255,255,255,.055); }
.checkout-form input:focus { box-shadow: 0 0 0 3px rgba(244,216,108,.12); }
.payment-option { cursor: pointer; transition: border-color .2s ease, background .2s ease; }
.payment-option:hover { border-color: rgba(244,216,108,.5); background: rgba(244,216,108,.06); }
.payment-option:has(input:checked) { border-color: rgba(244,216,108,.7); background: rgba(244,216,108,.1); color: #fff; }
.payment-option input { accent-color: #d9b14a; }
.checkout-items { max-height: 280px; overflow: auto; }
.checkout-item { font-size: .88rem; }
.empty-state { border: 1px dashed rgba(244,216,108,.28); border-radius: 18px; background: rgba(244,216,108,.04); }

@media (max-width: 760px) {
  .shop-page { width: min(100% - 28px, 1180px); padding: 38px 0 64px; }
  .page-heading { margin-bottom: 26px; }
  .cart-item { grid-template-columns: 76px 1fr auto; padding: 14px; }
  .cart-item img { width: 76px; height: 76px; }
  .cart-item h2 { font-size: .95rem; }
  .remove-item { grid-column: 2 / 4; justify-self: start; }
  .order-summary { padding: 20px; }
  .checkout-form { padding: 20px; }
  .payment-option { min-height: 54px; }
}

/* Product page: make the decision points easier to scan. */
.product-detail-layout { align-items: start; gap: clamp(28px, 5vw, 68px); }
.product-gallery { position: sticky; top: 22px; }
.product-main-image { position: relative; border-radius: 22px; box-shadow: 0 20px 44px rgba(0,0,0,.24); }
.product-main-image img { object-fit: cover; }
.product-detail-badge { position: absolute; z-index: 1; top: 14px; left: 14px; padding: 7px 10px; border-radius: 999px; background: #1c1710; color: #f6d768; font-size: .76rem; font-weight: 800; }
.product-thumbnails { gap: 9px; }
.product-thumbnail { border-radius: 11px; overflow: hidden; }
.product-detail-copy { padding-top: 8px; }
.product-detail-copy .eyebrow { margin-bottom: 8px; }
.product-detail-rating { margin-bottom: 18px; }
.product-detail-description { margin-bottom: 20px; }
.product-detail-price { padding: 16px 0; border-top: 1px solid #343434; border-bottom: 1px solid #343434; }
.product-detail-price strong { font-size: clamp(1.9rem, 3vw, 2.35rem); }
.product-detail-delivery { margin: 16px 0 8px; }
.product-detail-urgency { margin: 0 0 22px; color: #a8e5b8 !important; }
.product-detail-urgency.is-out-of-stock { color: #ff9e9e !important; }
.product-specs { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 22px; border-top: 0; }
.product-specs div { grid-template-columns: 1fr; gap: 4px; border-top: 1px solid #343434; padding: 12px 0; }
.product-specs dt { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; }
.product-detail-actions { gap: 10px; }
.product-detail-actions .button { min-height: 48px; }
.product-detail-actions .button:disabled { cursor: not-allowed; opacity: .5; filter: grayscale(1); }
.similar-product-card { transition: transform .2s ease, border-color .2s ease; }
.similar-product-card:hover { transform: translateY(-3px); border-color: rgba(244,216,108,.45); }

@media (max-width: 760px) {
  .product-gallery { position: static; }
  .product-main-image { border-radius: 16px; }
  .product-detail-badge { top: 10px; left: 10px; padding: 6px 8px; font-size: .68rem; }
  .product-thumbnails { overflow-x: auto; padding-bottom: 4px; }
  .product-thumbnail { flex: 0 0 56px; }
  .product-specs { grid-template-columns: 1fr 1fr; gap: 0 14px; margin-bottom: 22px; }
  .product-detail-actions { position: sticky; bottom: 10px; z-index: 10; padding: 10px; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; background: rgba(15,15,15,.94); box-shadow: 0 10px 28px rgba(0,0,0,.3); }
}

/* Account access: reduce friction before checkout. */
.auth-layout { width: min(1080px, calc(100% - 40px)); gap: clamp(36px, 7vw, 96px); }
.auth-intro { max-width: 460px; }
.auth-intro .eyebrow { color: #f4d86c; }
.auth-intro h1 { max-width: 430px; }
.auth-card {
  padding: clamp(24px, 4vw, 38px);
  border-color: rgba(244,216,108,.18);
  background: radial-gradient(circle at top right, rgba(244,216,108,.1), transparent 45%), rgba(255,255,255,.04);
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
}
.login-toggle { gap: 0; padding: 4px; border-radius: 14px; background: rgba(255,255,255,.055); }
.tab-button { min-width: 0; border: 0; border-radius: 10px; padding: 11px 12px; font-size: .9rem; }
.tab-button:not(.active):hover { background: rgba(255,255,255,.07); }
.tab-button.active { background: #f4d86c; color: #1c1709; box-shadow: 0 4px 14px rgba(0,0,0,.15); }
.auth-card form { gap: 18px; }
.auth-card label { color: #ded4c5; }
.auth-card input { min-height: 48px; background: rgba(0,0,0,.16); }
.auth-card input:focus { box-shadow: 0 0 0 3px rgba(244,216,108,.12); }
.auth-card .wide-button { min-height: 48px; }
.auth-card #googleAuth { min-height: 46px; border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.07); }
.auth-card #googleAuth:hover { background: rgba(255,255,255,.12); }
#signedInView { text-align: center; padding: 14px 4px; }
#signedInView h2 { margin: 8px 0; font-family: 'Playfair Display', serif; font-size: 2rem; }
#signedInView .stack-actions { max-width: 300px; margin: 24px auto 0; }

@media (max-width: 760px) {
  .auth-layout { width: min(100% - 28px, 560px); min-height: 0; padding: 38px 0 60px; gap: 30px; }
  .auth-intro h1 { font-size: clamp(2rem, 9vw, 3rem); }
  .auth-intro > p:not(.eyebrow) { font-size: .94rem; }
  .auth-card { padding: 22px 18px; border-radius: 20px; }
}

/* Floating social dock: keep both quick actions, but make them feel intentional. */
.floating-actions { right: 20px; bottom: 22px; gap: 10px; justify-items: end; }
.floating-button {
  width: 52px;
  min-width: 52px;
  height: 52px;
  padding: 8px;
  border-color: rgba(244,216,108,.35);
  background: rgba(13,16,22,.94);
  box-shadow: 0 12px 30px rgba(0,0,0,.28);
}
.floating-button .icon { width: 28px; height: 28px; background: transparent; box-shadow: none; }
.button-instagram .icon { color: #e4405f; }
.button-whatsapp .icon { color: #6de197; }
.floating-button:hover, .floating-button:focus-visible {
  width: 154px;
  border-color: rgba(244,216,108,.7);
  background: rgba(20,24,30,.98);
  outline: none;
}
.floating-button:focus-visible { box-shadow: 0 0 0 3px rgba(244,216,108,.2), 0 12px 30px rgba(0,0,0,.28); }
.floating-button:hover .floating-label, .floating-button:focus-visible .floating-label { width: auto; opacity: 1; }

@media (max-width: 760px) {
  .floating-actions { right: 12px; bottom: 14px; gap: 8px; }
  .floating-button { width: 46px; min-width: 46px; height: 46px; }
  .floating-button .icon { width: 25px; height: 25px; }
  .floating-button:hover, .floating-button:focus-visible { width: 46px; }
  .floating-button:hover .floating-label, .floating-button:focus-visible .floating-label { width: 0; opacity: 0; }
}

/* Secondary pages: match the storefront's card and navigation system. */
.legal-nav { gap: 8px; }
.legal-nav a { padding: 8px 11px; border-radius: 999px; transition: background .2s ease, color .2s ease; }
.legal-nav a:hover { background: rgba(244,216,108,.12); color: #f4d86c; }
.legal-page { max-width: 1040px; }
.legal-page .page-heading { max-width: 720px; }
.policy-nav { position: sticky; top: 10px; z-index: 10; padding: 8px; border: 1px solid rgba(255,255,255,.08); border-radius: 16px; background: rgba(12,14,18,.9); backdrop-filter: blur(12px); }
.policy-nav a { border-color: rgba(255,255,255,.1); transition: background .2s ease, color .2s ease, border-color .2s ease; }
.policy-nav a:hover { background: rgba(244,216,108,.12); border-color: rgba(244,216,108,.4); color: #f4d86c; }
.policy-card { border-color: rgba(255,255,255,.09); box-shadow: 0 12px 28px rgba(0,0,0,.1); }
.policy-card h2 { color: #fff; }
.policy-card p { max-width: 860px; }
.compliance-note { border-radius: 12px; }
.team-grid { gap: 16px; }
.team-card { min-height: 190px; padding: 24px; border-color: rgba(255,255,255,.1); transition: transform .2s ease, border-color .2s ease; }
.team-card:hover { transform: translateY(-3px); border-color: rgba(244,216,108,.42); }

.seller-hero { padding: clamp(26px, 5vw, 52px); border: 1px solid rgba(244,216,108,.18); border-radius: 24px; background: radial-gradient(circle at top right, rgba(244,216,108,.18), transparent 45%), rgba(255,255,255,.035); }
.seller-hero > p:not(.eyebrow) { max-width: 640px; }
.seller-grid { gap: 16px; }
.seller-card, .step-card, .seller-highlight, .seller-contact-box { border-color: rgba(255,255,255,.1); box-shadow: 0 12px 26px rgba(0,0,0,.1); }
.seller-card, .step-card { transition: transform .2s ease, border-color .2s ease; }
.seller-card:hover, .step-card:hover { transform: translateY(-3px); border-color: rgba(244,216,108,.4); }
.step-card span { color: #f4d86c; font-weight: 800; letter-spacing: .1em; }
.seller-contact-box { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.seller-contact-box > div { padding: 12px; border-radius: 12px; background: rgba(255,255,255,.025); }
.seller-contact-box h3 { margin: 0 0 7px; color: #fff; font-size: .92rem; }

@media (max-width: 760px) {
  .legal-nav { gap: 2px; font-size: .75rem; }
  .legal-nav a { padding: 7px 8px; }
  .legal-page, .seller-page { width: min(100% - 28px, 1040px); }
  .policy-nav { position: static; display: flex; flex-wrap: wrap; overflow: visible; border-radius: 12px; gap: 7px; }
  .policy-nav a { flex: 1 1 auto; font-size: .75rem; text-align: center; }
  .policy-card { padding: 22px 18px; border-radius: 16px; }
  .policy-card p { font-size: .9rem; line-height: 1.7; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { min-height: 0; }
  .seller-hero { padding: 26px 20px; border-radius: 18px; }
  .seller-grid, .seller-steps, .seller-split, .seller-contact-box { grid-template-columns: 1fr; }
  .seller-contact-box { padding: 16px; }
}

@media (max-width: 680px) {
  .admin-main { width: 100%; padding: 0 12px 40px; }
  .admin-section { padding: 18px; border-radius: 18px; }
}

.admin-header-actions,
.orders-nav { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.orders-body { background: radial-gradient(circle at top right, rgba(212,175,55,.1), transparent 30%), var(--bg); }
.orders-main { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 34px 0 80px; }
.orders-hero { display: flex; align-items: end; justify-content: space-between; gap: 24px; padding: 30px; border: 1px solid rgba(244,216,108,.18); border-radius: 24px; background: rgba(255,255,255,.035); }
.orders-hero h2 { margin: 7px 0 10px; font-size: clamp(2rem, 4vw, 3.4rem); }
.orders-hero p:not(.eyebrow) { max-width: 620px; margin: 0; color: var(--muted); line-height: 1.7; }
.order-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 20px 0; }
.order-stats article { display: grid; gap: 8px; padding: 20px; border: 1px solid var(--border); border-radius: 16px; background: rgba(255,255,255,.035); }
.order-stats span, .order-card-grid span { color: var(--muted); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.order-stats strong { color: #f4d86c; font-size: 1.45rem; }
.orders-toolbar { display: grid; grid-template-columns: minmax(0, 1fr) 220px; gap: 14px; margin: 20px 0; }
.orders-toolbar label, .order-card-actions label { display: grid; gap: 7px; color: var(--muted); font-size: .82rem; font-weight: 700; }
.orders-toolbar input, .orders-toolbar select, .order-card-actions select { min-height: 44px; width: 100%; border: 1px solid var(--border); border-radius: 12px; padding: 10px 12px; background: rgba(255,255,255,.06); color: var(--text); }
.orders-message { min-height: 22px; color: var(--muted); }
.orders-list { display: grid; gap: 16px; }
.order-card { padding: 22px; border: 1px solid var(--border); border-radius: 20px; background: rgba(255,255,255,.04); }
.order-card-top { display: flex; align-items: start; justify-content: space-between; gap: 16px; }
.order-card h3 { margin: 5px 0; font-size: 1.2rem; }
.order-card-top span:not(.order-status) { color: var(--muted); font-size: .82rem; }
.order-status { display: inline-flex; padding: 7px 10px; border-radius: 999px; background: rgba(244,216,108,.14); color: #f4d86c; font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.status-cancelled { background: rgba(255,120,120,.13); color: #ffadad; }
.status-delivered { background: rgba(110,220,150,.13); color: #9ceab5; }
.order-card-grid { display: grid; grid-template-columns: 2fr 1.2fr 1fr .8fr; gap: 14px; margin: 20px 0; }
.order-card-grid div { display: grid; gap: 6px; min-width: 0; }
.order-card-grid strong { overflow-wrap: anywhere; line-height: 1.45; }
.order-card details { border-top: 1px solid var(--border); padding-top: 14px; color: var(--muted); }
.order-card summary { cursor: pointer; color: var(--text); font-weight: 700; }
.order-card-actions { display: flex; align-items: end; justify-content: space-between; gap: 14px; margin-top: 18px; }
.order-card-actions label { width: 220px; }
.orders-empty { padding: 48px 24px; border: 1px dashed var(--border); border-radius: 18px; text-align: center; }
.orders-empty p { color: var(--muted); }
.compliance-note { display: none !important; }
.admin-login-page { min-height: 100vh; display: grid; place-items: center; padding: 24px; }
.admin-login-card { width: min(440px, 100%); padding: 32px; border: 1px solid var(--border); border-radius: 24px; background: rgba(255,255,255,.04); box-shadow: 0 24px 70px rgba(0,0,0,.25); }
.admin-login-card h1 { margin: 8px 0; font-size: clamp(2rem, 8vw, 3rem); }
.admin-login-card .text-link { margin-top: 18px; }
.customer-orders-list { display: grid; gap: 16px; }
.customer-order-card { padding: 22px; border: 1px solid var(--border); border-radius: 20px; background: rgba(255,255,255,.04); }
.customer-order-top, .customer-order-bottom, .customer-order-items div { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.customer-order-top h2 { margin: 5px 0 0; font-size: 1rem; }
.customer-order-items { display: grid; gap: 10px; margin: 20px 0; padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.customer-order-items span, .customer-order-bottom span { color: var(--muted); }
@media (max-width: 560px) { .customer-order-card { padding: 18px; } .customer-order-top { align-items: start; } }
@media (max-width: 700px) {
  .orders-main { width: min(100% - 24px, 1180px); padding-top: 18px; }
  .orders-hero { align-items: stretch; flex-direction: column; padding: 22px 18px; }
  .orders-hero .button { width: 100%; justify-content: center; }
  .order-stats { grid-template-columns: repeat(2, 1fr); }
  .orders-toolbar { grid-template-columns: 1fr; }
  .order-card { padding: 18px; }
  .order-card-grid { grid-template-columns: 1fr 1fr; }
  .order-card-actions { align-items: stretch; flex-direction: column; }
  .order-card-actions label { width: 100%; }
  .order-card-actions .button { width: 100%; justify-content: center; }
  .admin-header-actions, .orders-nav { width: 100%; }
  .admin-header-actions .button, .orders-nav .button { flex: 1; justify-content: center; }
}

@media (max-width: 560px) {
  .products-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px;
    width: 100%;
  }

  .products-grid .product-card {
    width: 100%;
    min-width: 0;
  }

  .home-product-grid {
    display: flex !important;
    flex-direction: row;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 8px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }

  .home-product-grid::-webkit-scrollbar {
    display: none;
  }

  .home-product-grid .rail-product-card {
    flex: 0 0 82%;
    width: 82%;
    min-width: 0;
    scroll-snap-align: start;
  }

    .rail-product-link {
      display: block;
      color: inherit;
    }

    .rail-product-link:hover {
      color: inherit;
    }
}

  /* Final storefront grid correction: prevent legacy carousel rules from taking over. */
  @media (max-width: 760px) {
    .products-grid {
      display: grid !important;
      grid-auto-flow: row;
      grid-auto-columns: auto;
      overflow: visible;
      scroll-snap-type: none;
    }
  }
