* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
:root {
  --bg: #f2f5fb;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --text: #0f172a;
  --muted: #475569;
  --line: #dbe3ee;
  --primary: #cc0000;
  --primary-2: #a30000;
  --shadow-sm: 0 8px 18px rgba(15, 23, 42, 0.06);
  --shadow: 0 18px 48px rgba(15, 23, 42, 0.10);
  --radius: 16px;
  --radius-lg: 22px;
  --container: 1240px;
}

body {
  margin: 0;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background:
    radial-gradient(900px 420px at 10% 0%, rgba(204, 0, 0, 0.05), transparent 55%),
    radial-gradient(900px 420px at 92% 10%, rgba(204, 0, 0, 0.04), transparent 60%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
section { scroll-margin-top: 86px; }
.muted { color: var(--muted); }

.container {
  width: min(var(--container), calc(100% - 24px));
  margin: 0 auto;
}

.topbar {
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  align-items: center;
  flex-wrap: wrap;
}

.topbar a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0 10px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.logo.small { font-size: 16px; }

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #fff;
  border: 4px solid var(--primary);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.logo-mark::after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--primary);
  position: absolute;
  inset: 0;
  margin: auto;
}

.search {
  flex: 1 1 520px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.search-input {
  width: 100%;
  padding: 13px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  outline: none;
  color: var(--text);
  transition: 0.18s ease;
}

.search-input::placeholder { color: rgba(71, 85, 105, 0.72); }
.search-input:hover { border-color: #cbd5e1; }
.search-input:focus { border-color: rgba(204, 0, 0, 0.55); box-shadow: 0 0 0 4px rgba(204, 0, 0, 0.14); background: #fff; }

.search-btn {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  transition: 0.18s ease;
}

.search-btn:hover { background: var(--primary-2); transform: translateY(-1px); }
.search-btn:active { transform: translateY(0); }

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(71, 85, 105, 0.92);
  font-weight: 900;
  cursor: pointer;
}

.icon-link:hover {
  background: rgba(15, 23, 42, 0.04);
  border-color: var(--line);
}

.icon-text { font-size: 14px; }

.cart-toggle { position: relative; }

.cart-count {
  margin-left: 4px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: #cc0000;
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.cart-count[data-empty="true"] { display: none; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-nav {
  padding: 10px 0 12px;
  border-top: 1px solid var(--line);
}

.main-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 10px;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-parent {
  color: rgba(71, 85, 105, 0.92);
  font-weight: 900;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 12px;
  transition: 0.18s ease;
}

.nav-parent:hover {
  background: rgba(204, 0, 0, 0.08);
  color: var(--text);
}

.submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 10px;
  display: none;
  z-index: 60;
}

.nav-item:hover .submenu,
.nav-item:focus-within .submenu { display: grid; }

.submenu-link {
  padding: 12px 12px;
  border-radius: 12px;
  font-weight: 900;
  color: rgba(71, 85, 105, 0.92);
  border: 1px solid transparent;
}

.submenu-link:hover {
  background: rgba(204, 0, 0, 0.08);
  border-color: rgba(204, 0, 0, 0.18);
  color: var(--text);
}

.drawer-sub {
  padding-left: 22px;
  opacity: 0.92;
}

.main-nav > a {
  color: rgba(71, 85, 105, 0.92);
  font-weight: 900;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 12px;
  transition: 0.18s ease;
}

.main-nav > a:hover {
  background: rgba(204, 0, 0, 0.08);
  color: var(--text);
}

.category-nav {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  overflow: auto;
  padding-bottom: 6px;
}

.cat-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: rgba(71, 85, 105, 0.92);
  font-weight: 900;
  white-space: nowrap;
  transition: 0.18s ease;
}

.cat-link:hover { border-color: #cbd5e1; }
.cat-link.is-active {
  background: rgba(204, 0, 0, 0.10);
  border-color: rgba(204, 0, 0, 0.30);
  color: #7f0000;
}

.nav-links {
  display: flex;
  gap: 18px;
  color: rgba(71, 85, 105, 0.92);
  font-weight: 800;
}

.nav-links a {
  padding: 10px 10px;
  border-radius: 12px;
  transition: 0.18s ease;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(204, 0, 0, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 900;
  transition: 0.18s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(204, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(204, 0, 0, 0.35);
  background: linear-gradient(135deg, #e60000 0%, #b30000 100%);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--line);
}

.btn-secondary:hover { border-color: #cbd5e1; }

.btn:focus-visible,
.input:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(204, 0, 0, 0.24);
  outline-offset: 2px;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: 0.18s ease;
}

.icon-btn:hover { transform: translateY(-1px); }
.mobile-only { display: none; }

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
}

.nav-drawer[data-open="true"] { pointer-events: auto; }

.nav-drawer-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(15, 23, 42, 0.55);
  opacity: 0;
  transition: 0.18s ease;
}

.nav-drawer[data-open="true"] .nav-drawer-backdrop { opacity: 1; }

.nav-drawer-panel {
  position: absolute;
  left: 14px;
  right: 14px;
  top: 14px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 16px;
  transform: translateY(-8px);
  opacity: 0;
  transition: 0.18s ease;
}

.nav-drawer[data-open="true"] .nav-drawer-panel {
  transform: translateY(0);
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
}

.cart-drawer[data-open="true"] { pointer-events: auto; }

.cart-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(15, 23, 42, 0.55);
  opacity: 0;
  transition: 0.18s ease;
}

.cart-drawer[data-open="true"] .cart-backdrop { opacity: 1; }

.cart-panel {
  position: absolute;
  top: 14px;
  right: 14px;
  width: min(420px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
  opacity: 0;
  transition: 0.18s ease;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
}

.cart-drawer[data-open="true"] .cart-panel {
  transform: translateY(0);
  opacity: 1;
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px 12px;
  border-bottom: 1px solid var(--line);
}

.cart-title { font-weight: 1000; letter-spacing: -0.02em; }

.cart-body {
  padding: 14px;
  overflow: auto;
}

.cart-empty h3 { margin: 0 0 6px; }
.cart-empty .btn { margin-top: 10px; }

.cart-items { display: grid; gap: 12px; }

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface-2);
}

.cart-item-img {
  width: 64px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.cart-item-title { font-weight: 900; font-size: 14px; }
.cart-item-meta { color: rgba(71, 85, 105, 0.8); font-size: 13px; margin-top: 2px; }
.cart-item-row { display: flex; align-items: center; gap: 10px; margin-top: 10px; }

.cart-qty-input {
  width: 74px;
  padding: 10px 10px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 900;
}

.cart-remove {
  border: 0;
  background: transparent;
  color: rgba(71, 85, 105, 0.9);
  font-weight: 900;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 12px;
}

.cart-remove:hover { background: rgba(15, 23, 42, 0.04); }

.cart-item-price { font-weight: 1000; color: rgba(15, 23, 42, 0.92); }

.cart-summary {
  padding: 14px;
  border-top: 1px solid var(--line);
  background: var(--surface);
  display: grid;
  gap: 10px;
}

.cart-subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-note { font-size: 12px; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.field { display: grid; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field-label { font-weight: 900; font-size: 13px; color: rgba(15, 23, 42, 0.78); }

.input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  outline: none;
  transition: 0.18s ease;
  font-weight: 700;
}

.input:focus { border-color: rgba(204, 0, 0, 0.55); box-shadow: 0 0 0 4px rgba(204, 0, 0, 0.14); }

.checkout-items { display: grid; gap: 12px; margin-top: 12px; }

.checkout-line {
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface-2);
}

.checkout-line-title { font-weight: 1000; letter-spacing: -0.01em; }
.checkout-line-meta { margin-top: 4px; color: rgba(71, 85, 105, 0.86); font-size: 13px; }

.checkout-total {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkout-pay { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); display: grid; gap: 10px; }
.pay-title { font-weight: 1000; }

.pay-option { display: flex; gap: 10px; align-items: center; font-weight: 900; color: rgba(15, 23, 42, 0.9); }
.pay-option input { transform: translateY(1px); }

.pay-box {
  margin-top: 12px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(204, 0, 0, 0.04);
  display: grid;
  gap: 10px;
}

.checkout-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.checkout-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.secure-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(204, 0, 0, 0.22);
  background: rgba(204, 0, 0, 0.06);
  color: rgba(15, 23, 42, 0.92);
  font-weight: 1000;
  font-size: 13px;
}

.checkout-title {
  margin-top: 6px;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.checkout-steps {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  margin: 10px 0 18px;
}

.step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid transparent;
  background: var(--surface-2);
  font-weight: 1000;
  color: rgba(71, 85, 105, 0.92);
  flex: 1;
  min-width: 0;
}

.step-dot {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: #fff;
  color: rgba(15, 23, 42, 0.88);
  font-size: 12px;
}

.step-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.step.is-active {
  border-color: rgba(204, 0, 0, 0.24);
  background: rgba(204, 0, 0, 0.06);
  color: rgba(15, 23, 42, 0.92);
}

.step.is-active .step-dot {
  border-color: rgba(204, 0, 0, 0.35);
  background: #cc0000;
  color: #fff;
}

.step.is-done .step-dot {
  border-color: rgba(16, 185, 129, 0.5);
  background: rgba(16, 185, 129, 0.12);
  color: rgba(15, 23, 42, 0.92);
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 18px;
  align-items: start;
}

.checkout-form { padding: 16px; }
.checkout-empty { padding: 18px; }

.checkout-section + .checkout-section { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }

.checkout-section-head {
  display: grid;
  gap: 4px;
  margin-bottom: 12px;
}

.checkout-section-title { font-weight: 1000; font-size: 16px; }

.delivery-grid { display: grid; gap: 10px; }

.delivery-option {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  cursor: pointer;
}

.delivery-option input { transform: translateY(1px); }

.delivery-title { font-weight: 1000; display: block; }
.delivery-sub { display: block; margin-top: 3px; font-size: 13px; }
.delivery-price { font-weight: 1000; }

.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.pay-tile {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  cursor: pointer;
}

.pay-tile input { transform: translateY(2px); }
.pay-tile-title { font-weight: 1000; display: block; margin-bottom: 2px; }

.checkout-summary { padding: 16px; position: sticky; top: 14px; }

.summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.summary-title { font-weight: 1000; }
.summary-edit { font-weight: 900; color: rgba(204, 0, 0, 0.92); }
.summary-edit:hover { text-decoration: underline; }

.summary-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface-2);
}

.summary-item-img {
  width: 72px;
  height: 54px;
  border-radius: 12px;
  object-fit: cover;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.summary-item-title { font-weight: 1000; font-size: 14px; }
.summary-item-meta { margin-top: 4px; font-size: 13px; color: rgba(71, 85, 105, 0.86); }
.summary-item-price { font-weight: 1000; }

.summary-rows {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
}

.summary-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.summary-total { padding-top: 12px; border-top: 1px dashed rgba(148, 163, 184, 0.7); font-weight: 1000; }

.summary-trust {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 6px;
}

.trust-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 1000;
}

@media (max-width: 820px) {
  .form-grid { grid-template-columns: 1fr; }
  .checkout-head { align-items: flex-start; flex-direction: column; }
  .checkout-steps { flex-direction: column; }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
  .payment-grid { grid-template-columns: 1fr; }
}

.nav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.nav-drawer-links {
  display: grid;
  gap: 10px;
  padding-bottom: 12px;
}

.nav-drawer-links a {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  font-weight: 900;
}

.nav-drawer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.hero { padding: 22px 0 18px; }

.hero-banner {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
}

.hero-content {
  padding: 26px;
}

.hero-slider {
  position: relative;
  min-height: 320px;
  border-left: 1px solid var(--line);
  background: var(--surface-2);
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  background: linear-gradient(135deg, rgba(204, 0, 0, 0.08), rgba(255, 255, 255, 0.0) 55%);
}

.hero-slide.is-active { opacity: 1; }

.slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.0) 0%, rgba(15, 23, 42, 0.45) 100%);
}

.slide-label {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: rgba(15, 23, 42, 0.55);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
}

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(15, 23, 42, 0.35);
  color: rgba(255, 255, 255, 0.92);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  transition: 0.18s ease;
}

.slide-arrow:hover { background: rgba(15, 23, 42, 0.55); }
.slide-arrow.prev { left: 12px; }
.slide-arrow.next { right: 12px; }

.slide-dots {
  position: absolute;
  left: 14px;
  right: 14px;
  top: 14px;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  z-index: 2;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.40);
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 0;
}

.dot.is-active {
  background: rgba(255, 255, 255, 0.90);
  border-color: rgba(255, 255, 255, 0.90);
}

.kicker {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: #7f0000;
  font-weight: 900;
  font-size: 13px;
  margin: 0 0 12px;
}

h1 {
  margin: 0 0 10px;
  font-size: clamp(32px, 4.6vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 900;
}

h2 {
  margin: 0 0 8px;
  font-size: clamp(22px, 3.2vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 900;
}

h3, h4 { margin: 0 0 8px; font-weight: 900; }

.headline-xl {
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-align: center;
  font-size: clamp(30px, 4.2vw, 56px);
  line-height: 1.03;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

.lead {
  margin: 0 0 16px;
  font-size: 18px;
  color: var(--muted);
  max-width: 760px;
}

.section-intro {
  margin-bottom: 18px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  justify-items: center;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.trust-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.product-detail-row { margin-top: 10px; }
.product-detail-badges { margin-top: 12px; }

.trust-badge {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-weight: 900;
  font-size: 12px;
  color: rgba(71, 85, 105, 0.92);
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mini-stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
}

.mini-stat strong { display: block; font-size: 16px; }
.mini-stat span { color: var(--muted); font-weight: 800; font-size: 13px; }

.disclosure {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--muted);
  font-size: 14px;
}

.section { padding: 22px 0; }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.reasons {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.02) 0%, rgba(15, 23, 42, 0.00) 100%);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  height: 100%;
}

.feature-icon {
  width: 74px;
  height: 74px;
  border-radius: 999px;
  border: 2px solid #111827;
  display: grid;
  place-items: center;
  margin: 0 auto;
  color: #111827;
  background: #fff;
}

.feature-title {
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: 18px;
}

.feature-text {
  font-size: 15px;
  line-height: 1.6;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: stretch;
}

.category-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 16px;
  transition: 0.18s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.category-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  object-fit: cover;
  display: block;
  overflow: hidden;
}

.category-card:hover {
  transform: translateY(-2px);
  border-color: rgba(204, 0, 0, 0.25);
  box-shadow: var(--shadow);
}

.category-title {
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: 18px;
  margin-top: 4px;
}

.category-sub {
  margin-top: 2px;
  font-size: 14px;
  color: var(--muted);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.pill-btn {
  padding: 10px 16px;
  border-radius: 999px;
  border: 2px solid #1f2937;
  background: #fff;
  font-weight: 900;
  color: #1f2937;
  cursor: pointer;
  transition: 0.18s ease;
}

.pill-btn:hover { transform: translateY(-1px); }
.pill-btn.is-active {
  background: #1f2937;
  color: #fff;
}

.offer-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.offer-card h3 {
  font-size: 18px;
  margin: 4px 0 0;
}

.offer-card p {
  flex-grow: 1;
  margin: 0;
  font-size: 15px;
}

.offer-card .btn {
  margin-top: auto;
}

.offer-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  object-fit: cover;
  display: block;
  overflow: hidden;
}

.offer-badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(204, 0, 0, 0.22);
  background: rgba(204, 0, 0, 0.10);
  color: #7f0000;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.faq {
  display: grid;
  gap: 10px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 12px 14px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-body {
  padding-top: 10px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.feature-card h3 {
  font-size: 18px;
  margin: 0 0 4px;
}

.feature-card p {
  flex-grow: 1;
  margin: 0;
  font-size: 15px;
  color: var(--muted);
}

.results { color: var(--muted); font-weight: 900; }

.toolbar {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.search-field { position: relative; }

.clear-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  opacity: 0.9;
}

.input {
  width: 100%;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  outline: none;
  color: var(--text);
  transition: 0.18s ease;
}

.input::placeholder { color: rgba(71, 85, 105, 0.72); }
.input:hover { border-color: #cbd5e1; }
.input:focus { border-color: rgba(204, 0, 0, 0.55); box-shadow: 0 0 0 4px rgba(204, 0, 0, 0.14); background: #fff; }
.select { cursor: pointer; }
.compact { min-width: 280px; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: stretch;
  margin-top: 24px;
}

.product-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}

.product-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-link:hover {
  color: inherit;
}

.product-footer-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--line);
}

.product-footer-actions .variant-select {
  flex: 1 1 180px;
  min-width: 180px;
  height: 42px;
  font-weight: 600;
}

.product-footer-actions .btn {
  flex: 1 1 160px;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.12);
  border-color: rgba(204, 0, 0, 0.4);
}

.product-media {
  aspect-ratio: 1 / 1;
  width: 100%;
  position: relative;
  background-color: #f1f5f9;
  overflow: hidden;
  padding: 12px;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
  display: block;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img {
  transform: scale(1.08);
}

.media-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
  color: #0f172a;
  font-weight: 800;
  font-size: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(4px);
}

.rating-badge .stars {
  color: #f59e0b;
}

.badge {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.9);
  color: #ffffff;
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
}

.badge-popular {
  background: linear-gradient(135deg, rgba(204, 0, 0, 0.95), rgba(163, 0, 0, 0.95));
}

.trending-grid { margin-top: 18px; }

.trending-slider {
  display: grid;
  gap: 12px;
}

.trending-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  border-radius: 24px;
}

.trending-viewport::-webkit-scrollbar { display: none; }
.trending-viewport { scrollbar-width: none; }

.trending-track {
  display: flex;
  gap: 18px;
  padding: 2px;
}

.top-pick--slide {
  flex: 0 0 calc((100% - 36px) / 3);
  scroll-snap-align: start;
}

.top-pick {
  position: relative;
}

.top-pick::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(204, 0, 0, 0.22), rgba(15, 23, 42, 0.06));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.top-pick-media {
  overflow: hidden;
}

.top-pick-chip {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(204, 0, 0, 0.22);
  color: rgba(15, 23, 42, 0.92);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.top-pick-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(204, 0, 0, 0.10);
}

.trending-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 6px;
}

.trend-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
}

.trend-dot.is-active {
  border-color: rgba(204, 0, 0, 0.60);
  background: rgba(204, 0, 0, 0.95);
}

.top-pick {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.top-pick-link {
  display: block;
  color: inherit;
}

.top-pick-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}

.top-pick-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  display: block;
  transition: transform 0.35s ease;
}

.top-pick:hover .top-pick-img {
  transform: scale(1.04);
}

.top-pick-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.top-pick-badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.90);
  color: #fff;
  font-weight: 900;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(6px);
}

.top-pick-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.40);
  font-weight: 900;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.92);
}

.top-pick-body {
  padding: 16px 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.top-pick-kicker {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(71, 85, 105, 0.75);
}

.top-pick-title {
  font-weight: 900;
  font-size: 16px;
  line-height: 1.25;
  color: var(--text);
}

.top-pick-price {
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.01em;
}

.top-pick-actions {
  padding: 12px 18px 18px;
  border-top: 1px solid var(--line);
}

.top-pick-actions .variant-select {
  width: 100%;
  margin-bottom: 10px;
  height: 42px;
  font-weight: 600;
}

.top-pick-actions .btn {
  width: 100%;
  justify-content: center;
}

.product-body {
  padding: 24px 24px 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 12px;
}

.product-title {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
}

.product-sub {
  margin: 0;
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

.product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 8px;
}

.price {
  font-size: 22px;
  font-weight: 900;
  color: #cc0000;
  letter-spacing: -0.02em;
}

.rating {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #f8fafc;
  padding: 4px 8px;
  border-radius: 8px;
}

.stars { color: #f59e0b; font-size: 14px; }
.rating-num { font-size: 13px; font-weight: 800; color: #475569; }

.product-footer {
  display: none;
}

.product-category-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.product-pros-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-pros-list li {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.product-pros-list li svg {
  color: #10b981; /* Emerald-500 for checkmarks */
  flex-shrink: 0;
}

.redirect-info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  opacity: 0.8;
}

.product-footer-actions .pill {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  background: #f1f5f9;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
}

.product-footer-actions .btn {
  margin-left: auto;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 800;
  border-radius: 14px;
  letter-spacing: -0.01em;
}

.btn-small {
  padding: 10px 14px;
  border-radius: 999px;
}

.empty-state {
  grid-column: 1 / -1;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 16px;
}

.empty-state h3 { margin: 0 0 6px; }
.empty-state p { margin: 0; }

.table-wrap {
  overflow: auto;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th, td {
  padding: 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  background: var(--surface-2);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 900;
}

tbody tr:hover td { background: rgba(204, 0, 0, 0.04); }

.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.review-head {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.review-head > div:first-child {
  flex: 1 1 200px;
}

.review-image {
  flex: 1 1 200px;
  aspect-ratio: 4 / 3;
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--line);
  background-size: cover;
  background-position: center;
  background-color: var(--surface-2);
  object-fit: cover;
  display: block;
}

.btn-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.btn-row-center { justify-content: center; }

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
  align-items: stretch;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
}

.list { margin: 10px 0 0 18px; padding: 0; color: var(--muted); }

.newsletter-card {
  background: linear-gradient(135deg, rgba(204, 0, 0, 0.10), rgba(255, 255, 255, 0.0) 65%), var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.newsletter-card > div:first-child {
  flex: 1 1 300px;
}

.newsletter-media {
  flex: 1 1 200px;
  max-width: 400px;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-sm);
}

.newsletter-form {
  flex: 1 1 300px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.contact-form {
  flex: 1 1 360px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.contact-field--full {
  grid-column: 1 / -1;
}

textarea.input {
  resize: vertical;
  min-height: 140px;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  width: min(380px, calc(100% - 36px));
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background:
    radial-gradient(700px 220px at 10% 0%, rgba(204, 0, 0, 0.10), transparent 55%),
    var(--surface);
  box-shadow: var(--shadow);
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.toast.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.toast-mark {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  margin-top: 5px;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(204, 0, 0, 0.10);
  flex: 0 0 auto;
}

.toast-message {
  font-weight: 700;
  color: rgba(15, 23, 42, 0.92);
}

.toast.is-success {
  border-color: rgba(22, 163, 74, 0.30);
  background:
    radial-gradient(700px 220px at 10% 0%, rgba(22, 163, 74, 0.18), transparent 55%),
    var(--surface);
}

.toast.is-error {
  border-color: rgba(220, 38, 38, 0.30);
  background:
    radial-gradient(700px 220px at 10% 0%, rgba(220, 38, 38, 0.18), transparent 55%),
    var(--surface);
}

.toast.is-success .toast-mark {
  background: #16a34a;
  box-shadow: 0 0 0 6px rgba(22, 163, 74, 0.12);
}

.toast.is-error .toast-mark {
  background: #dc2626;
  box-shadow: 0 0 0 6px rgba(220, 38, 38, 0.12);
}

.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: 18px;
}

.promo-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.55);
  backdrop-filter: blur(10px);
}

.promo-panel {
  position: relative;
  width: min(560px, 100%);
  border-radius: 22px;
  border: 1px solid rgba(226, 232, 240, 0.85);
  background:
    radial-gradient(900px 360px at 10% 0%, rgba(204, 0, 0, 0.14), transparent 55%),
    var(--surface);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.28);
  padding: 20px 20px 18px;
}

.promo-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: rgba(15, 23, 42, 0.8);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.promo-close:hover {
  background: #ffffff;
  color: rgba(15, 23, 42, 0.92);
}

.promo-kicker {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(204, 0, 0, 0.90);
  font-weight: 900;
}

.promo-title {
  margin: 10px 0 6px;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.promo-text {
  margin: 0 0 14px;
  color: var(--muted);
}

.promo-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.promo-foot {
  margin-top: 10px;
  font-size: 12px;
}

.promo-modal .btn {
  white-space: nowrap;
}

.promo-modal .input {
  width: 100%;
}

.promo-modal .muted {
  color: rgba(71, 85, 105, 0.92);
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 18px;
}

.product-modal[hidden] {
  display: none;
}

.product-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.60);
  backdrop-filter: blur(10px);
}

.product-panel {
  position: relative;
  width: min(980px, 100%);
  max-height: min(760px, calc(100vh - 36px));
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(226, 232, 240, 0.85);
  background:
    radial-gradient(900px 360px at 10% 0%, rgba(204, 0, 0, 0.10), transparent 55%),
    var(--surface);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.30);
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.product-modal-head {
  padding: 18px 18px 12px;
  border-bottom: 1px solid var(--line);
}

.product-modal-kicker {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(204, 0, 0, 0.92);
  font-weight: 900;
}

.product-modal-title {
  margin: 8px 0 0;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.product-modal-sub {
  margin: 6px 0 0;
  color: var(--muted);
}

.product-modal-body {
  padding: 18px;
  overflow: auto;
}

.product-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 18px;
  align-items: start;
}

.product-modal-media {
  border-radius: 18px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: rgba(148, 163, 184, 0.08);
}

.product-modal-media img {
  width: 100%;
  height: auto;
  display: block;
}

.product-modal-meta {
  display: grid;
  gap: 12px;
}

.product-modal-section {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  padding: 14px;
}

.product-modal-section h4 {
  margin: 0 0 8px;
  font-size: 14px;
}

.product-modal-price {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(15, 23, 42, 0.95);
}

.product-modal-price-muted {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.product-modal-actions {
  padding: 14px 18px 18px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.product-modal-actions .variant-select {
  width: min(320px, 100%);
  height: 42px;
  font-weight: 600;
}

.product-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: rgba(15, 23, 42, 0.8);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.product-close:hover {
  background: #ffffff;
  color: rgba(15, 23, 42, 0.92);
}

@media (max-width: 860px) {
  .product-modal-grid {
    grid-template-columns: 1fr;
  }
  .product-modal-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .product-modal-actions .variant-select {
    width: 100%;
  }
}

.footer {
  position: relative;
  padding: 28px 0 22px;
  background:
    radial-gradient(900px 360px at 10% 0%, rgba(204, 0, 0, 0.05), transparent 55%),
    radial-gradient(700px 320px at 90% 20%, rgba(204, 0, 0, 0.04), transparent 60%),
    var(--surface);
  color: var(--text);
  border-top: 1px solid var(--line);
}

.footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
}

.footer a { color: var(--text); }
.footer a:hover { color: var(--primary); }

.footer-muted { color: var(--muted); }

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  gap: 22px;
  padding-top: 8px;
  padding-bottom: 16px;
}

.footer-grid > div + div {
  padding-left: 22px;
  border-left: 1px solid rgba(148, 163, 184, 0.35);
}

.footer-about .footer-muted {
  font-size: 14px;
  line-height: 1.5;
}

.footer-about p { margin: 0 0 10px; }
.footer-about p:last-child { margin-bottom: 0; }

.footer-address {
  margin-top: 10px;
  font-weight: 800;
  color: rgba(71, 85, 105, 0.92);
}

.footer-contact {
  margin-top: 10px;
}

.footer-legal {
  padding-top: 14px;
  padding-bottom: 14px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
}

.footer-disclaimer {
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  background: rgba(15, 23, 42, 0.02);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 16px;
  padding: 12px 14px;
}

.footer-disclaimer strong { color: var(--text); }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand strong {
  font-size: 18px;
  letter-spacing: -0.02em;
}

.social {
  display: flex;
  gap: 10px;
  padding-top: 10px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
  display: grid;
  place-items: center;
  color: rgba(15, 23, 42, 0.78);
  transition: 0.18s ease;
}

.social-link:hover {
  transform: translateY(-1px);
  border-color: rgba(204, 0, 0, 0.28);
  color: var(--primary);
}

.footer-mark {
  box-shadow: none;
  border-color: var(--primary);
}

.footer-title {
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0.9;
  margin-bottom: 6px;
}

.footer-link {
  display: block;
  padding: 4px 10px;
  font-weight: 600;
  opacity: 0.95;
  border-radius: 12px;
  border: 1px solid transparent;
  line-height: 1.35;
}

.footer-link:hover {
  text-decoration: none;
  background: rgba(204, 0, 0, 0.06);
  border-color: rgba(204, 0, 0, 0.16);
}

.footer-bottom {
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom-link {
  font-weight: 900;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
}

.footer-bottom-link:hover {
  background: rgba(204, 0, 0, 0.08);
  border-color: rgba(204, 0, 0, 0.18);
}

.cta-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.redirect-disclaimer {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.order-steps {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.order-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(255, 255, 255, 0.70);
  font-weight: 800;
  font-size: 12px;
  color: rgba(71, 85, 105, 0.92);
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 12px;
  background: rgba(255, 255, 255, 0.90);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(14px);
  display: none;
  gap: 10px;
}

.sticky-cta .btn {
  flex: 1 1 0;
  justify-content: center;
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .mobile-only { display: inline-grid; }
  .icon-text { display: none; }
  .search { grid-template-columns: 1fr; }
  .hero-banner { grid-template-columns: 1fr; }
  .hero-slider { min-height: 220px; border-left: 0; border-top: 1px solid var(--line); }
  .main-nav { display: none; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .offer-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .review-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-card { flex-direction: column; align-items: stretch; }
  .newsletter-media { max-width: 100%; }
  .compact { min-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div + div { padding-left: 0; border-left: 0; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .top-pick--slide { flex-basis: calc((100% - 18px) / 2); }
  .sticky-cta { display: flex; }
  body.has-sticky-cta { padding-bottom: 96px; }
}

@media (max-width: 640px) {
  .category-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .top-pick--slide { flex-basis: 100%; }
  .sticky-cta { flex-direction: column; }
  body.has-sticky-cta { padding-bottom: 140px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto; }
}
