/* Sea Moss — Design System */

:root {
  --paper: #FBF9F6;
  --mist: #FFFFFF;
  --ink: #0B1D1A;
  --ink-soft: #425551;
  --algae: #1B3F3A;
  --algae-deep: #091C18;
  --algae-soft: #E8F3EF;
  --berry: #C34A56;
  --berry-deep: #A13742;
  --berry-soft: #FCEFF0;
  --silver: #E1E5E4;
  --line: rgba(20, 58, 50, 0.08);
  --glass: rgba(255, 255, 255, 0.65);
  --shadow: 0 30px 60px -15px rgba(20, 58, 50, 0.12);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --max: 1280px;
  --font-display: "Alegreya", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
  cursor: none;
}
@media (hover: none), (pointer: coarse) { body { cursor: auto; } }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--berry-soft); color: var(--berry-deep); }

/* ===== SCROLL REVEAL (CSS-first, no flash) ===== */
/* Hidden from the very first paint so elements can never flicker in.
   JS adds .in via IntersectionObserver; a safety-net also forces .in. */
.reveal {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
/* Staggered groups — direct .reveal children in horizontal grids cascade in. */
.prod-grid .reveal,
.recog-grid .reveal,
.blog-grid .reveal {
  transition-delay: calc((var(--n, 1) - 1) * .09s);
}
.prod-grid  .reveal:nth-child(2),
.recog-grid .reveal:nth-child(2),
.blog-grid  .reveal:nth-child(2) { --n: 2; }
.prod-grid  .reveal:nth-child(3),
.recog-grid .reveal:nth-child(3),
.blog-grid  .reveal:nth-child(3) { --n: 3; }
.recog-grid .reveal:nth-child(4) { --n: 4; }
.recog-grid .reveal:nth-child(5) { --n: 5; }
.recog-grid .reveal:nth-child(6) { --n: 6; }
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; }
}

.serif {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.1;
}

.eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--berry);
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--berry); opacity: .6; }

/* ===== BUTTONS ===== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  padding: 1.05em 1.8em;
  border-radius: 100px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), background .5s var(--ease);
  will-change: transform;
}
.btn--primary {
  background: linear-gradient(135deg, var(--berry), var(--berry-deep));
  color: #fff;
  box-shadow: 0 18px 40px -16px rgba(195, 74, 86, .45);
}
.btn--primary:hover { box-shadow: 0 26px 50px -16px rgba(195, 74, 86, .6); transform: translateY(-2px); }
.btn--ghost {
  background: rgba(255, 255, 255, .5);
  color: var(--ink);
  border-color: var(--line);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .85); }
.btn .arr { transition: transform .5s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn--sm { padding: .7em 1.3em; font-size: .85rem; }

/* ===== CUSTOM CURSOR ===== */
.cursor, .cursor-dot {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor {
  width: 38px; height: 38px;
  border: 1px solid rgba(195, 74, 86, .5);
  background: radial-gradient(circle at 35% 30%, rgba(252, 239, 240, .4), rgba(252, 239, 240, 0) 65%);
  transition: width .35s var(--ease), height .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}
.cursor-dot { width: 5px; height: 5px; background: var(--berry); }
.cursor.is-active {
  width: 64px; height: 64px;
  background: radial-gradient(circle at 35% 30%, rgba(252, 239, 240, .6), rgba(252, 239, 240, 0) 70%);
  border-color: rgba(195, 74, 86, .25);
}
@media (hover: none), (pointer: coarse) { .cursor, .cursor-dot { display: none; } }

/* ===== ANNOUNCEMENT BAR ===== */
.announce-bar { background: var(--algae); color: #fff; overflow: hidden; padding: .5rem 0; position: relative; z-index: 199; }
.announce-track { display: flex; width: max-content; animation: announce-scroll 26s linear infinite; }
.announce-item { padding: 0 2rem; white-space: nowrap; font-size: .8rem; font-weight: 600; letter-spacing: .01em; display: inline-flex; align-items: center; gap: .4rem; }
.announce-logo { height: 20px; width: 20px; object-fit: contain; flex: none; }
@keyframes announce-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem clamp(1.2rem, 4vw, 3rem);
  transition: background .6s var(--ease), box-shadow .6s var(--ease), padding .6s var(--ease);
}
.nav.scrolled {
  background: rgba(251, 249, 246, .94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--line);
  padding-top: .6rem;
  padding-bottom: .6rem;
}
.nav.nav--solid {
  background: rgba(251, 249, 246, .95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.brand {
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  gap: .6em;
}
.brand-logo {
  height: 58px; width: auto; object-fit: contain; display: block;
  filter: drop-shadow(0 1px 8px rgba(0, 0, 0, .35));
  transition: height .6s var(--ease), filter .5s var(--ease);
}
.nav.scrolled .brand-logo, .nav.nav--solid .brand-logo {
  height: 46px;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, .12));
}
.brand-name {
  font-weight: 400; font-size: 1.3rem; letter-spacing: .04em;
  color: #fff; text-shadow: 0 1px 3px rgba(0, 0, 0, .45);
  transition: color .5s var(--ease), text-shadow .5s var(--ease);
}
.brand-name b { font-weight: 600; color: #F5D9DC; transition: color .5s var(--ease); }
.nav.scrolled .brand-name, .nav.nav--solid .brand-name { color: var(--ink); text-shadow: none; }
.nav.scrolled .brand-name b, .nav.nav--solid .brand-name b { color: var(--algae); }

.nav-links { display: flex; gap: 2rem; align-items: center; font-size: .92rem; }

/* Dropdown */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-trigger {
  display: flex; align-items: center; gap: .3rem;
  color: #fff; text-shadow: 0 1px 3px rgba(0, 0, 0, .45); font-weight: 600; cursor: default;
  transition: color .2s, text-shadow .5s var(--ease);
}
.nav-dropdown-trigger svg { transition: transform .25s var(--ease); margin-top: 1px; }
.nav.scrolled .nav-dropdown-trigger,
.nav.nav--solid .nav-dropdown-trigger { color: var(--ink-soft); text-shadow: none; }
.nav-dropdown:hover .nav-dropdown-trigger { color: #fff; }
.nav.scrolled .nav-dropdown:hover .nav-dropdown-trigger,
.nav.nav--solid .nav-dropdown:hover .nav-dropdown-trigger { color: var(--ink); }
.nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%;
  background: var(--paper); border: 1px solid var(--line); border-radius: 18px;
  box-shadow: 0 16px 48px rgba(11,29,26,.13); min-width: 210px;
  padding: .5rem; display: flex; flex-direction: column; gap: .2rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.nav-dropdown-menu::before {
  content: ''; position: absolute; bottom: 100%; left: 0; right: 0; height: 18px;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: flex; flex-direction: column; gap: .15rem;
  padding: .65rem .9rem; border-radius: 12px;
  color: var(--ink) !important; text-decoration: none;
  transition: background .18s;
}
.nav-dropdown-item::after { display: none !important; }
.nav-dropdown-item:hover { background: var(--algae-soft); }
.nav-dd-label { font-weight: 600; font-size: .9rem; color: var(--ink); }
.nav-dd-sub { font-size: .76rem; color: var(--ink-soft); }
.nav-dd-soon { font-size: .64rem; font-weight: 700; color: var(--algae); background: var(--algae-soft); padding: .15em .55em; border-radius: 100px; vertical-align: middle; }
.nav-links a {
  position: relative;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .45);
  transition: color .4s, text-shadow .5s var(--ease);
  font-weight: 600;
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--berry);
  transition: width .4s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav.scrolled .nav-links a, .nav.nav--solid .nav-links a { color: var(--ink-soft); text-shadow: none; }
.nav.scrolled .nav-links a:hover, .nav.nav--solid .nav-links a:hover { color: var(--ink); }
.nav .btn { padding: .7em 1.3em; font-size: .85rem; }
.nav-links a.btn--primary,
.nav.scrolled .nav-links a.btn--primary,
.nav.nav--solid .nav-links a.btn--primary { color: #fff; text-shadow: none; }

/* Actions group (cart + hamburger), always kept together on the right */
.nav-actions { display: flex; align-items: center; gap: 1.1rem; }

/* Cart icon */
.nav-cart { position: relative; display: flex; align-items: center; gap: .4rem; font-weight: 600; font-size: .9rem; background: none; border: none; padding: 0; cursor: pointer; color: #fff; }
.nav.scrolled .nav-cart, .nav.nav--solid .nav-cart { color: var(--ink); }
.nav-cart svg { width: 22px; height: 22px; }
.cart-badge {
  position: absolute; top: -6px; right: -8px;
  background: var(--berry); color: #fff;
  font-size: .6rem; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* Hamburger — трите линии се превръщат в X, когато менюто е отворено */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: .4rem; background: none; border: none; position: relative; z-index: 191; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: currentColor; transition: all .4s var(--ease); border-radius: 2px; }
.hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-mobile-overlay {
  display: none; position: fixed; inset: 0; z-index: 190;
  background: var(--paper); flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  font-size: 1.4rem; font-family: var(--font-display);
}
.nav-mobile-overlay.is-open { display: flex; }
.nav-mobile-inner { display: flex; flex-direction: column; align-items: center; gap: 1.7rem; text-align: center; padding: 2rem; }
.nav-mobile-link { color: var(--ink); font-weight: 600; transition: color .25s; }
.nav-mobile-link:hover { color: var(--algae); }
.nav-mobile-cta { margin-top: .8rem; }
@media (max-width: 900px) {
  .nav-links a { display: none; }
  .nav-dropdown { display: none; }
  .hamburger { display: flex; color: #fff; }
  .nav.scrolled .hamburger, .nav.nav--solid .hamburger { color: var(--ink); }
  .nav--menu-open .brand,
  .nav--menu-open .brand-name b,
  .nav--menu-open .brand small,
  .nav--menu-open .nav-cart,
  .nav--menu-open .hamburger { color: var(--ink); text-shadow: none; }
}

/* ===== HERO (video) ===== */
#hero { position: relative; height: 100vh; overflow: hidden; background: linear-gradient(180deg, #FBF9F6, #FCEFF0); }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; pointer-events: none; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(100deg, rgba(11, 29, 26, .82) 0%, rgba(11, 29, 26, .52) 36%, rgba(11, 29, 26, .16) 60%, transparent 76%),
    linear-gradient(0deg, rgba(11, 29, 26, .38) 0%, transparent 26%, transparent 78%, rgba(11, 29, 26, .22) 100%);
}
.hero-grid {
  position: relative; z-index: 5; height: 100%;
  max-width: var(--max); margin: 0 auto;
  padding: 6rem clamp(1.2rem, 4vw, 3rem) 3rem;
  display: flex; align-items: center;
}
.hero-copy { max-width: 34rem; }
.hero-copy .eyebrow { margin-bottom: 1.1rem; color: #F5D9DC; }
.hero-copy .eyebrow::before { background: #F5D9DC; }
.hero-h1 { font-size: clamp(2rem, 4.4vw, 3.7rem); margin-bottom: 1.1rem; color: #fff; text-shadow: 0 2px 24px rgba(0, 0, 0, .25); }
.hero-h1 .ln { display: block; overflow: hidden; }
.hero-h1 .ln span { display: block; will-change: transform; }
.hero-copy p { font-size: 1.02rem; color: rgba(255, 255, 255, .88); max-width: 28rem; margin-bottom: 1.6rem; line-height: 1.6; text-shadow: 0 1px 12px rgba(0, 0, 0, .2); }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
#hero .btn--ghost { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .4); backdrop-filter: blur(10px); }
#hero .btn--ghost:hover { background: rgba(255, 255, 255, .22); }
.hero-trust {
  display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; margin-top: 1.5rem;
  font-size: .82rem; font-weight: 600; color: rgba(255, 255, 255, .85); text-shadow: 0 1px 8px rgba(0, 0, 0, .25);
}
.hero-trust .stars { color: #F5D9DC; letter-spacing: .05em; }
.hero-trust .dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255, 255, 255, .5); flex: none; }
.scroll-hint {
  position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%);
  z-index: 8; display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255, 255, 255, .8); font-size: .68rem; letter-spacing: .24em; text-transform: uppercase;
}
.scroll-hint .mouse { width: 22px; height: 34px; border: 1px solid rgba(255, 255, 255, .6); border-radius: 14px; position: relative; }
.scroll-hint .mouse::after {
  content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 6px; border-radius: 3px; background: #fff;
  animation: wheel 1.8s var(--ease) infinite;
}
@keyframes wheel {
  0% { opacity: 0; transform: translate(-50%, 0); }
  30% { opacity: 1; }
  60% { opacity: 1; transform: translate(-50%, 8px); }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}
@media (max-width: 900px) {
  .hero-grid { text-align: center; justify-content: center; padding: 6rem clamp(1.2rem, 4vw, 3rem) 5.5rem; }
  .hero-copy { max-width: none; margin: 0 auto; }
  .hero-copy p { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-trust { justify-content: center; }
}

/* ===== GENERIC SECTION ===== */
.section {
  position: relative;
  padding: clamp(5rem, 12vh, 9rem) clamp(1.2rem, 4vw, 3rem);
  max-width: var(--max);
  margin: 0 auto;
}
.section-head { max-width: 42rem; margin-bottom: 3.5rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.2vw, 3.3rem); margin: 1.2rem 0 1rem; }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; max-width: 36rem; }
.section-head.center p { margin-left: auto; margin-right: auto; }
/* reveal initial state owned by GSAP — see app.js gsap.set('.reveal') */

/* ===== RECOGNIZE ===== */
.recognize-wrap { background: var(--algae-soft); }
.recog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.recog {
  position: relative; padding: 2rem 1.6rem; border-radius: 24px;
  background: var(--mist); border: 1px solid var(--line);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease); overflow: hidden;
}
.recog::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% -10%, rgba(195, 74, 86, .15), transparent 60%);
  opacity: 0; transition: opacity .6s var(--ease);
}
.recog:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.recog:hover::before { opacity: 1; }
.recog .ic {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 1.2rem;
  background: linear-gradient(135deg, rgba(252, 239, 240, .8), rgba(195, 74, 86, .15)); color: var(--berry-deep);
}
.recog .ic svg { width: 22px; height: 22px; }
.recog h3 { font-size: 1.12rem; font-weight: 600; margin-bottom: .4rem; }
.recog p { font-size: .92rem; color: var(--ink-soft); }
.recog--featured { background: var(--algae); border-color: var(--algae-deep); }
.recog--featured h3 { color: var(--paper); }
.recog--featured p { color: rgba(251, 249, 246, .72); }
.recog--featured .ic { background: rgba(255, 255, 255, .12); color: var(--paper); }
@media (max-width: 900px) { .recog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .recog-grid { grid-template-columns: 1fr; } }

/* ===== WHY ===== */
.why {
  background: radial-gradient(80% 60% at 100% 0, rgba(252, 239, 240, .5), transparent 60%), linear-gradient(180deg, #FBF9F6, #FCEFF0);
}
.why-inner {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(4rem, 9vh, 7rem) clamp(1.4rem, 4vw, 4rem);
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.why-visual { position: relative; height: 540px; border-radius: 30px; overflow: hidden; background: linear-gradient(170deg, #FCEFF0, #F7D2D6 40%, #EBA4AC); }
.why-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.why-visual::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg, rgba(20, 58, 50, .06), transparent 30%, transparent 70%, rgba(20, 58, 50, .22));
}
.why-visual .badge92 {
  position: absolute; top: 24px; left: 24px;
  background: rgba(255, 255, 255, .85); backdrop-filter: blur(6px);
  border-radius: 16px; padding: .8rem 1rem; box-shadow: 0 10px 24px -10px rgba(20, 58, 50, .2); z-index: 3;
}
.why-visual .badge92 b { font-family: var(--font-display); font-size: 1.6rem; color: var(--berry-deep); display: block; line-height: 1; }
.why-visual .badge92 span { font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); }
.why-list { list-style: none; margin-top: 2rem; }
.why-list li { display: flex; gap: 1rem; padding: 1.1rem 0; border-top: 1px solid var(--line); }
.why-list li:last-child { border-bottom: 1px solid var(--line); }
.why-list .n { font-family: var(--font-display); color: var(--berry); font-size: 1.1rem; flex: none; width: 2rem; }
.why-list h4 { font-weight: 600; margin-bottom: .2rem; }
.why-list p { color: var(--ink-soft); font-size: .92rem; }

.confidence-card {
  max-width: 960px; margin: 2.8rem auto 0; padding: 1.7rem clamp(1.2rem, 4vw, 2.6rem);
  background: var(--mist); border-radius: 24px; box-shadow: 0 24px 48px -30px rgba(20, 58, 50, .2);
}
.confidence-divider { height: 1px; background: var(--line); margin: 1.3rem 0; }
.plan-strip { display: flex; justify-content: center; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.plan-step { display: flex; align-items: center; gap: .6rem; font-size: .88rem; font-weight: 600; color: var(--ink); }
.plan-step b {
  flex: none; width: 1.6rem; height: 1.6rem; border-radius: 50%; background: var(--berry); color: #fff;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 400; font-size: .85rem;
}
.trust { display: flex; justify-content: center; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: .85rem; font-weight: 600; color: var(--ink-soft); }
.trust .stars { color: var(--berry); letter-spacing: .1em; }
.trust .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--line); flex: none; }
@media (max-width: 900px) { .why-inner { grid-template-columns: 1fr; } .why-visual { height: 400px; order: -1; } }

/* ===== PRODUCTS / HOME ===== */
.products { background: var(--paper); }
.prod-slider { position: relative; padding: 0 3.6rem; }
.prod-slider--compact { padding: 0; }
.prod-grid {
  display: flex; gap: 2rem; overflow-x: auto; margin-bottom: 3rem;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: .5rem .2rem 1.2rem; scrollbar-width: none;
}
.prod-grid::-webkit-scrollbar { display: none; }
.prod-grid--compact { justify-content: center; overflow: visible; flex-wrap: wrap; gap: 2.8rem; }
.prod-grid--compact .prod-card { flex: 0 0 420px; }
.prod-grid--compact .prod-card-img { min-height: 400px; padding: 2.6rem; }
.prod-grid--compact .prod-card-img img { height: 320px; }
.prod-card {
  flex: 0 0 360px; max-width: 86vw; scroll-snap-align: start;
  border-radius: 28px; background: var(--mist); border: 1px solid var(--line); overflow: hidden;
  display: flex; flex-direction: column;
  transition: opacity .85s var(--ease), transform .85s var(--ease), box-shadow .4s var(--ease);
}
.prod-card:hover { box-shadow: 0 32px 60px -24px rgba(20, 58, 50, .14); }
.prod-card-img { position: relative; background: radial-gradient(130% 110% at 40% 0, var(--berry-soft), #fff 68%); display: flex; align-items: center; justify-content: center; padding: 2rem; min-height: 340px; }
.badge-coming-soon {
  position: absolute; top: 1.2rem; left: 1.2rem; z-index: 2;
  background: var(--algae); color: #fff; font-size: .74rem; font-weight: 700;
  letter-spacing: .04em; padding: .4em .9em; border-radius: 100px;
}
.prod-card-img img { height: 280px; width: auto; object-fit: contain; filter: drop-shadow(0 14px 28px rgba(195, 74, 86, .18)); transition: transform .5s var(--ease); }
.prod-card:hover .prod-card-img img { transform: translateY(-7px) scale(1.04); }
.prod-card-body { padding: 1.8rem 2rem 2rem; display: flex; flex-direction: column; gap: .75rem; flex: 1; }
.prod-card-body h3 { font-family: var(--font-display); font-size: 1.35rem; margin: .15rem 0; }
.prod-card-body .tagline { color: var(--ink-soft); font-size: .94rem; line-height: 1.55; }
.prod-card-bullets { list-style: none; display: flex; flex-direction: column; gap: .48rem; margin: .2rem 0; }
.prod-card-bullets li { position: relative; padding-left: 1.1rem; font-size: .87rem; line-height: 1.45; color: var(--ink-soft); }
.prod-card-bullets li::before { content: ""; position: absolute; left: 0; top: .5em; width: 6px; height: 6px; border-radius: 50%; background: var(--berry); }
.prod-card-positioning { font-style: italic; font-size: .87rem; color: var(--ink-soft); margin: 0; }
.prod-card .btn { margin-top: auto; width: 100%; justify-content: center; }

/* ===== BENEFITS — „Приливът" (deep-sea tide) ===== */
.bene {
  position: relative;
  padding: clamp(5rem, 11vh, 8.5rem) 0;
  background: radial-gradient(130% 90% at 50% -10%, var(--algae) 0%, var(--algae-deep) 100%);
  color: var(--paper);
  overflow: hidden;
}
/* faint drifting light through water */
.bene::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(60% 40% at 78% 8%, rgba(232, 243, 239, .06), transparent 70%);
}
.bene-inner {
  position: relative; z-index: 1;
  max-width: 760px; margin: 0 auto;
  padding: 0 clamp(1.3rem, 5vw, 2rem);
  --tide-gutter: 3.5rem;
}

.bene-head { margin-bottom: clamp(2.5rem, 5vh, 3.6rem); padding-left: var(--tide-gutter); }
.bene-eyebrow {
  display: inline-block; margin-bottom: 1rem;
  font-size: .74rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase;
  color: var(--berry-soft);
}
.bene-head p { color: rgba(232, 243, 239, .7); font-size: 1rem; margin-top: .9rem; max-width: 32rem; }
.bene-title {
  font-size: clamp(1.7rem, 3.6vw, 2.7rem); font-weight: 500; line-height: 1.18;
  color: var(--paper);
}

/* Tide list + rising rail */
.tide { position: relative; }
.tide-rail {
  position: absolute; left: 3px; top: .6rem; bottom: .6rem; width: 2px;
  background: rgba(232, 243, 239, .13); border-radius: 2px;
}
.tide-fill {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, #E8F3EF 0%, #7FB3A6 45%, var(--berry) 100%);
  border-radius: 2px; box-shadow: 0 0 14px rgba(195, 74, 86, .55);
  transform: scaleY(0); transform-origin: top center;
  will-change: transform;
}
/* the water surface — a glowing bead at the leading edge */
.tide-bead {
  position: absolute; left: 50%; top: 0;
  transform: translate(-50%, -50%); width: 9px; height: 9px; border-radius: 50%;
  background: #EAF4F0; box-shadow: 0 0 16px 3px rgba(234, 244, 240, .7);
  will-change: top;
}

.tide-list { list-style: none; }
.tide-row {
  position: relative; display: flex; gap: 0;
  padding: 1.55rem 0 1.55rem var(--tide-gutter);
  border-bottom: 1px solid rgba(232, 243, 239, .1);
}
.tide-row:last-child { border-bottom: none; }
.tide-ic {
  position: absolute; left: 1.05rem; top: 1.7rem;
  width: 26px; height: 26px; display: grid; place-items: center;
  color: var(--algae-soft); opacity: .82;
}
.tide-ic svg { width: 22px; height: 22px; }
.tide-txt h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem); font-weight: 500; line-height: 1.25;
  color: var(--paper); margin-bottom: .35rem;
}
.tide-txt p { color: rgba(232, 243, 239, .6); font-size: .95rem; line-height: 1.6; max-width: 40rem; }
.tide-row--featured .tide-ic { color: var(--paper); opacity: 1; }
.tide-row--featured .tide-txt h3 { font-weight: 700; }

.bene-cta { margin-top: clamp(2.6rem, 5vh, 3.6rem); text-align: center; }

@media (prefers-reduced-motion: reduce) {
  .tide-fill { transform: scaleY(1) !important; }
  .tide-bead { top: 100% !important; }
}
@media (max-width: 560px) {
  .bene-inner { --tide-gutter: 2.9rem; }
  .tide-ic { left: .7rem; }
}

/* ===== PAUSE / PARALLAX ===== */
.pause {
  position: relative; margin: 0 clamp(.8rem, 3vw, 2rem) 2rem;
  border-radius: 44px; overflow: hidden; min-height: 480px;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.pause-img { position: absolute; inset: -145px; width: calc(100% + 290px); height: calc(100% + 290px); object-fit: cover; z-index: 0; will-change: transform; }
.pause::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(9, 28, 24, .6) 0%, rgba(9, 28, 24, .22) 38%, rgba(9, 28, 24, .3) 62%, rgba(9, 28, 24, .68) 100%); }
.pause-content { position: relative; z-index: 2; color: #fff; max-width: 34rem; padding: 2rem; }
.pause-content .eyebrow { justify-content: center; color: var(--berry-soft); }
.pause-content .eyebrow::before { background: var(--berry-soft); }
.pause-content h2 { font-size: clamp(1.8rem, 4.2vw, 3.1rem); margin-top: 1.2rem; line-height: 1.25; text-shadow: 0 2px 20px rgba(0, 0, 0, .3); }
@media (max-width: 768px) { .pause { min-height: 380px; } }

/* ===== TESTIMONIALS MARQUEE ===== */
.testi { overflow: hidden; background: radial-gradient(80% 60% at 100% 0, rgba(252, 239, 240, .5), transparent 60%), linear-gradient(180deg, #FBF9F6, #FCEFF0); }
.testi-fade { position: relative; }
.testi-fade::before, .testi-fade::after { content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 3; pointer-events: none; }
.testi-fade::before { left: 0; background: linear-gradient(90deg, #FCEFF0, transparent); }
.testi-fade::after { right: 0; background: linear-gradient(270deg, #FCEFF0, transparent); }
.marquee { display: flex; gap: 1.4rem; width: max-content; will-change: transform; }
.tcard { width: 360px; flex: none; padding: 2rem; border-radius: 24px; background: var(--mist); border: 1px solid var(--line); }
.tcard .stars { color: var(--berry); letter-spacing: .2em; margin-bottom: 1rem; font-size: .9rem; }
.tcard q { font-family: var(--font-display); font-size: 1.16rem; line-height: 1.45; display: block; margin-bottom: 1.4rem; color: var(--ink); }
.tcard .who { display: flex; align-items: center; gap: .8rem; }
.tcard .av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--berry-soft), var(--berry)); flex: none; display: grid; place-items: center; color: #fff; font-weight: 700; font-size: .9rem; overflow: hidden; }
.tcard .av img { width: 100%; height: 100%; object-fit: cover; }
.tcard .av svg { width: 20px; height: 20px; }
.tcard .who b { font-weight: 600; font-size: .92rem; }
.tcard .who span { display: block; font-size: .78rem; color: var(--ink-soft); }

/* ===== BLOG / JOURNAL ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.bcard { border-radius: 24px; overflow: hidden; background: var(--mist); border: 1px solid var(--line); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.bcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.bcard .ph { height: 190px; position: relative; overflow: hidden; background: var(--paper); }
.bcard .ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.bcard:hover .ph img { transform: scale(1.06); }
.bcard .bd { padding: 1.6rem; }
.bcard .cat { font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--berry); font-weight: 700; }
.bcard h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.28rem; margin: .7rem 0 .6rem; }
.bcard p { font-size: .9rem; color: var(--ink-soft); margin-bottom: 1rem; }
.bcard .rd { font-size: .84rem; color: var(--berry-deep); font-weight: 600; display: inline-flex; gap: .4em; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }

/* ===== FINAL CTA ===== */
.final {
  position: relative; text-align: center;
  margin: 0 clamp(.8rem, 3vw, 2rem) 2rem;
  border-radius: 44px; overflow: hidden;
  background: radial-gradient(90% 120% at 50% 0, var(--algae), var(--algae-deep));
  color: #fff; padding: clamp(5rem, 12vh, 8rem) 1.5rem;
}
.final h2 { font-size: clamp(2.1rem, 5.2vw, 3.8rem); max-width: 20ch; margin: 1.4rem auto 1.2rem; }
.final p { color: rgba(255, 255, 255, .78); max-width: 32rem; margin: 0 auto 2.4rem; }
.final .pair { display: flex; justify-content: center; gap: 2rem; margin-bottom: 2.6rem; flex-wrap: wrap; }
.final .eyebrow { color: var(--berry-soft); }
.final .eyebrow::before { background: var(--berry-soft); }
.final .btn--ghost { background: rgba(255, 255, 255, .14); color: #fff; border-color: rgba(255, 255, 255, .3); }
.final .btn--ghost:hover { background: rgba(255, 255, 255, .24); }
.final .guarantee { margin-top: 1.6rem; font-size: .82rem; color: rgba(255, 255, 255, .7); }

/* ===== FOOTER ===== */
.foot {
  max-width: var(--max); margin: 0 auto;
  padding: 3rem clamp(1.2rem, 4vw, 3rem) 4rem;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem;
  border-top: 1px solid var(--line); color: var(--ink-soft); font-size: .86rem;
}
.foot-brand .brand-logo { height: 52px; filter: none; }
.foot-brand p { margin-top: 1rem; font-size: .88rem; line-height: 1.6; max-width: 22rem; }
.foot-newsletter { margin-top: 1.8rem; max-width: 22rem; }
.foot-newsletter h5 { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; color: var(--ink); }
.foot-newsletter-form { display: flex; gap: .5rem; }
.foot-newsletter-form input[type="email"] {
  flex: 1; min-width: 0; padding: .7em 1em; border-radius: 100px;
  border: 1px solid var(--line); background: var(--mist); font-size: .86rem; color: var(--ink);
}
.foot-newsletter-form input[type="email"]:focus { outline: none; border-color: var(--algae); }
.foot-newsletter-form button {
  flex: none; width: 40px; height: 40px; border-radius: 50%; border: none;
  background: var(--algae); color: #fff; cursor: pointer;
  display: grid; place-items: center; transition: background .2s;
}
.foot-newsletter-form button:hover { background: var(--algae-deep); }
.foot-newsletter-msg { font-size: .82rem; margin-bottom: .6rem; }
.foot-newsletter-msg--ok { color: var(--algae); font-weight: 600; }
.foot-newsletter-msg--err { color: var(--berry); font-weight: 600; }
.foot-col h5 { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; color: var(--ink); margin-bottom: 1.2rem; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.foot-col ul a:hover { color: var(--ink); }
.foot-bottom {
  max-width: var(--max); margin: 0 auto;
  padding: 1.2rem clamp(1.2rem, 4vw, 3rem) 2rem;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem; color: var(--ink-soft); flex-wrap: wrap; gap: .5rem;
}
@media (max-width: 900px) { .foot { grid-template-columns: 1fr 1fr; } .foot-brand { grid-column: 1 / -1; } }
@media (max-width: 560px) { .foot { grid-template-columns: 1fr; } }

/* ===== CART PAGE ===== */
.cart-page { min-height: 80vh; }
.cart-empty { text-align: center; padding: 5rem 1rem; display: flex; flex-direction: column; align-items: center; gap: 1.4rem; }
.cart-empty p { color: var(--ink-soft); font-size: 1.05rem; }
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 3rem; align-items: start; margin-top: 2.5rem; }
.cart-row {
  display: grid; grid-template-columns: 80px 1fr auto auto auto;
  gap: 1.2rem; align-items: center;
  padding: 1.2rem 0; border-bottom: 1px solid var(--line);
}
.cart-row-img { width: 80px; height: 80px; border-radius: 14px; overflow: hidden; background: var(--berry-soft); flex: none; }
.cart-row-img img { width: 100%; height: 100%; object-fit: contain; }
.cart-row-name { font-weight: 600; font-size: .98rem; display: block; margin-bottom: .2rem; }
.cart-row-label { font-size: .86rem; color: var(--ink-soft); display: block; }
.cart-row-bonus { font-size: .78rem; color: var(--berry-deep); display: block; margin-top: .2rem; }
.cart-row-free { font-size: .78rem; color: var(--algae); font-weight: 600; display: block; margin-top: .2rem; }
.cart-row-price { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; white-space: nowrap; }
.qty-form { display: flex; align-items: center; gap: 0; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.qty-btn { width: 32px; height: 36px; background: none; border: none; cursor: pointer; font-size: 1.1rem; color: var(--ink); display: grid; place-items: center; transition: background .2s; }
.qty-btn:hover { background: var(--berry-soft); }
.qty-input { width: 38px; height: 36px; border: none; text-align: center; font-size: .9rem; font-weight: 600; font-family: inherit; color: var(--ink); background: none; outline: none; }
.cart-remove { background: none; border: none; cursor: pointer; color: var(--silver); padding: .3rem; border-radius: 6px; display: grid; place-items: center; transition: color .2s; }
.cart-remove:hover { color: var(--berry); }
.cart-summary { background: var(--mist); border: 1px solid var(--line); border-radius: 24px; padding: 1.8rem; position: sticky; top: 100px; }
.cart-summary-row { display: flex; justify-content: space-between; align-items: center; padding: .6rem 0; font-size: .92rem; border-bottom: 1px solid var(--line); }
.cart-summary-total { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0 0; font-weight: 700; font-size: 1.1rem; }
.cart-trust { display: flex; align-items: center; gap: .6rem; font-size: .8rem; color: var(--ink-soft); margin-top: 1.2rem; justify-content: center; }
@media (max-width: 860px) {
  .cart-layout { grid-template-columns: 1fr; }
  .cart-row { grid-template-columns: 64px 1fr auto; grid-template-rows: auto auto; }
  .cart-row-price { grid-column: 3; grid-row: 1; }
  .cart-remove { grid-column: 3; grid-row: 2; }
  .cart-row-qty { grid-column: 2; grid-row: 2; }
}

/* ===== AUTOCOMPLETE ===== */
.autocomplete-wrap { position: relative; }
.ac-list {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0; z-index: 200;
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 12px 32px rgba(11,29,26,.12); overflow: hidden;
  display: none;
}
.ac-list.is-open { display: block; }
.ac-item {
  padding: .75rem 1rem; cursor: pointer; font-size: .9rem;
  transition: background .15s;
}
.ac-item:hover, .ac-item.is-active { background: var(--algae-soft); }
.ac-empty { color: var(--ink-soft); cursor: default; }
.ac-item:hover.ac-empty { background: transparent; }

/* ===== CHECKOUT PAGE ===== */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; column-gap: 3.5rem; row-gap: 1.5rem; align-items: start; margin-top: 2rem; }
.checkout-submit-block { grid-column: 1; }
.checkout-summary { background: var(--mist); border: 1px solid var(--line); border-radius: 24px; padding: 1.8rem; position: sticky; top: 100px; }
.co-fieldset { border: 1px solid var(--line); border-radius: 20px; padding: 1.6rem; margin-bottom: 1.4rem; }
.co-legend { font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); padding: 0 .4rem; }
.courier-choice { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: .4rem; }
.courier-option input { position: absolute; opacity: 0; width: 0; height: 0; }
.courier-card {
  display: flex; justify-content: space-between; align-items: center;
  padding: .9rem 1.1rem; border-radius: 14px; border: 1.5px solid var(--line);
  cursor: pointer; transition: border-color .25s, background .25s;
}
.courier-option input:checked ~ .courier-card { border-color: var(--algae); background: var(--algae-soft); }
.courier-option { position: relative; }
.courier-price { font-weight: 700; font-size: .9rem; }
.co-item { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; padding: .7rem 0; }
.co-item + .co-item { border-top: 1px solid var(--line); }
.co-item-name { font-weight: 600; font-size: .9rem; display: block; }
.co-item-label { font-size: .82rem; color: var(--ink-soft); display: block; }
.co-item-price { white-space: nowrap; font-weight: 600; font-size: .92rem; }
.co-success-box { border: 1px solid var(--line); border-radius: 20px; overflow: hidden; text-align: left; }
.co-success-row { display: flex; justify-content: space-between; align-items: center; padding: .9rem 1.4rem; font-size: .9rem; border-bottom: 1px solid var(--line); gap: 1rem; }
.co-success-row:last-child { border-bottom: none; }
.co-success-row--stack { flex-direction: column; align-items: flex-start; gap: .3rem; }
.co-success-row--stack .co-success-value { color: var(--ink-soft); line-height: 1.5; }
.co-success-row--total { font-size: 1.02rem; }
.co-success-amount { font-weight: 700; font-size: 1.4rem; font-family: var(--font-display); color: var(--algae); }
/* ===== POST-PURCHASE UPSELL ===== */
.upsell-offer {
  max-width: 640px; margin: 0 auto; padding: 2rem clamp(1.4rem, 4vw, 2.4rem);
  border-radius: 24px; border: 1px solid rgba(195, 74, 86, .25);
  background: var(--berry-soft); text-align: center;
}
.upsell-timer { display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1.1rem; }
.upsell-timer-label { font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--berry-deep); }
.upsell-timer-clock { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--berry-deep); background: #fff; border-radius: 10px; padding: .2em .6em; }
.upsell-offer h3 { font-size: clamp(1.15rem, 2.6vw, 1.5rem); margin-bottom: .5rem; }
.upsell-offer h3 b { color: var(--berry-deep); }
.upsell-sub { color: var(--ink-soft); font-size: .9rem; margin-bottom: 1.6rem; }
.upsell-packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
@media (max-width: 560px) {
  .upsell-packages { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
  /* Ако пакетите са точно 3, третият пада на ред 2 сам — центрираме го вместо да виси вляво */
  .upsell-package-form:last-child:nth-child(3) { grid-column: 1 / -1; max-width: calc(50% - .3rem); margin: 0 auto; }
}
.upsell-package-form { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1.1rem 1rem; display: flex; flex-direction: column; gap: .6rem; }
.upsell-pkg-img { width: 100%; height: 90px; border-radius: 10px; background: var(--paper); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.upsell-pkg-img img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.upsell-pkg-label { font-weight: 700; font-size: .92rem; }
.upsell-pkg-price { display: flex; align-items: baseline; justify-content: center; gap: .5rem; }
.upsell-pkg-price .old { text-decoration: line-through; color: var(--ink-soft); font-size: .85rem; }
.upsell-pkg-price .now { color: var(--berry-deep); font-weight: 700; font-size: 1.15rem; font-family: var(--font-display); }

.field-error-msg { font-size: .78rem; color: var(--berry); margin-top: -.1rem; }
.contact-input.has-error, .contact-input.has-error:focus { border-color: var(--berry); }
@media (max-width: 900px) {
  .checkout-layout { grid-template-columns: 1fr; }
  /* position:sticky е само за desktop sidebar-а — на мобилно summary-то
     следва формата в нормален ред, sticky не е нужно и би пречило. */
  .checkout-summary { position: static; }
  .courier-choice { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) { .courier-choice { grid-template-columns: 1fr; } }

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
  max-width: 1100px;
}
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field-wrap { display: flex; flex-direction: column; gap: .4rem; }
.field-label { font-size: .82rem; font-weight: 600; color: var(--ink); }
.contact-input {
  width: 100%; padding: .85em 1.1em; border-radius: 12px;
  border: 1.5px solid var(--line); background: var(--mist);
  font-family: inherit; font-size: .95rem; color: var(--ink);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
  outline: none;
}
.contact-input:focus { border-color: var(--algae); box-shadow: 0 0 0 3px rgba(27,63,58,.08); }
.contact-input.textarea { resize: vertical; min-height: 140px; }
.cinfo-card {
  display: flex; gap: 1.2rem; padding: 1.4rem 1.6rem;
  border-radius: 20px; border: 1px solid var(--line); background: var(--mist);
  margin-bottom: 1rem; align-items: flex-start;
}
.cinfo-icon {
  width: 42px; height: 42px; border-radius: 12px; flex: none;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--algae-soft), rgba(27,63,58,.12));
  color: var(--algae);
}
.cinfo-card h4 { font-size: .9rem; font-weight: 600; margin-bottom: .25rem; }
.cinfo-card a { color: var(--ink-soft); font-size: .9rem; }
.cinfo-card a:hover { color: var(--ink); }
.cinfo-card p { font-size: .82rem; color: var(--ink-soft); margin-top: .2rem; }
.cinfo-guarantee {
  display: flex; align-items: center; gap: .7rem; padding: 1rem 1.4rem;
  border-radius: 14px; background: var(--algae-soft); color: var(--algae);
  font-size: .86rem; font-weight: 600; margin-top: .5rem;
}
@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-row-2 { grid-template-columns: 1fr; }
}

/* ===== PRODUCT DETAIL PAGE ===== */
.prod-hero-wrap { position: relative; overflow: hidden; background: var(--paper); padding-top: 80px; }
.prod-hero-wrap::before {
  content: ""; position: absolute; inset: -15%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(38% 46% at 12% 18%, rgba(195, 74, 86, .16), transparent 70%),
    radial-gradient(42% 50% at 92% 6%, rgba(27, 63, 58, .18), transparent 70%),
    radial-gradient(55% 60% at 50% 105%, rgba(232, 243, 239, .95), transparent 70%);
  filter: blur(50px);
}
.prod-hero {
  position: relative; z-index: 1;
  padding: 4rem clamp(1.2rem, 4vw, 3rem) 5rem;
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: flex-start;
}
.prod-hero-img-wrap { position: relative; }
.prod-hero-img {
  position: relative;
  background: radial-gradient(130% 120% at 40% 10%, var(--berry-soft), #fff 65%);
  border-radius: 32px; border: 1px solid var(--line);
  box-shadow: 0 40px 70px -36px rgba(20, 58, 50, .25);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; padding: 2rem; height: 420px;
}
.prod-main-img {
  width: 100%; height: 300px; max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(195, 74, 86, .22));
  transition: opacity .35s ease;
  flex: 1;
}

/* Thumbnail strip — хоризонтален ред под основната снимка */
.prod-thumbs {
  display: flex; flex-direction: row; gap: .7rem; justify-content: center;
  flex: none;
}
.prod-thumb {
  width: 56px; height: 56px; padding: 0; flex: none;
  border-radius: 14px; border: 2px solid transparent; overflow: hidden;
  background: #fff; cursor: pointer;
  transition: border-color .25s, transform .25s;
}
.prod-thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }
.prod-thumb.is-active { border-color: var(--berry); }
.prod-thumb:hover:not(.is-active) { transform: scale(1.06); }

.hero-rating-badge {
  position: absolute; top: 20px; left: 20px; z-index: 2;
  background: rgba(255, 255, 255, .92); backdrop-filter: blur(6px);
  border-radius: 16px; padding: .65rem 1rem; box-shadow: 0 14px 30px -14px rgba(20, 58, 50, .28);
  display: flex; flex-direction: column; gap: .15rem;
}
.hero-rating-badge .stars { color: var(--berry); font-size: .82rem; letter-spacing: .05em; }
.hero-rating-badge .sub { font-size: .62rem; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; }

.prod-hero-copy .eyebrow { margin-bottom: 1.4rem; }
.prod-hero-copy h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1rem; }
.prod-hero-copy > p { color: var(--ink-soft); font-size: 1.05rem; max-width: 30rem; margin-bottom: 1.8rem; line-height: 1.6; }
.flavours { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 2rem; }
.flavours span { font-size: .8rem; font-weight: 600; padding: .35em .9em; border-radius: 100px; background: var(--berry-soft); color: var(--berry-deep); }
.hero-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.4rem; }
.badge { font-size: .75rem; font-weight: 600; padding: .3em .8em; border-radius: 100px; background: rgba(195, 74, 86, .08); color: var(--berry-deep); border: 1px solid rgba(195, 74, 86, .15); }
@media (max-width: 768px) {
  /* По-компактен hero, за да не изисква скрол, за да се види CTA бутонът */
  .prod-hero { grid-template-columns: 1fr; gap: 1.25rem; padding: 1.5rem clamp(1.2rem, 4vw, 3rem) 2.5rem; }
  .prod-hero-img { height: 190px; padding: 1rem; gap: .5rem; }
  .prod-main-img { height: 108px; }
  .prod-thumb { width: 36px; height: 36px; border-radius: 10px; }
  .prod-hero-copy .breadcrumbs { margin-bottom: .7rem; }
  .prod-hero-copy .eyebrow { margin-bottom: .7rem; }
  .prod-hero-copy h1 { margin-bottom: .5rem; }
  .prod-hero-copy > p { margin-bottom: 1rem; }
  .flavours { margin-bottom: 1.2rem; }
}

/* ── Variant picker modal ── */
.vm {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.vm.open { opacity: 1; pointer-events: all; }
.vm-overlay {
  position: absolute; inset: 0;
  background: rgba(9, 28, 24, .6);
  backdrop-filter: blur(8px);
}
.vm-card {
  position: relative; z-index: 1;
  background: #fff; border-radius: 28px;
  padding: 2.2rem; width: min(440px, 92vw);
  box-shadow: 0 40px 100px -20px rgba(9, 28, 24, .4);
  transform: scale(.9) translateY(16px);
  transition: transform .35s cubic-bezier(.34,1.4,.64,1);
}
.vm.open .vm-card { transform: scale(1) translateY(0); }
.vm-close {
  position: absolute; top: 1.1rem; right: 1.1rem;
  background: var(--paper); border: none; border-radius: 50%;
  width: 34px; height: 34px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft); transition: background .2s, color .2s;
}
.vm-close:hover { background: var(--berry-soft); color: var(--berry); }
.vm-header { display: flex; align-items: center; gap: 1.1rem; margin-bottom: 1.6rem; }
.vm-img {
  width: 76px; height: 76px; border-radius: 18px; flex-shrink: 0;
  background: var(--berry-soft); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
}
.vm-img img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.vm-title { font-size: 1.15rem; margin: 0 0 .25rem; line-height: 1.2; }
.vm-pkg-label { font-size: .82rem; color: var(--ink-soft); margin: 0; font-weight: 600; }
.vm-sub { font-size: .85rem; color: var(--ink-soft); margin: 0 0 1.1rem; }
.vm-selects { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.8rem; }
.vm-select-row { display: flex; flex-direction: column; gap: .3rem; }
.vm-select-row label {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: var(--ink-soft);
}
.vm-select {
  width: 100%; padding: .75rem 2.5rem .75rem 1rem;
  border: 1.5px solid var(--line); border-radius: 12px;
  background: var(--paper); color: var(--ink);
  font-size: .95rem; font-family: var(--font-body);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230B1D1A' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  cursor: pointer; transition: border-color .2s, box-shadow .2s;
}
.vm-select:focus { outline: none; border-color: var(--algae); box-shadow: 0 0 0 3px rgba(27,63,58,.1); }
.vm-select:hover { border-color: var(--algae-soft); }

/* Features */
.features { background: var(--paper); padding: 5rem clamp(1.2rem, 4vw, 3rem); }
.features-inner { max-width: var(--max); margin: 0 auto; }
.features-inner h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: .8rem; text-align: center; }
.features-inner .sub { color: var(--ink-soft); text-align: center; max-width: 36rem; margin: 0 auto 4rem; }

/* grid-auto-rows е фиксирана стойност (не fr/minmax) — grid stretch дава на всяка клетка
   реална, дефинирана височина, иначе object-fit:cover няма спрямо какво да crop-не снимката
   и всяка клетка пада на естествения aspect ratio на своята снимка (различна за всяка). */
/* grid-template-areas вместо прости колони — редовете имат РАЗЛИЧНО съотношение (ред 1: широко ляво/
   тясно дясно; ред 2: обратно), иначе двата реда изглеждат като еднакви по размер карти една върху друга. */
.bento-grid {
  display: grid; grid-template-columns: repeat(10, 1fr); grid-auto-rows: 300px; gap: .9rem;
  grid-template-areas: "a a a a a a b b b b" "c c c c d d d d d d";
}
.bento-item:nth-child(1) { grid-area: a; }
.bento-item:nth-child(2) { grid-area: b; }
.bento-item:nth-child(3) { grid-area: c; }
.bento-item:nth-child(4) { grid-area: d; }
.bento-item { position: relative; border-radius: 20px; overflow: hidden; border: 1px solid var(--line); }
.bento-media { background: var(--algae-soft); }
.bento-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.bento-caption h4 { font-family: var(--font-display); font-size: 1.08rem; font-weight: 700; color: var(--ink); margin-bottom: .4rem; }
.bento-caption p {
  font-size: .85rem; line-height: 1.5; color: var(--ink-soft);
  /* без max-width в ch — по-тясна колона означава повече редове пренасяне, а фиксираните
     300px клетки нямат резерв по височина. Пълната налична ширина на клетката е нужна,
     за да се събере реалният текст без съкращаване. line-clamp остава само като предпазител
     за много по-дълъг текст занапред, не като нормален режим на работа. */
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 5; overflow: hidden;
}

/* overlay: снимка на цялата клетка, текст върху scrim в долния край (единствената клетка с бял текст — седи върху снимката, не върху фона на секцията).
   position:absolute вместо grid-area:1/1 стакинг — .bento-item вече има position:relative и дефинирана
   височина (grid stretch), така че media/caption имат недвусмислена рамка да се позиционират спрямо нея. */
.bento-overlay .bento-media { position: absolute; inset: 0; height: auto; }
.bento-overlay .bento-caption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 2.4rem 1.5rem 1.3rem;
  /* градиентът е върху самия caption (не върху цялата снимка) — расте с текста, вместо да гадае
     фиксиран % от височината на клетката, който да не съвпадне с реалната височина на текста. */
  background: linear-gradient(to top, rgba(9,28,24,.96) 0%, rgba(9,28,24,.9) 55%, transparent 100%);
}
.bento-overlay .bento-caption h4, .bento-overlay .bento-caption p { color: var(--paper); }
.bento-overlay .bento-caption p { opacity: .9; }

/* top: снимка отгоре (запълва каквото остане), текст отдолу с естествена височина — не се реже при по-дълъг текст */
.bento-top { display: flex; flex-direction: column; }
.bento-top .bento-media { flex: 1 1 auto; min-height: 100px; }
.bento-top .bento-caption { flex: 0 0 auto; padding: 1.1rem 1.3rem; }

/* split: снимка отляво, текст отдясно */
.bento-split { display: flex; }
.bento-split .bento-media { flex: 0 0 42%; }
.bento-split .bento-caption { flex: 1; padding: 1.3rem; display: flex; flex-direction: column; justify-content: center; }
/* огледален split — текст ляво, снимка дясно. Същия прозорец за снимката (същите пропорции,
   crop-ва добре), но визуално различен от .bento-split, вместо да изглежда еднакво. */
.bento-split.bento-reverse { flex-direction: row-reverse; }

@media (max-width: 900px) {
  /* на мобилно всяка клетка е сама в реда си — не й трябва фиксирана обща височина,
     само снимковата зона получава фиксирана височина, текстът расте свободно под/до нея. */
  .bento-grid { grid-template-columns: 1fr; grid-template-areas: none; grid-auto-rows: auto; }
  .bento-item:nth-child(1), .bento-item:nth-child(2), .bento-item:nth-child(3), .bento-item:nth-child(4) { grid-area: auto; }
  .bento-media { height: 190px; }
  .bento-top .bento-media, .bento-top .bento-caption { flex: 0 0 auto; }
  .bento-split, .bento-split.bento-reverse { flex-direction: column; }
  .bento-split .bento-media { flex: 0 0 auto; }
  /* overlay е различен случай: media и caption са position:absolute (извън normal flow),
     затова .bento-item не получава височина от съдържанието си и без явна стойност пропада до 0. */
  .bento-overlay { height: 280px; }
}

/* Minerals */
.minerals { background: var(--algae-soft); padding: 5rem clamp(1.2rem, 4vw, 3rem); }
.minerals-inner { max-width: var(--max); margin: 0 auto; }
.minerals-inner > .eyebrow { justify-content: center; display: inline-flex; width: 100%; margin-bottom: .8rem; color: var(--berry); }
.minerals-inner > .eyebrow::before { background: var(--berry); }
.minerals-inner h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: .6rem; text-align: center; }
.minerals-inner .sub { color: var(--ink-soft); text-align: center; max-width: 34rem; margin: 0 auto 3rem; }
.min-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.1rem; }
.min-card { background: var(--mist); border: 1px solid var(--line); border-radius: 18px; padding: 1.5rem 1.3rem; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease); }
.min-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px -20px rgba(27, 63, 58, .24); border-color: rgba(27, 63, 58, .3); }
.min-icon { width: 42px; height: 42px; border-radius: 12px; background: var(--algae-soft); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.min-icon svg { width: 20px; height: 20px; color: var(--algae); }
.min-card h4 { font-size: 1.02rem; font-weight: 700; margin-bottom: .45rem; }
.min-card p { font-size: .86rem; color: var(--ink-soft); line-height: 1.5; }
.min-more { margin: 2.4rem auto 0; max-width: 40rem; text-align: center; color: var(--ink-soft); font-size: .9rem; line-height: 1.6; }

/* How to use */
.how { padding: 5rem clamp(1.2rem, 4vw, 3rem); max-width: var(--max); margin: 0 auto; text-align: center; }
.how .eyebrow { justify-content: center; }
.how h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 2.5rem; }
.how-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; text-align: left; }
.step { display: flex; flex-direction: column; gap: .6rem; }
.step-img { width: 100%; height: 160px; object-fit: cover; border-radius: 18px; margin-bottom: .4rem; }
.step-n {
  display: block; font-family: var(--font-display); font-weight: 500; line-height: .8;
  font-size: clamp(3rem, 5vw, 4.5rem); color: rgba(195, 74, 86, .18); margin-bottom: .3rem;
}
.step h4 { font-weight: 700; }
.step p { font-size: .9rem; color: var(--ink-soft); line-height: 1.55; }

/* Bundles */
.bundles { background: linear-gradient(180deg, var(--paper), var(--berry-soft) 80%); padding: 5rem clamp(1.2rem, 4vw, 3rem); }
.bundles-inner { max-width: var(--max); margin: 0 auto; }
.bundles-inner .section-head { max-width: 36rem; margin: 0 auto 3rem; text-align: center; }
.bundles-inner h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin: .8rem 0; }
.bundle-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.bundle-row--single { grid-template-columns: minmax(280px, 380px); justify-content: center; }
.bundle {
  position: relative; border-radius: 24px; padding: 1.8rem 1.6rem;
  background: #fff; border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: .6rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.bundle:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.bundle.feat { border-color: var(--berry); box-shadow: 0 20px 44px -20px rgba(195, 74, 86, .35); }
.bundle.feat::after { content: "Най-поръчвано"; position: absolute; top: 0; right: 1.2rem; background: linear-gradient(135deg, var(--berry), var(--berry-deep)); color: #fff; font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .35em .85em; border-radius: 0 0 10px 10px; }
.b-img { width: 100%; height: 150px; display: flex; align-items: center; justify-content: center; margin-bottom: .4rem; }
.b-img img { max-height: 100%; width: auto; object-fit: contain; filter: drop-shadow(0 14px 22px rgba(20, 58, 50, .16)); }
.b-badge { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--berry); margin-bottom: .3rem; }
.b-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; }
.b-sub { font-size: .85rem; color: var(--ink-soft); line-height: 1.45; }
.b-price { display: flex; align-items: baseline; gap: .5rem; margin: .4rem 0; }
.b-price .now { font-size: 1.7rem; font-weight: 700; font-family: var(--font-display); }
.b-price .old { font-size: .9rem; color: var(--ink-soft); text-decoration: line-through; }
.b-save { font-size: .75rem; color: var(--berry); font-weight: 700; }
.b-desc { font-size: .85rem; color: var(--ink-soft); line-height: 1.5; margin: .2rem 0 .6rem; }
.b-bonus { font-size: .76rem; color: var(--algae); background: rgba(20, 58, 50, .06); border-radius: 10px; padding: .5rem .7rem; line-height: 1.4; }
.bundle .btn { width: 100%; margin-top: auto; justify-content: center; }
@media (max-width: 900px) { .bundle-row { grid-template-columns: 1fr; } }

/* Hero buy row (price next to CTA) — reused in final CTA */
.hero-buy { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; margin-top: .4rem; }
.hero-price-from { font-size: .9rem; color: var(--ink-soft); font-weight: 500; }
.hero-price-from b { font-family: var(--font-display); font-size: 1.35rem; color: var(--berry); font-weight: 600; }

/* Risk-reversal bar under the bundles */
.bundles-guarantee {
  display: flex; align-items: center; justify-content: center; gap: .8rem;
  max-width: 44rem; margin: 2.4rem auto 0; padding: 1.1rem 1.6rem;
  background: rgba(20, 58, 50, .05); border: 1px solid var(--line); border-radius: 18px;
  color: var(--ink-soft); font-size: .9rem; line-height: 1.5; text-align: left;
}
.bundles-guarantee svg { color: var(--algae); flex: none; }
.bundles-guarantee b { color: var(--ink); }

/* Reviews grid (reuses .tcard) */
.reviews { padding: 5rem clamp(1.2rem, 4vw, 3rem); background: var(--paper); }

/* Section divider — hairlines with a small wave motif (sea theme) */
.sec-divider {
  display: flex; align-items: center; justify-content: center; gap: 1.1rem;
  max-width: 34rem; margin: 0 auto; padding: 0 clamp(1.2rem, 4vw, 3rem);
  color: var(--berry);
}
.sec-divider::before, .sec-divider::after {
  content: ""; height: 1px; flex: 1; background: var(--line);
}
.sec-divider svg { width: 40px; height: 10px; flex: none; opacity: .85; }
.reviews-inner { max-width: var(--max); margin: 0 auto; }
.reviews-inner .section-head { max-width: 40rem; margin: 0 auto 3rem; text-align: center; }
.reviews-inner .section-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin: .8rem 0 .5rem; }
.reviews-inner .stars { color: var(--berry); letter-spacing: .12em; }
/* side gutters hold the arrows; the track is clipped inside them,
   so cards never scroll under the arrows */
.reviews-slider { position: relative; padding: 0 3.6rem; }
.reviews-track {
  display: flex; gap: 1.4rem; overflow-x: auto;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: .5rem .2rem 1.2rem; scrollbar-width: none;
}
.reviews-track::-webkit-scrollbar { display: none; }
.reviews-track .tcard {
  flex: 0 0 340px; max-width: 84vw; width: auto;
  scroll-snap-align: start;
}
.rev-arrow {
  position: absolute; top: 42%; transform: translateY(-50%); z-index: 3;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--mist); border: 1px solid var(--line); color: var(--ink);
  display: grid; place-items: center; cursor: pointer;
  box-shadow: 0 8px 22px -12px rgba(20, 58, 50, .28);
  transition: background .2s, opacity .2s, border-color .2s;
}
.rev-arrow:hover { background: var(--berry-soft); border-color: var(--berry); }
.rev-prev { left: 0; }
.rev-next { right: 0; }
.rev-arrow[disabled] { opacity: .3; pointer-events: none; }
@media (hover: none), (max-width: 720px) {
  .reviews-slider, .prod-slider { padding: 0; }
  .rev-arrow { display: none; }
}

/* Final CTA (product page) */
.prod-final {
  position: relative; text-align: center;
  margin: 0 clamp(.8rem, 3vw, 2rem) 2rem;
  border-radius: 44px; overflow: hidden;
  background: radial-gradient(90% 120% at 50% 0, var(--algae), var(--algae-deep));
  color: #fff; padding: clamp(4rem, 10vh, 6.5rem) 1.5rem;
}
.prod-final-inner { max-width: 40rem; margin: 0 auto; }
.prod-final .eyebrow { color: var(--berry-soft); justify-content: center; }
.prod-final .eyebrow::before { background: var(--berry-soft); }
.prod-final h2 { font-size: clamp(1.9rem, 4.6vw, 3rem); margin: 1.2rem auto; color: #fff; }
.prod-final p { color: rgba(255, 255, 255, .78); max-width: 32rem; margin: 0 auto 2rem; }
.prod-final .hero-price-from { color: rgba(255, 255, 255, .8); }
.prod-final .hero-price-from b { color: #fff; }

/* Trust */
.trust-icons { display: flex; justify-content: center; align-items: center; gap: 2rem; flex-wrap: wrap; padding: 2.2rem clamp(1.2rem, 4vw, 3rem); color: var(--ink-soft); font-size: .82rem; font-weight: 600; }
.trust-icons span { display: flex; align-items: center; gap: .45rem; }
.trust-icons svg { width: 18px; height: 18px; color: var(--berry); flex: none; }
.trust-strip { display: flex; justify-content: center; align-items: center; gap: 1.5rem; flex-wrap: wrap; padding: 2rem clamp(1.2rem, 4vw, 3rem); background: rgba(195, 74, 86, .05); font-size: .88rem; font-weight: 600; color: var(--ink-soft); }
.trust-strip .stars { color: var(--berry); }
.trust-strip .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--line); }

/* FAQ */
.faq { padding: 5rem clamp(1.2rem, 4vw, 3rem); max-width: 800px; margin: 0 auto; }
.faq .section-head { text-align: center; margin-bottom: 2.5rem; }
.faq .section-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin: .8rem 0 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.3rem 0; cursor: pointer; font-weight: 700; font-size: .98rem; user-select: none; }
.faq-q svg { flex: none; width: 18px; height: 18px; color: var(--berry); transition: transform .3s var(--ease); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-item.open .faq-a { max-height: 260px; }
.faq-a p { padding-bottom: 1.3rem; color: var(--ink-soft); font-size: .92rem; line-height: 1.6; max-width: 42rem; }

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
  background: #fff; border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px -12px rgba(20, 58, 50, .18);
  padding: .75rem 1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  transform: translateY(110%); transition: transform .4s var(--ease);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .sc-info { display: flex; flex-direction: column; line-height: 1.25; }
.sticky-cta .sc-info b { font-size: .88rem; }
.sticky-cta .sc-info span { font-size: .78rem; color: var(--berry); font-weight: 700; }
.sticky-cta .btn { padding: .7em 1.3em; font-size: .85rem; flex: none; }
@media (min-width: 768px) { .sticky-cta { display: none; } }

/* ===== CART PAGE ===== */
.cart-page { max-width: 900px; margin: 0 auto; padding: 7rem clamp(1.2rem, 4vw, 3rem) 5rem; }
.cart-page h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 2rem; }
.cart-empty { text-align: center; padding: 4rem 0; color: var(--ink-soft); }
.cart-empty p { font-size: 1.1rem; margin-bottom: 1.5rem; }
.cart-items { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.cart-item { display: grid; grid-template-columns: auto 1fr auto; gap: 1.2rem; align-items: center; padding: 1.2rem 1.4rem; border-radius: 20px; background: var(--mist); border: 1px solid var(--line); }
.cart-item-img { width: 80px; height: 80px; border-radius: 14px; background: var(--berry-soft); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.cart-item-img img { height: 70px; width: auto; object-fit: contain; }
.cart-item-info h3 { font-weight: 700; font-size: 1rem; margin-bottom: .2rem; }
.cart-item-info p { font-size: .88rem; color: var(--ink-soft); }
.cart-item-qty { display: flex; align-items: center; gap: .6rem; margin-top: .5rem; }
.qty-btn { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line); background: #fff; cursor: pointer; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.qty-btn:hover { background: var(--berry-soft); }
.cart-item-price { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; white-space: nowrap; }
.cart-remove { font-size: .78rem; color: var(--ink-soft); cursor: pointer; margin-top: .3rem; display: block; background: none; border: none; }
.cart-remove:hover { color: var(--berry); }
.cart-summary { background: var(--mist); border: 1px solid var(--line); border-radius: 24px; padding: 1.8rem 2rem; }
.cart-summary-row { display: flex; justify-content: space-between; padding: .6rem 0; font-size: .95rem; }
.cart-summary-row.total { border-top: 1px solid var(--line); margin-top: .6rem; padding-top: 1rem; font-weight: 700; font-size: 1.1rem; }
.cart-summary .btn { width: 100%; margin-top: 1.4rem; justify-content: center; }

/* ===== CHECKOUT PAGE ===== */
.checkout-page { max-width: 1000px; margin: 0 auto; }
.checkout-page h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 2.5rem; }
.checkout-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: flex-start; }
.checkout-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-group label { font-size: .88rem; font-weight: 600; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .85rem 1rem; border-radius: 14px; border: 1px solid var(--silver);
  background: var(--mist); font-size: .95rem; font-family: var(--font-body);
  color: var(--ink); transition: border-color .3s; width: 100%;
}
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--berry); }
.form-group .error-msg { font-size: .8rem; color: var(--berry); margin-top: .2rem; }
.delivery-options { display: flex; flex-direction: column; gap: .8rem; }
.delivery-opt { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem; border-radius: 16px; border: 1px solid var(--line); cursor: pointer; background: var(--mist); transition: border-color .3s; }
.delivery-opt:has(input:checked) { border-color: var(--berry); background: var(--berry-soft); }
.delivery-opt input[type=radio] { accent-color: var(--berry); }
.delivery-opt .do-label { font-weight: 600; font-size: .95rem; }
.delivery-opt .do-price { font-size: .88rem; color: var(--ink-soft); margin-top: .1rem; }
.office-select-wrap { margin-top: .8rem; display: none; }
.office-select-wrap.visible { display: block; }
#stripe-card { padding: .85rem 1rem; border-radius: 14px; border: 1px solid var(--silver); background: var(--mist); min-height: 44px; }
.checkout-summary .btn { width: 100%; margin-top: 1.4rem; justify-content: center; }
.checkout-trust { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1rem; font-size: .75rem; color: var(--ink-soft); }
.checkout-trust span { display: flex; align-items: center; gap: .3rem; }
@media (max-width: 768px) { .checkout-grid { grid-template-columns: 1fr; } }

/* ===== CHECKOUT SUCCESS ===== */
.success-page { max-width: 600px; margin: 0 auto; padding: 8rem clamp(1.2rem, 4vw, 3rem) 5rem; text-align: center; }
.success-icon { width: 80px; height: 80px; border-radius: 50%; background: var(--algae-soft); display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; }
.success-icon svg { width: 40px; height: 40px; color: var(--algae); }
.success-page h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.success-page p { color: var(--ink-soft); margin-bottom: 2rem; font-size: 1.05rem; }
.order-summary-box { background: var(--mist); border: 1px solid var(--line); border-radius: 24px; padding: 1.8rem; margin: 2rem 0; text-align: left; }
.order-summary-box h3 { margin-bottom: 1rem; font-size: 1.05rem; }

/* ===== CART DRAWER ===== */
.cart-overlay {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(11, 29, 26, .45); backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}
.cart-overlay.is-open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed; top: 0; right: 0; z-index: 1101;
  width: min(420px, 100vw); height: 100dvh;
  background: var(--paper);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
  box-shadow: -12px 0 60px rgba(11,29,26,.18);
}
.cart-drawer.is-open { transform: translateX(0); }

.cart-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 1.6rem; border-bottom: 1px solid var(--line); flex-shrink: 0;
}
.cart-drawer-close {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line);
  background: transparent; cursor: pointer; display: grid; place-items: center;
  color: var(--ink); transition: background .2s;
}
.cart-drawer-close:hover { background: var(--mist); }

.cart-drawer-body {
  flex: 1; overflow-y: auto; padding: 1.2rem 1.6rem;
  display: flex; flex-direction: column;
}

.cdr-loading { color: var(--ink-soft); font-size: .9rem; padding: 2rem 0; text-align: center; }

.cdr-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: .5rem; padding: 2rem 0; }
.cdr-empty p { color: var(--ink-soft); }

.cdr-items { display: flex; flex-direction: column; gap: 0; flex: 1; }
.cdr-item-img {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 10px;
  background: var(--berry-soft); display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.cdr-item-img img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.cdr-item {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  padding: 1rem 0; border-bottom: 1px solid var(--line);
}
.cdr-item-info { flex: 1; min-width: 0; }
.cdr-item-name { display: block; font-weight: 600; font-size: .92rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cdr-item-label { display: block; font-size: .78rem; color: var(--ink-soft); margin-top: .15rem; }
.cdr-item-variants { display: block; font-size: .72rem; color: var(--berry); font-weight: 600; margin-top: .2rem; }
.cart-row-variants { display: block; font-size: .8rem; color: var(--berry); font-weight: 600; margin-top: .2rem; }
.cdr-item-right { display: flex; flex-direction: column; align-items: flex-end; gap: .5rem; flex-shrink: 0; }
.cdr-qty-row { display: flex; align-items: center; gap: .4rem; }
.cdr-qty-btn {
  width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line);
  background: transparent; cursor: pointer; font-size: .9rem; display: grid; place-items: center;
  color: var(--ink); transition: background .2s, border-color .2s;
}
.cdr-qty-btn:hover { background: var(--algae-soft); border-color: var(--algae); }
.cdr-qty-num { font-size: .88rem; font-weight: 600; min-width: 18px; text-align: center; }
.cdr-item-price { font-size: .88rem; font-weight: 700; font-family: var(--font-display); }
.cdr-remove {
  background: transparent; border: none; cursor: pointer; font-size: .75rem;
  color: var(--ink-soft); padding: 0; line-height: 1; transition: color .2s;
}
.cdr-remove:hover { color: var(--berry); }

.cdr-upsell {
  display: flex; align-items: center; gap: .75rem;
  margin-top: .4rem; padding: .8rem; border-radius: 14px;
  background: var(--algae-soft); flex-shrink: 0;
}
.cdr-upsell-img {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 9px;
  background: #fff; display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.cdr-upsell-img img { width: 100%; height: 100%; object-fit: contain; padding: 3px; }
.cdr-upsell-info { flex: 1; min-width: 0; }
.cdr-upsell-label { display: block; font-weight: 600; font-size: .86rem; color: var(--ink); }
.cdr-upsell-price { display: block; font-size: .76rem; color: var(--ink-soft); margin-top: .1rem; }
.cdr-upsell-add {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; border: none;
  background: var(--algae); color: #fff; font-size: 1.1rem; cursor: pointer;
  display: grid; place-items: center; transition: background .2s;
}
.cdr-upsell-add:hover { background: var(--algae-deep); }

.cdr-footer { padding: 1.2rem 0 1rem; border-top: 1px solid var(--line); flex-shrink: 0; display: flex; flex-direction: column; gap: .8rem; }
.cdr-total-row { display: flex; justify-content: space-between; align-items: center; }
.cdr-total-price { font-size: 1.2rem; }
.cdr-view-all { text-align: center; font-size: .82rem; color: var(--ink-soft); text-decoration: underline; text-underline-offset: 3px; }
.cdr-view-all:hover { color: var(--ink); }

/* ===== BLOG PAGES ===== */
.blog-page { max-width: var(--max); margin: 0 auto; padding: 7rem clamp(1.2rem, 4vw, 3rem) 5rem; }
.blog-page h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .5rem; }
.blog-page .lead { color: var(--ink-soft); font-size: 1.08rem; margin-bottom: 3rem; }
.blog-post-page { max-width: 740px; margin: 0 auto; padding: 7rem clamp(1.2rem, 4vw, 3rem) 5rem; }
.blog-post-page h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 1.2rem; line-height: 1.15; }
.post-meta { display: flex; gap: 1.5rem; color: var(--ink-soft); font-size: .88rem; margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
.post-cover { border-radius: 24px; overflow: hidden; margin-bottom: 2.5rem; aspect-ratio: 16/9; }
.post-cover img { width: 100%; height: 100%; object-fit: cover; }
.post-body { font-size: 1.06rem; line-height: 1.75; }
.post-body h2 { font-size: 1.6rem; margin: 2rem 0 .8rem; }
.post-body h3 { font-size: 1.25rem; margin: 1.6rem 0 .6rem; }
.post-body p { margin-bottom: 1.2rem; }
.post-body ul, .post-body ol { margin: 0 0 1.2rem 1.5rem; }
.post-body li { margin-bottom: .4rem; }
.post-body blockquote { border-left: 3px solid var(--berry); padding-left: 1.4rem; margin: 1.5rem 0; color: var(--ink-soft); font-style: italic; }

/* ===== BREADCRUMBS ===== */
.breadcrumbs { margin-bottom: 1.4rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem; list-style: none; margin: 0; padding: 0; font-size: .82rem; color: var(--ink-soft); }
.breadcrumbs a { color: var(--ink-soft); text-decoration: none; transition: color .25s; }
.breadcrumbs a:hover { color: var(--algae); text-decoration: underline; }
.breadcrumbs span[aria-current="page"] { color: var(--ink); font-weight: 600; }
.breadcrumbs .bc-sep { color: var(--silver); }
.breadcrumbs--center ol { justify-content: center; }

/* ===== LEGAL PAGES ===== */
.legal-page { max-width: 44rem; margin: 0 auto; padding: clamp(6rem,14vh,9rem) 1.5rem clamp(4rem,8vh,6rem); }
.legal-page .eyebrow { display: block; margin-bottom: 1rem; }
.legal-page h1 { font-size: clamp(2rem,4.5vw,3rem); margin: 0 0 .6rem; }
.legal-page .legal-updated { color: var(--ink-soft); font-size: .88rem; margin-bottom: 2.5rem; }
.legal-page .legal-body { font-size: 1.02rem; line-height: 1.75; color: var(--ink); }
.legal-page .legal-body h2 { font-size: 1.35rem; margin: 2.2rem 0 .8rem; }
.legal-page .legal-body h3 { font-size: 1.1rem; margin: 1.6rem 0 .6rem; }
.legal-page .legal-body p { margin-bottom: 1.1rem; }
.legal-page .legal-body ul, .legal-page .legal-body ol { margin: 0 0 1.1rem 1.4rem; }
.legal-page .legal-body li { margin-bottom: .4rem; }
.legal-page .legal-body a { color: var(--algae); text-decoration: underline; }

/* ===== COOKIE CONSENT ===== */
#cc-main {
  --cc-font-family: var(--font-body);
  --cc-bg: var(--mist);
  --cc-primary-color: var(--ink);
  --cc-secondary-color: var(--ink-soft);
  --cc-overlay-bg: rgba(11, 29, 26, .55);

  --cc-btn-primary-bg: var(--algae);
  --cc-btn-primary-border-color: var(--algae);
  --cc-btn-primary-color: #fff;
  --cc-btn-primary-hover-bg: var(--algae-deep);
  --cc-btn-primary-hover-border-color: var(--algae-deep);
  --cc-btn-primary-hover-color: #fff;

  --cc-btn-secondary-bg: var(--paper);
  --cc-btn-secondary-border-color: var(--silver);
  --cc-btn-secondary-color: var(--ink);
  --cc-btn-secondary-hover-bg: var(--silver);
  --cc-btn-secondary-hover-border-color: var(--silver);
  --cc-btn-secondary-hover-color: var(--ink);

  --cc-cookie-category-block-bg: var(--paper);
  --cc-cookie-category-block-border: var(--silver);
  --cc-cookie-category-block-hover-bg: var(--algae-soft);
  --cc-cookie-category-block-hover-border: var(--algae);
  --cc-cookie-category-expanded-block-bg: var(--paper);
  --cc-cookie-category-expanded-block-hover-bg: var(--paper);
  --cc-section-category-border: var(--silver);
  --cc-separator-border-color: var(--silver);

  --cc-toggle-on-bg: var(--algae);
  --cc-toggle-on-knob-bg: #fff;
  --cc-toggle-off-bg: var(--silver);
  --cc-toggle-off-knob-bg: #fff;
  --cc-toggle-readonly-bg: var(--algae-soft);
  --cc-toggle-readonly-knob-bg: #fff;
  --cc-toggle-readonly-knob-icon-color: var(--algae);

  --cc-link-color: var(--algae);
  --cc-footer-bg: var(--paper);
  --cc-footer-border-color: var(--silver);
  --cc-footer-color: var(--ink-soft);

  --cc-btn-border-radius: 10px;
  --cc-modal-border-radius: 16px;
  --cc-z-index: 9999;
}

/* ===== FLASH / ALERTS ===== */
.flash-success { background: var(--algae-soft); border: 1px solid rgba(27, 63, 58, .2); color: var(--algae); padding: 1rem 1.2rem; border-radius: 14px; font-size: .92rem; margin-bottom: 1rem; }
.flash-error { background: var(--berry-soft); border: 1px solid rgba(195, 74, 86, .2); color: var(--berry-deep); padding: 1rem 1.2rem; border-radius: 14px; font-size: .92rem; margin-bottom: 1rem; }

/* ===== PRELOADER ===== */
.preloader { position: fixed; inset: 0; z-index: 9998; background: var(--paper); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 1.5rem; transition: opacity .6s var(--ease); }
.preloader.is-done { opacity: 0; pointer-events: none; }
.preloader-bar { width: 120px; height: 2px; background: var(--line); border-radius: 2px; overflow: hidden; }
.preloader-fill { height: 100%; background: var(--berry); border-radius: 2px; width: 0; }
.preloader-text { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft); }

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; }
}

/* ===== NEWSLETTER POPUP ===== */
.newsletter-popup {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
  padding: 1rem;
}
.newsletter-popup.is-open { opacity: 1; pointer-events: all; }
.newsletter-popup-backdrop {
  position: absolute; inset: 0;
  background: rgba(9, 28, 24, .6);
  backdrop-filter: blur(8px);
}
.newsletter-popup-card {
  position: relative; z-index: 1;
  background: #fff; border-radius: 28px;
  width: min(680px, 100%);
  display: grid; grid-template-columns: 1fr 1.15fr;
  overflow: hidden;
  box-shadow: 0 40px 100px -20px rgba(9, 28, 24, .4);
  transform: scale(.9) translateY(16px);
  transition: transform .35s cubic-bezier(.34,1.4,.64,1);
}
.newsletter-popup.is-open .newsletter-popup-card { transform: scale(1) translateY(0); }
.newsletter-popup-close {
  position: absolute; top: 1.1rem; right: 1.1rem; z-index: 2;
  background: var(--paper); border: none; border-radius: 50%;
  width: 34px; height: 34px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft); transition: background .2s, color .2s;
}
.newsletter-popup-close:hover { background: var(--berry-soft); color: var(--berry); }
.newsletter-popup-media {
  position: relative; overflow: hidden;
  background: radial-gradient(130% 110% at 40% 0, var(--berry-soft), #fff 68%);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem 1rem;
  min-height: 220px;
}
.newsletter-popup-media img { width: 100%; max-width: 200px; height: auto; object-fit: contain; filter: drop-shadow(0 20px 30px rgba(9, 28, 24, .18)); }
.newsletter-popup-ribbon {
  position: absolute; top: 1.1rem; left: -2.8rem;
  width: 11rem; padding: .45em 0; text-align: center;
  background: linear-gradient(135deg, var(--berry), var(--berry-deep));
  color: #fff; font-weight: 700; font-size: .95rem; letter-spacing: .03em;
  transform: rotate(-45deg);
  box-shadow: 0 8px 16px -6px rgba(195, 74, 86, .5);
}
.newsletter-popup-content { padding: 2.2rem 2rem; min-width: 0; }
.newsletter-popup-trust { font-size: .78rem; color: var(--ink-soft); margin-top: .8rem; }
.newsletter-popup-celebrate { display: block; font-size: 1.8rem; margin-bottom: .3rem; animation: newsletter-pop .5s var(--ease) both; }
.newsletter-popup-code {
  display: flex; align-items: center; justify-content: space-between; gap: .6rem;
  width: 100%;
  background: var(--algae-soft); border: 1px dashed var(--algae);
  border-radius: 14px; padding: .85rem 1rem; cursor: pointer;
  font-family: inherit; text-align: left;
  animation: newsletter-pop .5s .05s var(--ease) both;
  transition: border-color .2s, background .2s;
}
.newsletter-popup-code:hover { background: rgba(27, 63, 58, .1); }
.newsletter-popup-code span:first-child {
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  letter-spacing: .02em; color: var(--algae);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  min-width: 0;
}
.newsletter-popup-copy-label {
  flex-shrink: 0; white-space: nowrap; font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .03em; color: var(--algae); opacity: .7;
  transition: opacity .2s, color .2s;
}
.newsletter-popup-copy-label.is-copied { opacity: 1; color: var(--berry); }
@keyframes newsletter-pop {
  0% { opacity: 0; transform: scale(.85) translateY(6px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
@media (max-width: 640px) {
  .newsletter-popup-card { grid-template-columns: 1fr; max-height: 90vh; overflow-y: auto; }
  .newsletter-popup-media { min-height: 140px; padding: 2.5rem 1rem 1rem; }
  .newsletter-popup-media img { max-width: 140px; }
  .newsletter-popup-content { padding: 1.6rem 1.4rem 2rem; }
}
