/* Mozzie Proof — design system
   Night navy + UV violet + lime "glow" accent (coordinated with the hero's purple light).
   Fonts: Bricolage Grotesque (headings) + DM Sans (body). Body text 18px. */

:root {
  --ink: #0b1226;
  --ink-2: #141c3d;
  --ink-3: #1e2a5a;
  --violet: #5b34d6;
  --violet-600: #4a27b8;
  --violet-100: #ece7fc;
  --lav-50: #f6f3fd;
  --lime: #c6f24b;
  --lime-600: #b2df32;
  --text: #1c2340;
  --muted: #565e82;
  --line: #e2ddf3;
  --white: #ffffff;
  --danger: #b3261e;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(28, 20, 80, 0.08);
  --shadow-lg: 0 18px 50px rgba(28, 20, 80, 0.16);
  --font-head: 'Bricolage Grotesque', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 64px;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  padding-bottom: env(safe-area-inset-bottom);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--violet); text-underline-offset: 3px; }
a:hover { color: var(--violet-600); }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; color: var(--ink); margin: 0 0 0.6em; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
:focus-visible { outline: 3px solid var(--violet); outline-offset: 3px; border-radius: 6px; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section { padding: 56px 0; }
.section-title { font-size: clamp(1.75rem, 4.2vw, 2.55rem); font-weight: 700; margin-bottom: 0.5em; }
.section-lead { font-size: 1.1rem; color: var(--muted); max-width: 720px; }
.section-note { color: var(--muted); font-size: 1rem; margin-top: 24px; }
.eyebrow { font-family: var(--font-body); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--violet); margin-bottom: 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 52px; padding: 0 28px;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600; text-decoration: none;
  border-radius: 999px; border: 2px solid transparent; cursor: pointer; text-align: center;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--violet); color: var(--white); box-shadow: 0 8px 20px rgba(91, 52, 214, .3); }
.btn-primary:hover { background: var(--violet-600); color: var(--white); }
.btn-lime { background: var(--lime); color: var(--ink); box-shadow: 0 8px 24px rgba(198, 242, 75, .28); }
.btn-lime:hover { background: var(--lime-600); color: var(--ink); }
.btn-ghost { background: transparent; color: var(--violet); border-color: var(--violet); }
.btn-ghost:hover { background: var(--violet-100); color: var(--violet-600); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, .55); }
.btn-outline-light:hover { background: rgba(255, 255, 255, .12); color: var(--white); }
.btn-large { min-height: 56px; padding: 0 34px; font-size: 1.05rem; }
.btn-block { display: flex; width: 100%; }
.btn[disabled] { opacity: .65; cursor: progress; transform: none; }

/* ---------- Announcement bar + header ---------- */
.announce-bar { background: var(--ink-2); color: #d6d0f5; text-align: center; font-size: 0.85rem; padding: 8px 16px; }
.announce-bar p { margin: 0; }
.site-header { position: sticky; top: 0; z-index: 60; background: var(--ink); border-bottom: 1px solid rgba(255, 255, 255, .08); padding-top: env(safe-area-inset-top); }
.header-inner { max-width: 1180px; margin: 0 auto; padding: 0 20px; height: 68px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: var(--white); text-decoration: none; letter-spacing: -0.01em; }
.logo:hover { color: var(--white); }
.logo em { font-style: normal; color: var(--lime); }
.logo img { border-radius: 9px; }
.header-actions { display: flex; align-items: center; gap: 6px; }
.cart-link { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; color: var(--white); }
.cart-link:hover { color: var(--lime); }
.cart-icon { width: 26px; height: 26px; }
.cart-count { position: absolute; top: 6px; right: 4px; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 999px; background: var(--lime); color: var(--ink); font-size: 0.75rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.cart-count.bump { animation: bump .35s ease; }
@keyframes bump { 50% { transform: scale(1.35); } }
.hamburger { width: 52px; height: 52px; border: 0; background: transparent; display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .25s, opacity .25s; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.desktop-nav { display: none; }

.mobile-nav { position: fixed; inset: 0; z-index: 55; background: var(--ink); padding: calc(140px + env(safe-area-inset-top)) 28px 40px; opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s; overflow-y: auto; }
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-link { display: flex; align-items: center; min-height: 56px; font-family: var(--font-head); font-size: 1.7rem; font-weight: 600; color: var(--white); text-decoration: none; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.mobile-link:hover { color: var(--lime); }
.mobile-cta { margin-top: 24px; justify-content: center; background: var(--lime); color: var(--ink); border-radius: 999px; border: 0; }
.mobile-cta:hover { color: var(--ink); background: var(--lime-600); }

@media (min-width: 960px) {
  .hamburger { display: none; }
  .desktop-nav { display: flex; align-items: center; gap: 4px; margin-left: 18px; }
  .desktop-nav a { color: #dcd8f4; text-decoration: none; font-weight: 500; font-size: 0.98rem; padding: 12px 14px; border-radius: 999px; }
  .desktop-nav a:hover { color: var(--white); background: rgba(255, 255, 255, .08); }
  .desktop-nav .nav-cta { background: var(--lime); color: var(--ink); font-weight: 600; margin-left: 8px; padding: 12px 22px; }
  .desktop-nav .nav-cta:hover { background: var(--lime-600); color: var(--ink); }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; color: var(--white); background: var(--ink); }
.hero-media { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; opacity: .9; }
.hero-blend {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 70% at 82% 45%, rgba(124, 77, 255, .55), transparent 70%),
    linear-gradient(95deg, rgba(11, 18, 38, .97) 0%, rgba(11, 18, 38, .86) 48%, rgba(30, 20, 92, .55) 100%);
}
.hero-grid { position: relative; display: grid; gap: 20px; padding-top: 48px; padding-bottom: 56px; align-items: center; }
.hero .eyebrow { color: var(--lime); }
.hero-heading { font-size: clamp(2.3rem, 7vw, 3.9rem); font-weight: 800; line-height: 1.04; color: var(--white); letter-spacing: -0.02em; margin-bottom: 18px; }
.hero-sub { font-size: 1.15rem; color: #d8d3f6; max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 18px; }
.hero-trust { font-size: 0.95rem; color: #b9b3e2; margin: 0; }
.hero-visual { position: relative; height: 330px; }
.orb { position: absolute; border-radius: 50%; overflow: hidden; border: 3px solid rgba(255, 255, 255, .9); background: var(--white); box-shadow: 0 0 0 8px rgba(124, 77, 255, .22), 0 20px 60px rgba(91, 52, 214, .55); }
.orb img { width: 100%; height: 100%; object-fit: cover; }
.orb-1 { width: 190px; height: 190px; top: 0; right: 6%; }
.orb-2 { width: 150px; height: 150px; bottom: 6px; left: 8%; }
.orb-3 { width: 120px; height: 120px; bottom: 20px; right: 4%; }
.orb-4 { width: 100px; height: 100px; top: 40px; left: 22%; box-shadow: 0 0 0 6px rgba(198, 242, 75, .25), 0 12px 40px rgba(0, 0, 0, .4); }

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.1fr .9fr; padding-top: 84px; padding-bottom: 92px; gap: 30px; }
  .hero-visual { height: 470px; }
  .orb-1 { width: 290px; height: 290px; top: 0; right: 8%; }
  .orb-2 { width: 230px; height: 230px; bottom: 0; left: 0; }
  .orb-3 { width: 180px; height: 180px; bottom: 34px; right: 0; }
  .orb-4 { width: 140px; height: 140px; top: 90px; left: 4%; }
}

/* ---------- Trust strip ---------- */
.trust-band { background: var(--lav-50); border-bottom: 1px solid var(--line); }
.trust-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 12px; padding-top: 26px; padding-bottom: 26px; }
.trust-item { display: flex; flex-direction: column; font-size: 0.92rem; color: var(--muted); line-height: 1.35; }
.trust-num { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--ink); }
@media (min-width: 800px) { .trust-strip { grid-template-columns: repeat(4, 1fr); text-align: center; } }

/* ---------- Shop by need ---------- */
.need-section { background: var(--white); }
.need-grid { display: grid; gap: 18px; margin-top: 34px; grid-template-columns: 1fr; }
.need-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 14px 22px; text-decoration: none; color: var(--text); box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; }
.need-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: var(--text); }
.need-card img { border-radius: 12px; aspect-ratio: 1 / 1; object-fit: cover; width: 100%; background: var(--lav-50); }
.need-tag { margin: 16px 6px 4px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--violet); }
.need-card h3 { font-size: 1.25rem; margin: 0 6px 6px; }
.need-card p { margin: 0 6px 12px; font-size: 1rem; color: var(--muted); flex: 1; }
.need-link { margin: 0 6px; font-weight: 600; color: var(--violet); }
@media (min-width: 640px) { .need-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) {
  .need-grid { grid-template-columns: repeat(6, 1fr); }
  .need-card { grid-column: span 2; }
  .need-card:nth-child(4) { grid-column: 2 / span 2; }
  .need-card:nth-child(5) { grid-column: 4 / span 2; }
}

/* ---------- Shop grid ---------- */
.shop-grid-section { background: var(--lav-50); }
.shop-grid { display: grid; gap: 22px; margin-top: 30px; grid-template-columns: 1fr; }
.shop-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.shop-card-media-link { display: block; background: var(--white); }
.shop-card-media-link img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; }
.shop-card-body { padding: 8px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.shop-card-cat { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--violet); margin: 0 0 6px; }
.shop-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.shop-card-title-link { color: var(--ink); text-decoration: none; }
.shop-card-title-link:hover { color: var(--violet); }
.shop-card-price { font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; color: var(--ink); margin-bottom: 8px; }
.shop-card-currency { font-family: var(--font-body); font-size: 0.8rem; color: var(--muted); font-weight: 500; }
.shop-card-text { font-size: 1rem; color: var(--muted); flex: 1; }
.shop-card-meta { font-size: 0.9rem; color: var(--muted); margin-bottom: 16px; }
.shop-card-cta { align-self: flex-start; }
@media (min-width: 640px) { .shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .shop-grid { grid-template-columns: repeat(3, 1fr); } }
.shop-cat-title { font-size: 1.55rem; font-weight: 700; margin-top: 52px; scroll-margin-top: 100px; }
.shop-page .shop-grid { margin-top: 18px; }
.shop-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.chip { display: inline-flex; align-items: center; min-height: 44px; padding: 0 18px; border-radius: 999px; background: var(--white); border: 1px solid var(--line); color: var(--ink); text-decoration: none; font-weight: 500; font-size: 0.95rem; }
.chip:hover { border-color: var(--violet); color: var(--violet); }

/* ---------- Benefits / cards ---------- */
.benefit-grid, .review-grid, .how-grid { display: grid; gap: 20px; margin-top: 30px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .benefit-grid, .review-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .benefit-grid { grid-template-columns: repeat(4, 1fr); } .review-grid { grid-template-columns: repeat(4, 1fr); } .how-grid { grid-template-columns: repeat(3, 1fr); } }
.benefit-card, .review-card, .how-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow); }
.benefit-card h3, .review-card h3, .how-card h3 { font-size: 1.2rem; }
.benefit-card p, .review-card p, .how-card p { margin: 0; font-size: 1rem; color: var(--muted); }
.benefit-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--violet-100); color: var(--violet); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 14px; }
.benefits { background: var(--white); }
.highlights-section { background: var(--white); }
.reviews { background: var(--lav-50); }
.how-section { background: var(--ink); color: #d8d3f6; }
.how-section .section-title { color: var(--white); }
.how-section .section-lead { color: #b9b3e2; }
.how-section .eyebrow { color: var(--lime); }
.how-card { background: var(--ink-2); border-color: rgba(255, 255, 255, .1); box-shadow: none; }
.how-card h3 { color: var(--white); }
.how-card p { color: #c1bbe8; }
.how-card a { color: var(--lime); }
.how-step { display: inline-flex; width: 38px; height: 38px; border-radius: 50%; background: var(--lime); color: var(--ink); font-family: var(--font-head); font-weight: 800; align-items: center; justify-content: center; margin-bottom: 14px; }
.compare-wrap { margin-top: 36px; overflow-x: auto; border-radius: var(--radius); border: 1px solid rgba(255, 255, 255, .12); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; font-size: 1rem; color: #e5e1fb; }
.compare-table th, .compare-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.compare-table thead th { font-size: 0.8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--lime); background: var(--ink-2); }
.compare-table tbody th { font-weight: 600; }
.compare-table a { color: var(--white); }
.compare-table tr:last-child th, .compare-table tr:last-child td { border-bottom: 0; }

/* ---------- FAQ ---------- */
.faq { background: var(--white); }
.faq-list { max-width: 860px; margin-top: 28px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; background: var(--white); }
.faq-item[open] { border-color: var(--violet); box-shadow: var(--shadow); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 56px; padding: 10px 20px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--violet-100); color: var(--violet); font-size: 1.4rem; line-height: 30px; text-align: center; transition: transform .2s; }
.faq-item[open] summary::after { content: '–'; background: var(--violet); color: var(--white); }
.faq-item summary h3 { margin: 0; font-size: 1.05rem; font-weight: 600; line-height: 1.35; }
.faq-item p { margin: 0; padding: 0 20px 18px; color: var(--muted); font-size: 1.02rem; }

/* ---------- Mid CTA ---------- */
.mid-cta { background: var(--violet-100); padding: 44px 0; }
.mid-cta-inner { text-align: center; }
.mid-cta-inner .section-lead { margin: 0 auto 18px; }

/* ---------- Buying guide / legal ---------- */
.buying-guide { background: var(--lav-50); }
.guide-content { max-width: 800px; }
.guide-content h1 { font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 700; }
.guide-content h2 { font-size: clamp(1.6rem, 3.6vw, 2.2rem); font-weight: 700; margin-top: 1.6em; }
.guide-content h3 { font-size: 1.4rem; font-weight: 700; margin-top: 1.8em; }
.guide-content h4 { font-size: 1.1rem; font-weight: 700; color: var(--violet); margin-top: 1.4em; margin-bottom: .3em; }
.guide-content > h2:first-child, .guide-content > h1:first-child { margin-top: 0; }
.guide-content ul, .guide-content ol { padding-left: 1.3em; margin: 0 0 1.2em; }
.guide-content li { margin-bottom: .5em; }
.legal-page { background: var(--white); }
.legal-updated { color: var(--muted); font-size: .95rem; }

/* ---------- Company / contact / delivery ---------- */
.company-details-section { background: var(--white); }
.company-details-list { margin: 28px 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; max-width: 860px; }
.company-details-row { display: grid; gap: 4px; padding: 16px 22px; border-bottom: 1px solid var(--line); }
.company-details-row:last-child { border-bottom: 0; }
.company-details-row:nth-child(odd) { background: var(--lav-50); }
.company-details-row dt { font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--violet); }
.company-details-row dt small { text-transform: none; letter-spacing: 0; font-weight: 500; color: var(--muted); }
.company-details-row dd { margin: 0; color: var(--text); }
@media (min-width: 760px) { .company-details-row { grid-template-columns: 240px 1fr; align-items: baseline; } }
.contact-panel { display: grid; gap: 14px; max-width: 860px; margin: 8px 0 8px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .contact-panel { grid-template-columns: 1fr 1fr; } }
.contact-line { display: flex; flex-direction: column; gap: 2px; padding: 20px 22px; border-radius: var(--radius); background: var(--ink); color: var(--white); text-decoration: none; min-height: 52px; }
.contact-line:hover { background: var(--ink-3); color: var(--white); }
.contact-line-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--lime); font-weight: 600; }
.contact-line-value { font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; word-break: break-word; }
.delivery-title { font-size: 1.5rem; margin-top: 44px; }
.delivery-statement { font-size: 1.08rem; max-width: 780px; }
.delivery-section { background: var(--lav-50); }
.assurance-list { padding-left: 1.2em; max-width: 780px; color: var(--muted); }
.assurance-list li { margin-bottom: .6em; }

/* ---------- Final CTA ---------- */
.final-cta { background: linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 100%); color: #d8d3f6; text-align: center; }
.final-cta .section-title { color: var(--white); }
.final-cta .section-lead { color: #c1bbe8; margin: 0 auto 26px; }
.final-cta-inner { max-width: 760px; }
.final-trust { margin-top: 22px; font-size: .95rem; color: #b9b3e2; }
.final-trust a { color: var(--lime); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #b9b3e2; padding: 56px 0 90px; font-size: 1rem; }
.footer-inner { display: grid; gap: 28px; }
.footer-logo { margin-bottom: 12px; }
.footer-brand p { max-width: 380px; margin: 0; }
.footer-cols { display: grid; gap: 26px; grid-template-columns: 1fr 1fr; }
.footer-heading { font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--lime); font-family: var(--font-body); font-weight: 600; margin-bottom: 12px; }
.footer-cols a { display: block; color: #d6d0f5; text-decoration: none; padding: 6px 0; min-height: 34px; font-size: .98rem; }
.footer-cols a:hover { color: var(--white); text-decoration: underline; }
.footer-secure, .footer-company, .footer-copy { margin: 0; font-size: .92rem; }
.footer-company a { color: #d6d0f5; }
@media (min-width: 900px) { .footer-inner { grid-template-columns: 1.1fr 1.6fr; } .footer-cols { grid-template-columns: repeat(3, 1fr); } .footer-secure, .footer-company, .footer-copy { grid-column: 1 / -1; } .site-footer { padding-bottom: 56px; } }

/* ---------- Sticky CTA, toast, banners ---------- */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); background: rgba(11, 18, 38, .94); backdrop-filter: blur(8px); border-top: 1px solid rgba(255, 255, 255, .1); }
.sticky-cta .btn-primary { background: var(--lime); color: var(--ink); box-shadow: none; }
@media (min-width: 900px) { .sticky-cta { display: none !important; } }
.cart-toast { position: fixed; left: 16px; right: 16px; bottom: 90px; z-index: 80; max-width: 480px; margin: 0 auto; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 18px 20px; transform: translateY(30px); opacity: 0; pointer-events: none; transition: transform .25s, opacity .25s; }
.cart-toast.visible { transform: none; opacity: 1; pointer-events: auto; }
.cart-toast-message { margin: 0 0 12px; font-weight: 600; color: var(--ink); font-size: 1rem; }
.cart-toast-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cart-toast-btn { min-height: 48px; padding: 0 18px; border-radius: 999px; font-family: var(--font-body); font-weight: 600; font-size: .95rem; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; border: 2px solid var(--violet); }
.cart-toast-btn-primary { background: var(--violet); color: var(--white); }
.cart-toast-btn-primary:hover { color: var(--white); background: var(--violet-600); }
.cart-toast-btn-ghost { background: transparent; color: var(--violet); }
.checkout-banner { background: #fff4d6; color: #5c4400; text-align: center; padding: 12px 16px; font-size: .98rem; }
.cookie-banner { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 18px 20px; max-width: 760px; margin: 0 auto; }
.cookie-banner-inner p { margin: 0 0 14px; font-size: .95rem; color: var(--muted); }
.cookie-banner-actions { display: flex; gap: 10px; }
.cookie-banner-actions .btn { min-height: 48px; padding: 0 24px; }

/* ---------- Product page ---------- */
.product-top { padding-top: 24px; background: var(--white); }
.breadcrumb { font-size: .92rem; color: var(--muted); margin-bottom: 18px; display: flex; flex-wrap: wrap; gap: 4px 8px; }
.breadcrumb a { color: var(--muted); }
.details-grid { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .details-grid { grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: start; } .details-media { position: sticky; top: 100px; } }
.gallery-main { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.gallery-main img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; }
.gallery-thumbs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.gallery-thumb { width: 68px; height: 68px; padding: 0; border: 2px solid var(--line); border-radius: 12px; overflow: hidden; background: var(--white); cursor: pointer; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.is-selected { border-color: var(--violet); }
.product-title { font-size: clamp(1.8rem, 4.5vw, 2.6rem); font-weight: 700; margin-bottom: 10px; }
.product-price { font-family: var(--font-head); font-weight: 700; font-size: 2rem; color: var(--ink); margin: 0 0 4px; }
.price-currency { font-family: var(--font-body); font-size: .85rem; font-weight: 500; color: var(--muted); }
.delivery-note { color: #2b6d2f; font-weight: 600; font-size: 1rem; margin-bottom: 14px; }
.product-lead { margin-bottom: 22px; }
.pack-picker { border: 0; padding: 0; margin: 0 0 20px; }
.select-label { font-weight: 600; color: var(--ink); margin-bottom: 10px; display: block; padding: 0; font-size: 1rem; }
.pack-options { display: grid; gap: 10px; }
.pack-option { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 64px; padding: 12px 16px 12px 48px; border: 2px solid var(--line); border-radius: var(--radius-sm); cursor: pointer; background: var(--white); transition: border-color .15s, background .15s; }
.pack-option:hover { border-color: #b9a9f1; }
.pack-option.is-selected { border-color: var(--violet); background: var(--lav-50); }
.pack-option input { position: absolute; left: 16px; top: 50%; width: 20px; height: 20px; margin: -10px 0 0; accent-color: var(--violet); }
.pack-option-main { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 10px; }
.pack-option-label { font-weight: 600; color: var(--ink); font-size: 1rem; line-height: 1.3; }
.pack-badge { font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; background: var(--lime); color: var(--ink); padding: 3px 9px; border-radius: 999px; }
.pack-option-price { font-family: var(--font-head); font-weight: 700; color: var(--ink); text-align: right; font-size: 1.1rem; white-space: nowrap; }
.pack-option-price small { display: block; font-family: var(--font-body); font-weight: 500; color: var(--muted); font-size: .8rem; }
.payment-options { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.payment-btn { width: 100%; }
.buy-trust { list-style: none; padding: 0; margin: 20px 0 0; font-size: .95rem; color: var(--muted); }
.buy-trust li { padding: 5px 0; }
.checkout-error { margin: 14px 0 0; padding: 12px 16px; border-radius: 12px; background: #fdecea; color: var(--danger); font-size: .98rem; font-weight: 500; text-align: left; }
.specs-section { background: var(--lav-50); }
.specs-grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .specs-grid { grid-template-columns: 1fr 1fr; gap: 56px; } }
.steps-list { counter-reset: step; list-style: none; padding: 0; margin: 0 0 20px; }
.steps-list li { counter-increment: step; position: relative; padding: 4px 0 14px 52px; min-height: 40px; }
.steps-list li::before { content: counter(step); position: absolute; left: 0; top: 0; width: 36px; height: 36px; border-radius: 50%; background: var(--violet); color: var(--white); font-family: var(--font-head); font-weight: 700; display: flex; align-items: center; justify-content: center; }
.good-to-know { background: var(--white); border-left: 4px solid var(--lime-600); padding: 14px 18px; border-radius: 0 12px 12px 0; font-size: 1rem; color: var(--muted); }
.spec-table { margin: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.spec-row { display: grid; gap: 2px; padding: 14px 20px; border-bottom: 1px solid var(--line); }
.spec-row:last-child { border-bottom: 0; }
.spec-row dt { font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--violet); }
.spec-row dd { margin: 0; font-size: 1rem; }
@media (min-width: 560px) { .spec-row { grid-template-columns: 130px 1fr; } }
.related-section { background: var(--white); }

/* ---------- Cart ---------- */
.cart-section { min-height: 40vh; }
.cart-empty { padding: 20px 0; }
.cart-items { list-style: none; margin: 26px 0; padding: 0; display: grid; gap: 16px; max-width: 860px; }
.cart-item { display: flex; gap: 16px; padding: 16px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.cart-item-img { width: 92px; height: 92px; object-fit: contain; border-radius: 12px; background: var(--white); border: 1px solid var(--line); flex: none; }
.cart-item-body { flex: 1; min-width: 0; }
.cart-item-name { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--ink); text-decoration: none; }
.cart-item-meta, .cart-item-price { margin: 2px 0; font-size: .95rem; color: var(--muted); }
.cart-item-controls { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px; margin-top: 10px; }
.qty-stepper { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.qty-btn { width: 48px; height: 48px; border: 0; background: var(--lav-50); color: var(--violet); font-size: 1.4rem; cursor: pointer; }
.qty-btn:hover { background: var(--violet-100); }
.qty-value { min-width: 36px; text-align: center; font-weight: 600; }
.cart-item-remove { background: none; border: 0; color: var(--muted); text-decoration: underline; cursor: pointer; font-size: .95rem; min-height: 44px; padding: 0 6px; font-family: var(--font-body); }
.cart-item-subtotal { margin-left: auto; font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; }
.cart-summary { max-width: 860px; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 22px; background: var(--lav-50); }
.cart-summary-row { display: flex; justify-content: space-between; gap: 12px; padding: 6px 0; }
.cart-summary-row small { color: var(--muted); }
.cart-summary-total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 14px; font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; color: var(--ink); }
.cart-free-hint { margin: 10px 0 0; font-size: .95rem; color: #2b6d2f; font-weight: 500; }
.delivery-form { text-align: left; background: var(--white); color: var(--text); border-radius: var(--radius); padding: 26px 22px; max-width: 620px; margin: 8px auto 26px; box-shadow: var(--shadow-lg); }
.delivery-form-title { font-size: 1.25rem; margin-bottom: 16px; }
.delivery-form-title small { font-family: var(--font-body); font-weight: 500; color: var(--muted); font-size: .9rem; }
.form-row { margin-bottom: 14px; }
.form-row-split { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-row label, .form-row-split label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 6px; color: var(--ink); }
.form-optional { font-weight: 400; color: var(--muted); }
.delivery-form input, .delivery-form select { width: 100%; min-height: 52px; padding: 0 14px; border: 1.5px solid #cfc8ea; border-radius: 12px; font-family: var(--font-body); font-size: 1rem; background: var(--white); color: var(--text); }
.delivery-form input.touched:invalid, .delivery-form select.touched:invalid { border-color: var(--danger); background: #fff6f5; }
.form-note { margin: 4px 0 0; font-size: .88rem; color: var(--muted); }
.final-cta .payment-options { max-width: 620px; margin: 0 auto; }
.paypal-container { min-height: 52px; }
.final-cta .checkout-error { max-width: 620px; margin: 14px auto 0; }

/* ---------- Thank you ---------- */
.thank-you-section { text-align: center; min-height: 50vh; }
.thank-you-inner { max-width: 680px; }
.thank-you-icon { width: 76px; height: 76px; margin: 0 auto 20px; border-radius: 50%; background: var(--lime); color: var(--ink); font-size: 2.2rem; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.thank-you-inner .section-lead { margin-left: auto; margin-right: auto; }
.order-ref { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--violet); }
.thank-you-note { color: var(--muted); }
.thank-you-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 24px; }
.thank-you-section .final-trust { color: var(--muted); }
.thank-you-section .final-trust a { color: var(--violet); }

/* ---------- Motion ---------- */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-in { opacity: 1; transform: none; transition: none; }
  .btn, .need-card { transition: none; }
}

@media (min-width: 900px) { .section { padding: 84px 0; } }
