:root {
  --bg: #f6ebc8;
  --surface: #fff6df;
  --surface-strong: #fff;
  --ink: #171312;
  --muted: #6d6460;
  --line: rgba(23, 19, 18, 0.12);
  --brand: rgb(239, 191, 4);
  --brand-dark: #c79d03;
  --accent: #f0d2a8;
  --radius: 28px;
  --shadow: 0 24px 60px rgba(26, 17, 17, 0.08);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background: #f6ebc8;
  width: 100%;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 72px 0; }
.section--tight { padding: 18px 0; }
.section--contrast { background: rgba(246, 235, 200, 0.92); }
.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brand);
}
h1, h2, h3 {
  margin: 0 0 14px;
  font-family: 'Syne', sans-serif;
  line-height: 0.96;
}
h1 { font-size: clamp(2.8rem, 7vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { margin: 0 0 12px; color: var(--muted); line-height: 1.72; }

.btn, .text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}
.btn {
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn:hover, .text-link:hover { transform: translateY(-2px); }
.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-dark); }
.btn--secondary { border-color: rgba(143, 106, 42, 0.35); background: rgba(143, 106, 42, 0.14); color: #2b1f0c; }
.btn--small { min-height: 42px; padding: 0 18px; }
.btn--full { width: 100%; }

.site-loader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(255, 248, 244, 0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 100;
}
.site-loader.is-visible { opacity: 1; pointer-events: auto; }
.loader-ring {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 4px solid rgba(135, 31, 31, 0.15);
  border-top-color: var(--brand);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.toast-stack {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 1200;
  display: grid;
  gap: 10px;
  width: min(92vw, 380px);
}
.toast {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  align-items: start;
  gap: 10px;
  padding: 12px 12px 12px 10px;
  border-radius: 14px;
  border: 1px solid rgba(23, 19, 18, 0.12);
  background: #fff;
  color: #1f1616;
  box-shadow: 0 14px 34px rgba(18, 13, 13, 0.18);
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.toast.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.toast__icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-block;
  margin-top: 1px;
}
.toast--success .toast__icon {
  background: #12944f;
  box-shadow: 0 0 0 4px rgba(18, 148, 79, 0.18);
}
.toast--error .toast__icon {
  background: #c32727;
  box-shadow: 0 0 0 4px rgba(195, 39, 39, 0.18);
}
.toast__message {
  font-size: 0.9rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.toast__close {
  border: 0;
  background: transparent;
  color: #6c5f5f;
  cursor: pointer;
  font-size: 1.15rem;
  line-height: 1;
  padding: 0 2px;
}

.topbar {
  max-height: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, #5c1111 0%, var(--brand) 48%, #a12a2a 100%);
  color: #fff8f4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}
.topbar.is-visible {
  max-height: 62px;
  opacity: 1;
  transform: translateY(0);
}
.topbar__viewport {
  overflow: hidden;
  width: 100%;
}
.topbar__track {
  display: flex;
  width: max-content;
  animation: topbar-slide 26s linear infinite;
}
.topbar__group {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 14px;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 16px 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  white-space: nowrap;
}
.topbar__item strong {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.topbar__icon {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(143, 106, 42, 0.22);
  flex: 0 0 18px;
}
.topbar__icon::before,
.topbar__icon::after {
  content: '';
  position: absolute;
}
.topbar__icon--spark::before {
  inset: 4px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 12px rgba(143, 106, 42, 0.65);
}
.topbar__icon--spark::after {
  top: -2px;
  left: 8px;
  width: 2px;
  height: 22px;
  background: linear-gradient(180deg, transparent, var(--brand), transparent);
}
.topbar__icon--gift::before {
  left: 3px;
  right: 3px;
  bottom: 3px;
  top: 7px;
  border: 2px solid var(--brand);
  border-radius: 3px;
}
.topbar__icon--gift::after {
  top: 2px;
  left: 8px;
  width: 2px;
  height: 13px;
  background: var(--brand);
  box-shadow: -4px 3px 0 0 rgba(143, 106, 42, 0.95), 4px 3px 0 0 rgba(143, 106, 42, 0.95);
}
.topbar__icon--ship::before {
  left: 2px;
  top: 8px;
  width: 9px;
  height: 6px;
  border: 2px solid var(--brand);
  border-right: 0;
  border-radius: 2px 0 0 2px;
}
.topbar__icon--ship::after {
  right: 2px;
  top: 9px;
  width: 7px;
  height: 5px;
  border: 2px solid var(--brand);
  border-radius: 0 2px 2px 0;
}
.topbar__icon--drop::before {
  left: 5px;
  top: 1px;
  width: 8px;
  height: 12px;
  background: var(--brand);
  border-radius: 50% 50% 60% 60%;
  transform: rotate(45deg);
}
.topbar__icon--drop::after {
  left: 6px;
  bottom: 3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(143, 106, 42, 0.3);
}
@keyframes topbar-slide {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #070707;
  color: var(--brand);
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 40px rgba(33, 20, 20, 0.08);
}
.header-main {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 86px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #b84242);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
}
.brand__text { font-family: 'Syne', sans-serif; font-size: 1.35rem; font-weight: 700; }
.main-nav { display: flex; gap: 22px; }
.main-nav a, .header-cart, .mobile-menu__nav a { position: relative; font-weight: 600; }
.site-header .brand__text,
.site-header .main-nav a {
  color: #fff;
}
.main-nav a.is-active::after, .main-nav a:hover::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--brand);
}
.header-search {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px;
}
.header-search input {
  flex: 1;
  min-width: 240px;
  border: 0;
  background: transparent;
  color: #171312;
  padding: 8px 12px;
  outline: none;
}
.header-search input::placeholder { color: rgba(23, 19, 18, 0.55); }
.header-search button {
  border: 0;
  background: var(--brand);
  color: #1a1207;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
}
.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}
.header-icon,
.header-user,
.header-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 999px;
}
.header-icon,
.header-user {
  border: 1px solid rgba(239, 191, 4, 0.45);
  background: rgba(7, 7, 7, 0.92);
}
.header-icon__glyph {
  font-size: 1.1rem;
  line-height: 1;
}
.header-user {
  padding: 0 14px;
  color: rgb(239, 191, 4);
}
.header-user__icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}
.header-user__head,
.header-user__body {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 1.7px solid var(--brand);
  background: rgba(7, 7, 7, 0.96);
}
.header-user__head {
  top: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.header-user__body {
  bottom: 0;
  width: 16px;
  height: 9px;
  border-radius: 10px 10px 6px 6px;
  border-top-width: 1.9px;
}
.header-user__label {
  font-size: 0.95rem;
}
.header-cart {
  padding: 0 6px 0 16px;
  border: 1px solid rgba(239, 191, 4, 0.45);
  background: rgba(7, 7, 7, 0.92);
  color: rgb(239, 191, 4);
}
.header-cart__bottle {
  position: relative;
  width: 20px;
  height: 24px;
  flex: 0 0 20px;
}
.header-cart__bottle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 6px;
  width: 8px;
  height: 6px;
  border: 1.8px solid var(--brand);
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
  background: rgba(7, 7, 7, 0.96);
}
.header-cart__bottle span {
  position: absolute;
  left: 1px;
  right: 1px;
  bottom: 1px;
  top: 5px;
  border: 1.8px solid var(--brand);
  border-radius: 4px 4px 6px 6px;
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.96) 0 36%, rgba(239, 191, 4, 0.2) 36% 100%);
}
.header-cart__bottle span::before {
  content: '';
  position: absolute;
  left: 3px;
  right: 3px;
  bottom: 3px;
  height: 8px;
  border-radius: 2px 2px 4px 4px;
  background: linear-gradient(180deg, rgba(239, 191, 4, 0.5), rgba(239, 191, 4, 0.88));
}
.header-cart__label {
  font-size: 0.95rem;
}
.header-cart strong {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--brand);
  color: #1a1207;
}
.menu-toggle, .mobile-menu, .mobile-search, .mobile-menu-overlay, .cart-drawer, .cart-drawer-overlay { display: none; }
.mobile-search {
  border-top: 1px solid var(--line);
  background: rgba(255, 248, 244, 0.95);
}
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(29, 12, 14, 0.46);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  z-index: 70;
}
.cart-drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 460px);
  max-width: 100%;
  height: 100vh;
  height: 100dvh;
  transform: translateX(100%);
  transition: transform 0.32s ease;
  z-index: 80;
  display: block;
  overflow-x: hidden;
}
.cart-drawer.is-open {
  transform: translateX(0);
}
.cart-drawer__panel {
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(180deg, #f7d978 0%, rgb(239, 191, 4) 100%);
  color: #1a1207;
  border-left: 2px solid rgba(26, 18, 7, 0.22);
  box-shadow: -24px 0 60px rgba(88, 66, 15, 0.28);
}
.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 18px 16px;
  border-bottom: 1px solid rgba(26, 18, 7, 0.2);
}
.cart-drawer__title-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cart-drawer__title-wrap h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 0.95;
  text-transform: uppercase;
}
.cart-drawer__count {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1a1207;
  color: rgb(239, 191, 4);
  font-weight: 700;
}
.cart-drawer__close {
  position: relative;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.cart-drawer__close span {
  position: absolute;
  top: 50%;
  left: 9px;
  right: 9px;
  height: 2px;
  background: var(--brand);
}
.cart-drawer__close span:first-child {
  transform: rotate(45deg);
}
.cart-drawer__close span:last-child {
  transform: rotate(-45deg);
}
.cart-drawer__body {
  overflow-y: auto;
  background: transparent;
}
.cart-drawer__items {
  padding: 0 18px;
}
.cart-drawer__item {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) auto;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(26, 18, 7, 0.2);
}
.cart-drawer__item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(26, 18, 7, 0.16);
}
.cart-drawer__item-content h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  text-transform: uppercase;
}
.cart-drawer__item-content p {
  margin: 0 0 10px;
  color: rgba(26, 18, 7, 0.8);
  font-size: 0.88rem;
}
.cart-drawer__item-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  min-width: 90px;
}
.cart-drawer__item-side strong {
  font-size: 1.05rem;
}
.cart-drawer__item-side s {
  color: rgba(26, 18, 7, 0.48);
}
.cart-drawer__remove {
  border: 0;
  background: transparent;
  color: var(--brand);
  font-weight: 700;
  cursor: pointer;
}
.cart-drawer__deal {
  margin-top: 14px;
  padding: 16px 0 20px;
  background: rgba(255, 255, 255, 0.2);
  border-top: 1px solid rgba(26, 18, 7, 0.2);
}
.cart-drawer__deal-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px 14px;
  text-transform: uppercase;
}
.cart-drawer__deal-head h3 {
  margin: 0;
  font-size: 1.25rem;
}
.cart-drawer__deal-head span {
  display: inline-block;
  padding: 4px 8px;
  background: #1a1207;
  color: rgb(239, 191, 4);
  font-size: 0.75rem;
  font-weight: 700;
}
.cart-drawer__recommendations {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(150px, 1fr);
  gap: 12px;
  overflow-x: auto;
  padding: 0 18px 6px;
}
.cart-drawer__recommendation {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(26, 18, 7, 0.16);
}
.cart-drawer__recommendation img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #fff8e3;
}
.cart-drawer__recommendation strong {
  font-size: 0.98rem;
  text-transform: uppercase;
}
.cart-drawer__recommendation-price {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-weight: 700;
}
.cart-drawer__recommendation-price s {
  color: rgba(26, 18, 7, 0.45);
  font-weight: 500;
}
.cart-drawer__footer {
  display: grid;
  gap: 14px;
  padding: 16px 18px 18px;
  border-top: 1px solid rgba(26, 18, 7, 0.2);
  background: rgba(255, 255, 255, 0.22);
}
.cart-drawer__saving {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1a1207;
  font-size: 0.95rem;
}
.cart-drawer__saving-icon {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #1a1207;
  box-shadow: 0 0 0 4px rgba(26, 18, 7, 0.14);
}
.cart-drawer__checkout {
  display: grid;
  gap: 14px;
}
.cart-drawer__total {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.cart-drawer__total span {
  color: rgba(26, 18, 7, 0.82);
}
.cart-drawer__total strong {
  font-size: 2rem;
  line-height: 1;
}
.cart-drawer__actions {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 10px;
}
.cart-drawer__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(26, 18, 7, 0.75);
  font-size: 0.8rem;
  text-align: center;
}
.cart-drawer__meta span {
  flex: 1;
}
.cart-drawer__empty {
  display: grid;
  gap: 10px;
  padding: 24px 18px;
}
.cart-drawer__empty p {
  margin: 0;
  color: rgba(26, 18, 7, 0.8);
}

.cart-drawer__empty .btn--primary,
.cart-drawer__recommendation .btn--primary,
.cart-drawer__actions .btn--secondary {
  background: #1a1207;
  color: rgb(239, 191, 4);
  border: 1px solid #1a1207;
}

.cart-drawer__empty .btn--primary:hover,
.cart-drawer__recommendation .btn--primary:hover,
.cart-drawer__actions .btn--secondary:hover {
  background: #000;
  color: rgb(239, 191, 4);
}

.cart-drawer__actions .btn--primary {
  background: rgb(239, 191, 4);
  color: #1a1207;
  border: 1px solid rgba(26, 18, 7, 0.35);
}

.cart-drawer__actions .btn--primary:hover {
  background: #e2b702;
  color: #1a1207;
}
.mobile-search.is-open {
  display: block;
}
.mobile-search form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 14px 0;
}
.mobile-search input {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
}
.mobile-search button {
  min-width: 96px;
  border: 0;
  border-radius: 16px;
  background: var(--brand);
  color: #fff;
}

.hero { padding: 60px 0 40px; }
.hero__grid, .story-grid, .promo-grid, .checkout-layout, .cart-layout, .shop-layout, .product-layout {
  display: grid;
  gap: 28px;
}
.hero__grid { grid-template-columns: 1.15fr 0.85fr; align-items: center; }
.hero__actions, .product-card__actions, .checkout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}
.hero__stats li, .hero-card, .product-card, .promo-card, .filter-card, .summary-card, .success-card,
.review-card, .cart-item, .tab-panel, .category-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero__stats li { min-width: 140px; padding: 18px; }
.hero__stats strong { display: block; font-family: 'Syne', sans-serif; font-size: 1.6rem; }
.hero__visual { position: relative; }
.hero__visual img { width: 100%; }
.hero-card { position: absolute; right: 0; bottom: 20px; max-width: 240px; padding: 20px; }

.marquee { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.marquee span {
  padding: 15px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
  text-align: center;
  font-weight: 600;
}
.section-heading { margin-bottom: 28px; }
.section-heading--split { display: flex; justify-content: space-between; align-items: end; gap: 20px; }
.category-grid, .product-grid, .admin-stats { display: grid; gap: 22px; }
.category-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.category-card {
  min-height: 220px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 13, 13, 0.04) 0%, rgba(22, 13, 13, 0.72) 100%);
}
.category-card span,
.category-card strong {
  position: relative;
  z-index: 1;
}
.category-card span {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  line-height: 1;
}
.category-card strong {
  margin-top: 10px;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}
.category-card--1 {
  background:
    linear-gradient(135deg, rgba(135, 31, 31, 0.22), rgba(27, 20, 20, 0.1)),
    url('../images/product-5.svg') center/cover no-repeat,
    linear-gradient(135deg, #d8b09a, #f7e8da);
}
.category-card--2 {
  background:
    linear-gradient(135deg, rgba(135, 31, 31, 0.18), rgba(27, 20, 20, 0.06)),
    url('../images/product-3.svg') center/cover no-repeat,
    linear-gradient(135deg, #f1e5cc, #fff7df);
}
.category-card--3 {
  background:
    linear-gradient(135deg, rgba(135, 31, 31, 0.18), rgba(27, 20, 20, 0.08)),
    url('../images/product-4.svg') center/cover no-repeat,
    linear-gradient(135deg, #d8b09a, #f7e8da);
}
.category-card--4 {
  background:
    linear-gradient(135deg, rgba(135, 31, 31, 0.16), rgba(27, 20, 20, 0.1)),
    url('../images/product-1.svg') center/cover no-repeat,
    linear-gradient(135deg, #dfd3c7, #f8f2ea);
}
.product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.product-grid--compact { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.product-card { overflow: hidden; }
.product-card__media {
  position: relative;
  display: block;
  aspect-ratio: 0.9;
  background: linear-gradient(180deg, #fff, #f8eee8);
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.product-card:hover .product-card__media img { transform: scale(1.04); }
.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 0.82rem;
}
.product-card__body { padding: 20px; }
.product-card__category, .rating-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}
.price-row { display: flex; align-items: center; gap: 12px; margin-top: 12px; }
.price-row strong { font-size: 1.18rem; }
.price-row--large strong { font-size: 2rem; }
.price-row s { color: rgba(109, 100, 96, 0.9); }

.promo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.promo-card { min-height: 320px; padding: 34px; }
.promo-card--dark {
  background: linear-gradient(160deg, rgb(239, 191, 4) 0%, #d3a902 100%);
  color: #1a1207;
}
.promo-card--dark .eyebrow,
.promo-card--dark h3 {
  color: #1a1207;
}
.promo-card--dark p { color: rgba(26, 18, 7, 0.82); }
.promo-card--dark .btn--secondary {
  background: #1a1207;
  color: rgb(239, 191, 4);
  border-color: #1a1207;
}
.promo-card--dark .btn--secondary:hover {
  background: #000;
  color: rgb(239, 191, 4);
}
.promo-card--light { background: linear-gradient(160deg, #fff9f5 0%, #f1dcc4 100%); }
.risk-free {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 32px;
  padding: 34px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(180deg, rgb(239, 191, 4) 0%, #d3a902 100%);
  color: #1a1207;
  box-shadow: 0 30px 70px rgba(126, 93, 12, 0.28);
}
.risk-free__intro {
  display: grid;
  align-content: start;
  gap: 14px;
  max-width: 280px;
}
.risk-free__intro .eyebrow,
.risk-free__intro p,
.risk-free__intro small {
  color: rgba(26, 18, 7, 0.82);
}
.btn--light {
  background: #fff;
  color: var(--brand);
}
.btn--light:hover {
  background: #f7ece7;
}
.risk-free .btn--light {
  background: #1a1207;
  color: rgb(239, 191, 4);
}
.risk-free .btn--light:hover {
  background: #000;
  color: rgb(239, 191, 4);
}
.risk-free__intro small {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.risk-free__steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.risk-step {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 100%;
  padding: 18px;
  border-radius: 22px;
  background: rgba(26, 18, 7, 0.1);
  border: 1px solid rgba(26, 18, 7, 0.2);
}
.risk-step__number {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(26, 18, 7, 0.74);
  color: #1a1207;
  font-family: 'Syne', sans-serif;
}
.risk-step h3 {
  font-size: 1.18rem;
  line-height: 1.05;
  max-width: 18rem;
}
.risk-step p {
  color: rgba(26, 18, 7, 0.86);
  line-height: 1.6;
  max-width: 28ch;
}

@media (min-width: 1380px) {
  .risk-free__steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .risk-step {
    padding: 0;
    border: 0;
    background: transparent;
  }

  .risk-step p {
    max-width: none;
  }
}
.story-grid { grid-template-columns: 0.9fr 1.1fr; }
.story-points { display: grid; gap: 18px; }
.story-points article { padding: 22px 0; border-bottom: 1px solid var(--line); }
.faq-block {
  padding: 34px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}
.faq-list {
  display: grid;
  gap: 14px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.faq-question span {
  font-family: 'Syne', sans-serif;
  font-size: 1.08rem;
}
.faq-question strong {
  font-size: 1.5rem;
  color: var(--brand);
  transition: transform 0.2s ease;
}
.faq-question.is-open strong {
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 22px 20px;
}
.faq-answer.is-open {
  display: block;
}

.page-hero { padding: 60px 0 24px; }
.page-hero--compact { padding-bottom: 0; }
.shop-layout { grid-template-columns: 280px minmax(0, 1fr); }
.filter-card, .summary-card, .checkout-form, .tab-panel { padding: 24px; }
.filter-card {
  background: linear-gradient(160deg, rgb(239, 191, 4) 0%, #d3a902 100%);
  border: 1px solid rgba(26, 18, 7, 0.22);
  color: #1a1207;
}
.filter-card h3,
.filter-card label {
  color: #1a1207;
}
.filter-card label, .checkout-form label, .summary-card label { display: block; margin-bottom: 16px; }
.filter-card input, .filter-card select, .checkout-form input, .checkout-form select, .checkout-form textarea,
.summary-card input, .newsletter-form input {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  outline: none;
}
.filter-card .btn--primary {
  width: 100%;
  background: #1a1207;
  color: rgb(239, 191, 4);
  border: 1px solid #1a1207;
}
.filter-card .btn--primary:hover {
  background: #000;
  color: rgb(239, 191, 4);
}
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.pagination { display: flex; gap: 10px; margin-top: 28px; }
.pagination a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
}
.pagination a.is-active { background: var(--brand); color: #fff; }

.product-layout { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
.product-gallery__main {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #f7ece5);
}
.zoom-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.zoom-frame:hover img { transform: scale(1.15); }
.product-gallery__thumbs { display: flex; gap: 12px; margin-top: 12px; }
.thumb {
  width: 88px;
  height: 88px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
}
.thumb.is-active { border-color: var(--brand); }
.qty-control {
  display: inline-grid;
  grid-template-columns: repeat(3, 52px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.qty-control--small { grid-template-columns: repeat(3, 42px); }
.qty-control button, .qty-control input { height: 52px; border: 0; background: #fff; text-align: center; }
.qty-control--small button, .qty-control--small input { height: 42px; }
.benefit-list { display: grid; gap: 12px; margin-top: 22px; }
.benefit-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.tabs { display: grid; gap: 18px; }
.tab-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.tab-buttons button {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}
.tab-buttons .is-active { background: var(--brand); color: #fff; }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }

.cart-layout, .checkout-layout { grid-template-columns: 1.2fr 0.8fr; align-items: start; }
.cart-items, .success-items { display: grid; gap: 18px; }
.cart-item {
  display: grid;
  grid-template-columns: 120px 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 20px;
}
.cart-item img, .summary-product img {
  width: 100%;
  max-width: 120px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fff, #f8eee8);
}
.cart-item__totals { text-align: right; }
.remove-link {
  display: inline-block;
  margin-top: 12px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.summary-card--sticky { position: sticky; top: 108px; }
.summary-row, .summary-product {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.summary-row--total { font-size: 1.1rem; }
.summary-product { justify-content: start; }

#cartSummary {
  background: linear-gradient(160deg, rgb(239, 191, 4) 0%, #d3a902 100%);
  border: 1px solid rgba(26, 18, 7, 0.24);
  color: #1a1207;
}
#cartSummary h2,
#cartSummary .summary-row span,
#cartSummary .summary-row strong,
#cartSummary label {
  color: #1a1207;
}
#cartSummary .summary-row {
  border-bottom: 1px solid rgba(26, 18, 7, 0.2);
}
#cartSummary input {
  background: #fff;
  border: 1px solid rgba(26, 18, 7, 0.24);
  color: #1a1207;
}
#cartSummary input::placeholder {
  color: rgba(26, 18, 7, 0.55);
}
#cartSummary .btn--primary {
  background: #1a1207;
  color: rgb(239, 191, 4);
  border: 1px solid #1a1207;
}
#cartSummary .btn--primary:hover {
  background: #000;
  color: rgb(239, 191, 4);
}

.checkout-form {
  background: rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.checkout-form small { color: #a11b1b; }
.payment-options { margin: 20px 0 0; padding: 0; border: 0; }
.payment-option { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.form-alert, .empty-state {
  padding: 20px;
  border-radius: 24px;
  background: rgba(135, 31, 31, 0.08);
  border: 1px solid rgba(135, 31, 31, 0.14);
}
.success-card { max-width: 760px; margin: 0 auto; padding: 34px; text-align: center; }

.site-footer {
  margin-top: 40px;
  padding: 50px 0 24px;
  background: #1d1414;
  color: #f7efe8;
}
.site-footer p, .site-footer a, .site-footer li { color: rgba(247, 239, 232, 0.78); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 26px;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.newsletter-form { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.newsletter-form button {
  border: 0;
  border-radius: 16px;
  background: var(--brand);
  color: #fff;
  padding: 0 18px;
}
.social-links { display: flex; gap: 10px; margin-top: 18px; }
.social-links a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-body { background: var(--bg); }
.admin-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-bottom: 24px; }
.admin-table { display: grid; }
.admin-table__row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.admin-table__row--head { font-weight: 700; color: var(--ink); }
.admin-shell {
  margin: 0;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  background: linear-gradient(180deg, #fff8f4 0%, var(--bg) 100%);
}
.admin-sidebar {
  padding: 28px 20px;
  background: #1d1414;
  color: #f7efe8;
  display: grid;
  align-content: start;
  gap: 24px;
}
.admin-brand {
  font-family: 'Syne', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
}
.admin-nav {
  display: grid;
  gap: 8px;
}
.admin-nav a {
  padding: 12px 14px;
  border-radius: 16px;
  color: rgba(247, 239, 232, 0.82);
}
.admin-nav a.is-active,
.admin-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.admin-sidebar__footer {
  display: grid;
  gap: 8px;
  margin-top: auto;
}
.admin-sidebar__footer a {
  color: #fff;
}
.admin-main {
  padding: 28px;
  display: grid;
  align-content: start;
  gap: 22px;
}
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
}
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.admin-flash {
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 600;
}
.admin-flash--success {
  background: rgba(25, 115, 77, 0.12);
  color: #14563a;
}
.admin-flash--error {
  background: rgba(161, 27, 27, 0.12);
  color: #8a1717;
}
.admin-table__row--orders {
  grid-template-columns: 0.7fr 1.2fr 1fr 1fr 1fr 1fr;
}
.admin-table__row--products {
  grid-template-columns: 1.4fr 1fr 0.8fr 0.6fr 0.8fr;
}
.admin-table__row--categories {
  grid-template-columns: 1fr 1fr 0.7fr;
}
.admin-table__row--payments {
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr 1fr;
}
.admin-table__row--users {
  grid-template-columns: 1fr 1.3fr 0.9fr 0.9fr 1fr;
}
.admin-table__row--discounts {
  grid-template-columns: 1.2fr 1fr 0.8fr 0.7fr 1.2fr 0.8fr 0.9fr;
}
.admin-table__row--items {
  grid-template-columns: 1.4fr 0.5fr 0.8fr 0.8fr;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}
.status-badge--success {
  background: rgba(25, 115, 77, 0.12);
  color: #14563a;
}
.status-badge--info {
  background: rgba(37, 99, 235, 0.12);
  color: #1d4ed8;
}
.status-badge--warning {
  background: rgba(194, 120, 32, 0.14);
  color: #9a5d12;
}
.status-badge--danger {
  background: rgba(161, 27, 27, 0.12);
  color: #8a1717;
}
.inline-status-form select,
.stack-form input,
.stack-form select,
.stack-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 12px 14px;
}
.stack-form {
  display: grid;
  gap: 16px;
}
.editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.editor-toolbar button {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}
.editor-surface {
  min-height: 220px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.admin-gallery-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 12px;
}
.admin-gallery-preview img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
  background: #fff;
}
.summary-card--nested {
  padding: 22px;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.55);
}
.repeat-list {
  display: grid;
  gap: 16px;
}
.repeat-item {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.rich-content p:last-child,
.rich-content ul:last-child,
.rich-content ol:last-child {
  margin-bottom: 0;
}
.rich-content ul,
.rich-content ol {
  color: var(--muted);
  padding-left: 20px;
}
.review-list {
  display: grid;
  gap: 16px;
}
.review-summary {
  display: grid;
  grid-template-columns: 1fr 1.3fr 0.9fr;
  gap: 28px;
  align-items: center;
  padding: 28px 18px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(135, 31, 31, 0.12);
}
.review-summary__score,
.review-summary__bars,
.review-summary__cta {
  min-width: 0;
}
.review-summary__score,
.review-summary__bars {
  padding-right: 24px;
  border-right: 1px solid rgba(135, 31, 31, 0.14);
}
.review-summary__stars {
  margin-bottom: 14px;
  color: #d11d2d;
  font-size: 1.8rem;
  letter-spacing: 0.12em;
}
.review-summary__score strong {
  display: block;
  margin-bottom: 10px;
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 0.95;
  color: #2b0f12;
}
.review-summary__score span {
  color: #2b0f12;
  font-size: 1rem;
}
.review-summary__bars {
  display: grid;
  gap: 10px;
}
.review-bar {
  display: grid;
  grid-template-columns: 92px 1fr 34px;
  gap: 14px;
  align-items: center;
}
.review-bar__label {
  color: #d11d2d;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
}
.review-bar__track {
  display: block;
  height: 16px;
  background: #ece7e2;
  overflow: hidden;
}
.review-bar__track span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #e31d30 0%, #b71225 100%);
}
.review-bar__count {
  color: #857877;
  text-align: right;
}
.review-summary__cta {
  display: grid;
  justify-items: center;
}
.review-summary__cta .btn {
  min-width: min(240px, 100%);
}
.review-meta,
.review-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}
.review-footer {
  margin-top: 14px;
  color: var(--muted);
}
.review-emoji {
  font-size: 1.3rem;
}
.concentration-guide {
  margin-bottom: 24px;
  padding: 28px 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, #fbf7f0 0%, #f6efe5 100%);
  border: 1px solid rgba(135, 31, 31, 0.08);
}
.concentration-guide__title {
  width: fit-content;
  margin: 0 auto 24px;
  padding: 14px 34px;
  border-radius: 0 0 24px 24px;
  background: linear-gradient(180deg, #b11f2a 0%, var(--brand) 100%);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.2rem, 2vw, 2rem);
  text-transform: uppercase;
  text-align: center;
}
.concentration-guide__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.concentration-card {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 20px 16px 12px;
  text-align: center;
  border-right: 1px dashed rgba(55, 44, 43, 0.22);
}
.concentration-card:last-child {
  border-right: 0;
}
.concentration-card__badge {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 14px;
  border: 1px solid rgba(177, 31, 42, 0.28);
  color: #372c2b;
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  background: #fffdfa;
}
.concentration-card h3 {
  font-size: clamp(1rem, 2vw, 1.4rem);
  text-transform: uppercase;
}
.concentration-card p {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  color: #2d2322;
}
.concentration-card__icon {
  position: relative;
  width: 76px;
  height: 96px;
}
.concentration-card__icon::before,
.concentration-card__icon::after {
  content: '';
  position: absolute;
}
.concentration-card__icon::before {
  left: 16px;
  right: 16px;
  bottom: 8px;
  top: 18px;
  border: 3px solid #9f8582;
  border-radius: 18px 18px 10px 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0 62%, rgba(160, 133, 130, 0.18) 62% 100%);
}
.concentration-card__icon::after {
  left: 28px;
  right: 28px;
  top: 4px;
  height: 18px;
  border: 3px solid #9f8582;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: #f7f2eb;
}
.concentration-card--highlight .concentration-card__icon::before {
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0 45%, rgba(177, 31, 42, 0.86) 45% 100%);
  border-color: var(--brand);
}
.concentration-card--highlight .concentration-card__icon::after {
  border-color: var(--brand);
}
.concentration-card__icon--edp::before {
  border-radius: 50% 50% 18px 18px;
}
.concentration-card__icon--edt::before {
  left: 14px;
  right: 14px;
}
.concentration-card__icon--edc::before {
  left: 18px;
  right: 18px;
  border-radius: 50%;
}
.story-strip {
  padding: 56px 0 0;
}
.story-strip__row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 0 4px;
  scrollbar-width: none;
}
.story-strip__row::-webkit-scrollbar {
  display: none;
}
.story-strip__card {
  flex: 0 0 min(180px, 44vw);
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  padding: 0;
}
.story-strip__thumb {
  display: block;
  aspect-ratio: 9 / 16;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #f6e8de);
  box-shadow: var(--shadow);
}
.story-strip__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-strip__name {
  display: block;
  margin-top: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
}
.story-viewer {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.story-viewer.is-open {
  display: flex;
}
.story-viewer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 10, 10, 0.72);
}
.story-viewer__dialog {
  position: relative;
  width: min(420px, calc(100% - 24px));
  padding: 14px;
  border-radius: 28px;
  background: #120d0d;
  color: #fff;
}
.story-viewer__progress {
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}
.story-viewer__progress span {
  display: block;
  width: 0;
  height: 100%;
  background: #fff;
}
.story-viewer__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
}
.story-viewer__body {
  margin-top: 14px;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, #201616, #110c0c);
}
.story-viewer__body img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}
.story-viewer__content {
  padding: 18px;
}
.story-viewer__content p {
  color: rgba(255, 244, 244, 0.78);
}
.story-viewer__badge {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.story-viewer__nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}
.admin-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.admin-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.tracking-pre {
  margin: 16px 0 0;
  padding: 14px;
  border-radius: 16px;
  background: #140f0f;
  color: #f6efe8;
  overflow: auto;
}
.admin-login-page {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at top, rgba(135, 31, 31, 0.18), transparent 24%), linear-gradient(180deg, #fff8f4 0%, var(--bg) 100%);
}
.admin-login-card {
  width: min(440px, calc(100% - 24px));
  padding: 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}
.admin-login-card input {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
}
.admin-login-note {
  font-size: 0.84rem;
}

@media (max-width: 1024px) {
  .header-main, .hero__grid, .category-grid, .product-grid, .product-grid--compact, .promo-grid, .story-grid,
  .shop-layout, .product-layout, .cart-layout, .checkout-layout, .footer-grid, .risk-free, .admin-detail-grid, .concentration-guide__grid { grid-template-columns: 1fr 1fr; }
  .header-main {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }
  .main-nav, .header-search { display: none; }
  .menu-toggle {
    display: inline-grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    align-items: center;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid var(--line);
    cursor: pointer;
  }
  .menu-toggle span {
    display: block;
    width: 18px;
    margin: 0 auto;
    height: 2px;
    background: var(--ink);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(84%, 420px);
    height: 100vh;
    height: 100dvh;
    z-index: 65;
    background: transparent;
    transform: translateX(-100%);
    transition: transform 0.28s ease;
    overflow-x: hidden;
  }
  .mobile-menu.is-open {
    display: block;
    transform: translateX(0);
  }
  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(20, 12, 12, 0.45);
  }
  .mobile-menu-overlay.is-open {
    display: block;
  }
  .mobile-menu__panel {
    height: 100vh;
    min-height: 100vh;
    height: 100dvh;
    min-height: 100dvh;
    overflow-y: auto;
    overflow-x: hidden;
    background: linear-gradient(180deg, #f7d978 0%, rgb(239, 191, 4) 100%);
    color: #1a1207;
    border-right: 4px solid #1a1207;
    box-shadow: 24px 0 60px rgba(88, 66, 15, 0.28);
  }
  .mobile-menu__topline {
    height: 24px;
    background: #1a1207;
    position: relative;
  }
  .mobile-menu__close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    background: rgb(239, 191, 4);
    border: 1px solid rgba(26, 18, 7, 0.45);
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(20, 12, 12, 0.18);
  }
  .mobile-menu__close span {
    position: absolute;
    top: 18px;
    left: 10px;
    width: 18px;
    height: 2px;
    background: #1a1207;
  }
  .mobile-menu__close span:first-child {
    transform: rotate(45deg);
  }
  .mobile-menu__close span:last-child {
    transform: rotate(-45deg);
  }
  .mobile-menu__inner {
    padding: 28px 16px 26px;
    display: grid;
    gap: 20px;
    width: 100%;
  }
  .mobile-menu__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
  .mobile-menu__card {
    display: grid;
    gap: 10px;
    color: #1a1207;
    text-align: center;
  }
  .mobile-menu__card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.62);
  }
  .mobile-menu__card span {
    font-family: 'Syne', sans-serif;
    font-size: 0.95rem;
    line-height: 1.1;
    text-transform: uppercase;
    overflow-wrap: anywhere;
  }
  .mobile-menu__promo {
    display: grid;
    grid-template-columns: 1fr 118px;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: linear-gradient(90deg, #f4d067 0%, #f9e18f 100%);
    border: 1px solid rgba(26, 18, 7, 0.24);
    overflow: hidden;
  }
  .mobile-menu__promo small,
  .mobile-menu__promo span {
    display: block;
  }
  .mobile-menu__promo small {
    margin-bottom: 4px;
    font-size: 0.72rem;
    text-transform: uppercase;
    color: rgba(26, 18, 7, 0.72);
  }
  .mobile-menu__promo strong {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 1.55rem;
    color: var(--brand);
    text-transform: uppercase;
  }
  .mobile-menu__promo span {
    margin-top: 6px;
    font-size: 0.68rem;
    color: rgba(26, 18, 7, 0.72);
    text-transform: uppercase;
  }
  .mobile-menu__promo img {
    width: 100%;
    background: transparent;
  }
  .mobile-menu__group {
    display: grid;
    gap: 12px;
  }
  .mobile-menu__section h3 {
    margin-bottom: 12px;
    font-size: 1.8rem;
    text-transform: uppercase;
    color: #1a1207;
  }
  .mobile-menu__accordion {
    border-top: 1px solid rgba(26, 18, 7, 0.24);
  }
  .mobile-menu__row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border: 0;
    border-bottom: 1px solid rgba(26, 18, 7, 0.24);
    background: transparent;
    font-family: 'Syne', sans-serif;
    font-size: 1.05rem;
    text-transform: uppercase;
    text-align: left;
    cursor: pointer;
  }
  .mobile-menu__row strong {
    font-size: 1.5rem;
    color: #1a1207;
    transition: transform 0.2s ease;
  }
  .mobile-menu__row.is-open strong {
    transform: rotate(180deg);
  }
  .mobile-menu__row-panel {
    display: none;
    padding: 0 0 14px;
    border-bottom: 1px solid rgba(26, 18, 7, 0.24);
  }
  .mobile-menu__row-panel.is-open {
    display: grid;
    gap: 10px;
  }
  .mobile-menu__row-panel a {
    color: rgba(26, 18, 7, 0.84);
    font-size: 0.95rem;
  }
  .mobile-menu__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .mobile-menu__action-btn {
    display: grid;
    place-items: center;
    min-height: 42px;
    border: 1px solid rgba(26, 18, 7, 0.35);
    font-family: 'Syne', sans-serif;
    text-transform: uppercase;
    background: #1a1207;
    color: rgb(239, 191, 4);
  }
  .mobile-menu__social {
    display: grid;
    gap: 12px;
  }
  .mobile-menu__social strong {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    color: #1a1207;
  }
  .mobile-menu__social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }
  .mobile-menu__social-links a {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(26, 18, 7, 0.35);
    border-radius: 50%;
    font-size: 0.82rem;
    font-weight: 700;
    color: #1a1207;
    background: rgba(255, 255, 255, 0.35);
  }
  .cart-item { grid-template-columns: 96px 1fr; }
  .cart-item__totals, .qty-control--small { grid-column: 2; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 24px, 1180px); }
  .topbar__inner, .section-heading--split, .shop-toolbar, .footer-bottom, .benefit-list div {
    flex-direction: column;
    align-items: start;
  }
  .marquee, .category-grid, .product-grid, .product-grid--compact, .promo-grid, .story-grid, .shop-layout,
  .product-layout, .cart-layout, .checkout-layout, .footer-grid, .admin-stats, .form-grid, .risk-free, .risk-free__steps, .admin-stats-grid, .admin-detail-grid, .concentration-guide__grid {
    grid-template-columns: 1fr;
  }
  .concentration-card {
    border-right: 0;
    border-bottom: 1px dashed rgba(55, 44, 43, 0.22);
  }
  .concentration-card:last-child {
    border-bottom: 0;
  }
  .admin-shell {
    grid-template-columns: 1fr;
  }
  .admin-sidebar {
    gap: 14px;
  }
  .admin-main {
    padding: 18px;
  }
  .admin-header,
  .admin-actions-row {
    flex-direction: column;
    align-items: start;
  }
  .review-summary {
    grid-template-columns: 1fr;
    padding: 20px 0;
  }
  .review-summary__score,
  .review-summary__bars {
    padding-right: 0;
    padding-bottom: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(135, 31, 31, 0.14);
  }
  .review-bar {
    grid-template-columns: 82px 1fr 28px;
    gap: 10px;
  }
  .admin-table__row,
  .admin-table__row--orders,
  .admin-table__row--products,
  .admin-table__row--categories,
  .admin-table__row--payments,
  .admin-table__row--users,
  .admin-table__row--discounts,
  .admin-table__row--items {
    grid-template-columns: 1fr;
  }
  .faq-block {
    padding: 24px;
  }
  .faq-question {
    padding: 18px;
  }
  .faq-question span {
    font-size: 0.98rem;
  }
  .topbar {
    font-size: 0.75rem;
  }
  .topbar.is-visible {
    max-height: 56px;
  }
  .topbar__group {
    gap: 10px;
    padding: 9px 10px;
  }
  .topbar__item {
    min-height: 34px;
    padding: 0 12px 0 10px;
  }
  .topbar__item strong {
    font-size: 0.72rem;
  }
  .header-main {
    grid-template-columns: auto 1fr auto;
    min-height: 72px;
    gap: 10px;
  }
  .brand {
    justify-self: start;
    gap: 10px;
  }
  .brand__mark {
    width: 38px;
    height: 38px;
  }
  .brand__text {
    font-size: 1.12rem;
  }
  .header-actions {
    gap: 8px;
    justify-self: end;
  }
  .header-icon,
  .header-user,
  .header-cart {
    min-width: 40px;
    min-height: 40px;
  }
  .header-icon,
  .header-user {
    display: inline-flex;
  }
  .header-user {
    padding: 0;
    min-width: 42px;
  }
  .header-user__label {
    display: none;
  }
  .header-cart__label {
    display: none;
  }
  .header-cart {
    min-width: 44px;
    padding: 0;
  }
  .header-cart__bottle {
    width: 18px;
    height: 22px;
    flex-basis: 18px;
  }
  .mobile-search form {
    grid-template-columns: 1fr;
  }
  .mobile-menu {
    width: min(100%, 420px);
    max-width: 100%;
  }
  .cart-drawer {
    width: min(100%, 440px);
  }
  .mobile-menu__cards {
    gap: 12px;
  }
  .mobile-menu__card span {
    font-size: 0.82rem;
  }
  .mobile-menu__promo {
    grid-template-columns: minmax(0, 1fr) 92px;
  }
  .mobile-menu__section h3 {
    font-size: 1.55rem;
  }
  .mobile-menu__actions {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .cart-drawer__item {
    grid-template-columns: 72px minmax(0, 1fr);
  }
  .cart-drawer__item-side {
    grid-column: 2;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-width: 0;
  }
  .cart-drawer__actions {
    grid-template-columns: 1fr;
  }
  .cart-drawer__meta {
    font-size: 0.76rem;
  }
  .hero { padding-top: 32px; }
  .hero__stats { flex-direction: column; }
  .hero-card { position: static; max-width: none; margin-top: 18px; }
  .qty-control { width: 100%; grid-template-columns: 48px 1fr 48px; }
  .summary-card--sticky { position: static; }
  .cart-item { grid-template-columns: 1fr; }
  .cart-item img { max-width: 100%; }
  .newsletter-form { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .mobile-menu__inner {
    padding: 28px 12px 22px;
    gap: 16px;
  }
  .mobile-menu__cards {
    gap: 10px;
  }
  .mobile-menu__card span {
    font-size: 0.72rem;
  }
  .mobile-menu__promo {
    grid-template-columns: 1fr 78px;
    gap: 10px;
    padding: 12px;
  }
  .mobile-menu__promo strong {
    font-size: 1.18rem;
  }
  .mobile-menu__promo span,
  .mobile-menu__promo small {
    font-size: 0.62rem;
  }
  .mobile-menu__section h3 {
    font-size: 1.32rem;
  }
  .mobile-menu__row {
    font-size: 0.96rem;
    padding: 14px 0;
  }
  .mobile-menu__actions {
    grid-template-columns: 1fr;
  }
  .cart-drawer {
    width: 100%;
  }
  .cart-drawer__header,
  .cart-drawer__footer {
    padding-left: 12px;
    padding-right: 12px;
  }
  .cart-drawer__items,
  .cart-drawer__deal-head,
  .cart-drawer__recommendations,
  .cart-drawer__empty {
    padding-left: 12px;
    padding-right: 12px;
  }
  .cart-drawer__title-wrap h2 {
    font-size: 1.45rem;
  }
  .cart-drawer__recommendations {
    grid-auto-columns: minmax(138px, 1fr);
  }
  .topbar.is-visible {
    max-height: 52px;
  }
  .topbar__item strong {
    font-size: 0.66rem;
  }
}
.input-hint {
    display: block;
    margin-top: -0.35rem;
    color: rgba(64, 29, 34, 0.72);
    font-size: 0.82rem;
}
.auth-layout {
    display: grid;
    gap: 24px;
    max-width: 760px;
    margin: 0 auto;
}
.auth-card {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(160deg, rgb(239, 191, 4) 0%, #d3a902 100%);
    border: 1px solid rgba(26, 18, 7, 0.24);
    color: #1a1207;
}
.auth-card h1,
.auth-card h2 {
    margin-top: 0;
    color: #1a1207;
}
.auth-card p,
.auth-card label,
.auth-card .eyebrow {
    color: rgba(26, 18, 7, 0.9);
}
.auth-card input,
.auth-card select,
.auth-card textarea {
    background: #fff;
    border: 1px solid rgba(26, 18, 7, 0.24);
    color: #1a1207;
}
.auth-card .btn--primary {
    background: #1a1207;
    color: rgb(239, 191, 4);
    border: 1px solid #1a1207;
}
.auth-card .btn--primary:hover {
    background: #000;
    color: rgb(239, 191, 4);
}
.auth-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-top: 6px;
}
.auth-links a {
    color: #2f210a;
    font-weight: 600;
}
.auth-links--spread {
    justify-content: space-between;
    align-items: center;
}
.form-error {
    color: #b42318;
    font-size: 0.86rem;
    margin-top: -0.45rem;
}
    color: rgb(239, 191, 4);
