:root {
  --bg: #0b0e13;
  --bg-2: #10151d;
  --surface: rgba(18, 23, 31, 0.88);
  --surface-strong: #161c25;
  --surface-soft: rgba(255, 255, 255, 0.04);
  --text: #eef2f7;
  --muted: #98a2b3;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.12);
  --accent: #00d2aa;
  --accent-dark: #00ae8c;
  --accent-warm: #f1c97a;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 14px 34px rgba(0, 0, 0, 0.25);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --syne: 'Syne', sans-serif;
  --body: 'Plus Jakarta Sans', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  background:
    radial-gradient(circle at top left, rgba(0, 210, 170, 0.08), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(241, 201, 122, 0.06), transparent 22%),
    linear-gradient(180deg, #0b0e13 0%, #0d1117 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.bg-texture {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
  opacity: 0.5;
  mask-image: radial-gradient(circle at center, black 55%, transparent 100%);
  z-index: 0;
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
  opacity: 0.55;
  z-index: 0;
}

.bg-glow-a {
  width: 360px;
  height: 360px;
  top: 140px;
  right: -80px;
  background: rgba(0, 210, 170, 0.12);
}

.bg-glow-b {
  width: 280px;
  height: 280px;
  bottom: 120px;
  left: -80px;
  background: rgba(241, 201, 122, 0.08);
}

/* THE FIX: Excluded .overlay, .drawer, and .toast from this global relative positioning rule */
body > *:not(.bg-texture):not(.bg-glow):not(.overlay):not(.drawer):not(.toast) {
  position: relative;
  z-index: 1;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input {
  font: inherit;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.topbar {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255,255,255,.72);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.topbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 14, 19, .72);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand,
.footer-brand {
  font-family: var(--syne);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  transform: translateY(-8px);
  box-shadow: 0 0 18px rgba(0,210,170,.35);
}

.nav-links {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--text);
}

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

.icon-btn,
.cart-btn,
.btn {
  border: 0;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.icon-btn {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 11px 16px;
  border-radius: 999px;
}

.icon-btn:hover {
  border-color: rgba(0,210,170,.3);
  color: var(--text);
  box-shadow: 0 0 0 1px rgba(0,210,170,.08) inset;
}

.cart-btn {
  background: linear-gradient(180deg, #1a202a 0%, #11161f 100%);
  color: #fff;
  border-radius: 999px;
  padding: 11px 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-soft);
}

.cart-btn:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #212834 0%, #161c25 100%);
}

.cart-count {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  color: #0b0e13;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero {
  padding: 34px 0 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: stretch;
}

.hero-panel {
  background: linear-gradient(180deg, rgba(18,23,31,.95), rgba(14,18,25,.92));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(0,210,170,.10), transparent 35%);
  pointer-events: none;
}

.hero-copy {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 660px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 210, 170, 0.08);
  color: #9df1df;
  border: 1px solid rgba(0,200,162,.18);
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 22px;
  box-shadow: 0 0 0 1px rgba(0,210,170,.04) inset;
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(0,200,162,.45);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0,200,162,.45); }
  70% { box-shadow: 0 0 0 12px rgba(0,200,162,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,200,162,0); }
}

.hero-copy h1 {
  font-family: var(--syne);
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 0.98;
  letter-spacing: -.05em;
  max-width: 9.5ch;
  margin-bottom: 20px;
  text-shadow: 0 10px 40px rgba(0,0,0,.35);
}

.hero-copy p {
  max-width: 540px;
  font-size: 16px;
  color: rgba(238,242,247,.72);
  line-height: 1.8;
  margin-bottom: 30px;
}

.hero-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.btn {
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
}

.btn-dark {
  background: linear-gradient(180deg, #1a202a 0%, #11161f 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}

.btn-dark:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(0,0,0,.3);
}

.btn-light {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  color: var(--text);
}

.btn-light:hover {
  border-color: rgba(0,210,170,.25);
  background: rgba(0, 210, 170, 0.06);
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: auto;
}

.trust-card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: 0 1px 0 rgba(255,255,255,.04) inset;
}

.trust-card strong {
  display: block;
  font-family: var(--syne);
  font-size: 22px;
  margin-bottom: 5px;
  color: #fff;
}

.trust-card span {
  color: var(--muted);
  font-size: 12px;
}

.hero-visual {
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.hero-featured {
  background: linear-gradient(180deg, rgba(17,21,29,.96) 0%, rgba(24,29,39,.96) 100%);
  color: #fff;
  border-radius: calc(var(--radius-xl) - 8px);
  min-height: 410px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
}

.hero-featured::after {
  content: "";
  position: absolute;
  inset: auto -20% -25% auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,162,.18), rgba(0,200,162,0) 65%);
  pointer-events: none;
}

.feature-label {
  display: inline-flex;
  width: fit-content;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  z-index: 1;
}

.feature-art {
  position: relative;
  z-index: 1;
  font-size: 112px;
  line-height: 1;
  align-self: center;
  transform: translateY(8px);
  filter: drop-shadow(0 16px 24px rgba(0,0,0,.28));
}

.feature-meta {
  position: relative;
  z-index: 1;
}

.feature-meta h2 {
  font-family: var(--syne);
  font-size: 28px;
  letter-spacing: -.04em;
  margin-bottom: 8px;
}

.feature-meta p {
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.feature-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.feature-price span {
  font-family: var(--syne);
  font-size: 26px;
  font-weight: 800;
}

.feature-price button {
  border: 0;
  background: linear-gradient(180deg, var(--accent) 0%, #00b999 100%);
  color: #0b0e13;
  font-weight: 900;
  border-radius: 999px;
  padding: 11px 18px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,210,170,.20);
}

.feature-price button:hover {
  background: linear-gradient(180deg, #0ef0c0 0%, var(--accent) 100%);
  transform: translateY(-1px);
}

.mini-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.mini-card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-soft);
}

.mini-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.mini-card h3 {
  font-size: 14px;
  margin-bottom: 3px;
  color: #fff;
}

.mini-card span {
  color: var(--muted);
  font-size: 12px;
}

.trust-strip {
  padding: 18px 0 0;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 18px 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}

.section {
  padding: 82px 0 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 800;
  color: #a8b3c3;
  margin-bottom: 10px;
}

.section-kicker::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 20px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(0,210,170,.25);
}

.section-head h2 {
  font-family: var(--syne);
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.04;
  letter-spacing: -.04em;
  margin-bottom: 10px;
  color: #fff;
}

.section-head p {
  color: rgba(238,242,247,.68);
  font-size: 15px;
  line-height: 1.8;
  max-width: 620px;
}

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

.collection-card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.collection-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,200,162,.35);
  background: rgba(255,255,255,.05);
  box-shadow: 0 20px 50px rgba(0,0,0,.28);
}

.collection-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.collection-card h3 {
  font-family: var(--syne);
  font-size: 19px;
  margin-bottom: 8px;
  color: #fff;
}

.collection-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

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

.filter-chip {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 700;
  font-size: 12px;
}

.filter-chip.active,
.filter-chip:hover {
  background: linear-gradient(180deg, #1b222d 0%, #121720 100%);
  color: #fff;
  border-color: rgba(0,210,170,.22);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.product-card {
  background: linear-gradient(180deg, rgba(18,23,31,.96), rgba(14,18,25,.96));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(0,210,170,.08), transparent 30%);
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
  border-color: rgba(0,210,170,.22);
}

.product-card.hidden {
  display: none;
}

.product-image {
  position: relative;
  min-height: 240px;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.10), transparent 58%),
    linear-gradient(180deg, rgba(247,250,252,.96) 0%, rgba(237,242,246,.96) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 22px 22px;
}

.product-icon {
  font-size: 74px;
  line-height: 1;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.18));
  transform: translateY(4px);
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.badge.hot {
  background: var(--accent);
  color: #0b0e13;
}

.badge.new {
  background: #111318;
  color: #fff;
}

.product-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-rating {
  color: var(--accent-warm);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-align: left;
}

.product-body h3 {
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 10px;
  color: #fff;
}

.product-body p {
  color: rgba(238,242,247,.68);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 4px;
}

.product-footer strong {
  font-family: var(--syne);
  font-size: 22px;
  letter-spacing: -.03em;
  white-space: nowrap;
  color: #fff;
}

.product-footer button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: linear-gradient(180deg, var(--accent) 0%, #00b999 100%);
  color: #0b0e13;
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0,210,170,.18);
}

.product-footer button:hover {
  background: linear-gradient(180deg, #0ef0c0 0%, var(--accent) 100%);
  transform: translateY(-1px);
}

.benefit-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.benefit-card,
.review-card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-family: var(--syne);
  font-size: 18px;
  margin-bottom: 8px;
  color: #fff;
}

.benefit-card p {
  color: rgba(238,242,247,.68);
  font-size: 13px;
  line-height: 1.7;
}

.review-stars {
  color: var(--accent-warm);
  margin-bottom: 14px;
  letter-spacing: 1.5px;
}

.review-card p {
  color: rgba(238,242,247,.82);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 18px;
}

.review-author {
  font-weight: 800;
  color: #cfd6df;
  font-size: 13px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  box-shadow: var(--shadow-soft);
}

summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  color: #fff;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin-top: 12px;
  color: rgba(238,242,247,.68);
  font-size: 13px;
  line-height: 1.7;
}

.newsletter-box {
  background: linear-gradient(180deg, rgba(17,22,29,.98) 0%, rgba(14,18,25,.98) 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.newsletter-box p {
  color: rgba(255,255,255,.72);
  margin-top: 10px;
  line-height: 1.8;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  align-items: center;
}

.newsletter-form input {
  width: 260px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  color: #fff;
  border-radius: 999px;
  padding: 13px 16px;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,.45);
}

.footer {
  padding: 70px 0 26px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 22px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-inner p,
.footer-inner a {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
  display: block;
  margin-top: 8px;
}

.footer-inner h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 10px;
  color: #8e99aa;
}

.footer-bottom {
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 12px;
}

.payments {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.payments span {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
}

body.lock {
  overflow: hidden;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 8, 12, .62);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
  z-index: 200;
}

.overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  height: 100vh;
  background: linear-gradient(180deg, rgba(18,23,31,.98), rgba(14,18,25,.98));
  box-shadow: -20px 0 50px rgba(0,0,0,.24);
  z-index: 210;
  transform: translateX(102%);
  transition: transform .28s ease;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
}

.drawer.open {
  transform: translateX(0);
}

.drawer-head {
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-head h3 {
  font-family: var(--syne);
  font-size: 22px;
}

.drawer-head button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  cursor: pointer;
  color: #fff;
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 22px;
}

.empty-cart {
  text-align: center;
  padding: 72px 0;
  color: var(--muted);
}

.empty-cart div {
  font-size: 42px;
  margin-bottom: 12px;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.ci-img {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.ci-name {
  font-weight: 800;
  margin-bottom: 4px;
  color: #fff;
}

.ci-price {
  font-family: var(--syne);
  font-size: 18px;
  color: #fff;
  margin-bottom: 4px;
}

.ci-remove {
  background: none;
  border: 0;
  color: #8b95a3;
  font-size: 12px;
  cursor: pointer;
}

.drawer-foot {
  border-top: 1px solid var(--line);
  padding: 18px 22px 22px;
}

.subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.subtotal-row strong {
  font-family: var(--syne);
  font-size: 24px;
  color: #fff;
}

.checkout-btn {
  width: 100%;
  margin-top: 8px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%) translateY(28px);
  background: #121821;
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
  z-index: 300;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: auto;
  }

  .collection-grid,
  .product-grid,
  .benefit-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip-inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .newsletter-box {
    grid-template-columns: 1fr;
  }

  .newsletter-form input {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .nav-links {
    display: none;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .collection-grid,
  .product-grid,
  .benefit-grid,
  .review-grid,
  .trust-strip-inner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 28px;
  }

  .hero-featured {
    min-height: 360px;
  }

  .feature-art,
  .product-icon {
    font-size: 88px;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }

  .drawer {
    width: 100%;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }
}