/* ==========================================================================
   Nourivya — "Berry Plum" theme layer.
   Loaded last, so it overrides the Webflow-generated style.css.
   Palette: deep plum + berry magenta, powder-pink surfaces, plum-black text.
   ========================================================================== */

:root {
  /* Brand — berry magenta with a deep plum companion */
  --brand: #C2185B;
  --brand-strong: #7C2D51;
  --brand-op-20: #C2185B2e;
  --brand-op-10: #C2185B17;
  --button-hover: #9D1449;
  --accent: #FF6FA5;          /* bright rose pop for gradient ends */
  --accent-soft: #FCE7F0;

  /* Neutrals — warm, slightly plum-tinted */
  --grey-950: #2A1520;
  --grey-600: #6B5560;
  --surface: #ffffff;
  --surface-tint: #FDF2F6;
  --hairline: #F2D9E4;

  /* System */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(42, 21, 32, .06);
  --shadow-md: 0 12px 32px rgba(42, 21, 32, .10);
  --shadow-lg: 0 22px 60px rgba(194, 24, 91, .20);
  --shadow-brand: 0 12px 26px rgba(194, 24, 91, .30);
  --font-head: "Plus Jakarta Sans", "DM Sans", system-ui, sans-serif;
  --font-body: "DM Sans", "Plus Jakarta Sans", system-ui, sans-serif;
}

/* -------------------------------------------------------------------------- */
/* Base                                                                        */
/* -------------------------------------------------------------------------- */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--grey-950);
  background-color: #FFFAFC;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, .h1, .h2, .heading-3 {
  font-family: var(--font-head);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(28px, 4.4vw, 40px);
  line-height: 1.16;
  font-weight: 800;
}

.h2 { font-size: clamp(24px, 3.4vw, 32px); font-weight: 700; }
.h2.blue, .h1.blue, .blue-text, .accent-text, .highlight { color: var(--brand); }

.section { padding-top: 8px; padding-bottom: 8px; }
.content { line-height: 1.62; }
.w-richtext p { color: #3a2530; }

/* Images: rounded with a soft frame */
.img, .image, .br-0, .br0 { border-radius: var(--radius) !important; }
.image-wrapper img { box-shadow: var(--shadow-sm); }

/* -------------------------------------------------------------------------- */
/* Header + brand wordmark                                                      */
/* -------------------------------------------------------------------------- */
.heading-wrap {
  position: sticky;
  top: 0;
  z-index: 900;
  background: linear-gradient(180deg, #ffffff, var(--surface-tint));
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--hairline);
  box-shadow: 0 4px 18px rgba(42, 21, 32, .05);
}

.header { padding-top: 18px; padding-bottom: 14px; }

.logo-wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  text-decoration: none;
  position: relative;
}
.logo-wordmark .lw-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.04em;
  background: linear-gradient(120deg, var(--grey-950) 38%, var(--brand-strong));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo-wordmark .lw-name em {
  font-style: normal;
  -webkit-text-fill-color: initial;
  background: none;
  color: var(--brand);
}
.logo-wordmark .lw-name::after {
  content: "";
  display: block;
  width: 42px;
  height: 4px;
  margin: 7px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}
.logo-wordmark .lw-sub {
  margin-top: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand);
  opacity: .9;
}

/* Bold gradient category strip under the header */
.heading {
  background: linear-gradient(90deg, var(--brand-strong), var(--brand) 55%, var(--accent));
  padding: 12px 8px;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,.06);
}
.heading-text { letter-spacing: 0.2em; font-weight: 800; font-size: 13px; }

/* ---- Bold hero band: soft berry backdrop behind the intro ------------------ */
.section:has(> .container.bp-20) {
  background:
    radial-gradient(120% 90% at 100% 0%, var(--accent-soft) 0%, transparent 55%),
    radial-gradient(90% 70% at 0% 15%, #F8E3EE 0%, transparent 50%),
    linear-gradient(180deg, var(--surface-tint), #FFFAFC 78%);
  border-bottom: 1px solid var(--hairline);
  padding-top: 20px;
  padding-bottom: 28px;
}
.section:has(> .container.bp-20) h1 {
  position: relative;
  padding-left: 22px;
}
.section:has(> .container.bp-20) h1::before {
  content: "";
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand-strong), var(--brand), var(--accent));
}

/* -------------------------------------------------------------------------- */
/* Advertorial label + disclosure note                                         */
/* -------------------------------------------------------------------------- */
.label em {
  display: inline-block;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-strong);
  background: var(--accent-soft);
  border: 1px solid var(--hairline);
  padding: 5px 12px;
  border-radius: 999px;
}

.ad-note {
  font-size: 13px;
  line-height: 1.55;
  color: var(--grey-600);
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--brand);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin: 10px 0 4px;
}
.ad-note a { color: var(--brand); }

.author-wrap { color: var(--grey-600); font-size: 15px; }
.author-wrap .date { color: var(--grey-950); font-weight: 600; }

/* -------------------------------------------------------------------------- */
/* Buttons — chunky rounded-rect with berry gradient, shadow and hover lift    */
/* -------------------------------------------------------------------------- */
.button {
  background-image: linear-gradient(180deg, #E0356F, var(--brand));
  background-color: var(--brand);
  border-radius: 14px;
  padding: 18px 30px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-brand);
  transition: transform .18s ease, box-shadow .18s ease, background-color .2s ease;
}
.button:hover {
  background-color: var(--button-hover);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(194, 24, 91, .38);
}
.button:active { transform: translateY(0); }

/* -------------------------------------------------------------------------- */
/* Stat / advantage blocks                                                     */
/* -------------------------------------------------------------------------- */
.advantages {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 28px 30px;
}
.advantage-block .h1.blue {
  font-size: clamp(30px, 5vw, 40px);
  font-weight: 800;
  background: linear-gradient(120deg, var(--brand-strong), var(--brand) 70%, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* -------------------------------------------------------------------------- */
/* Info / callout blocks                                                        */
/* -------------------------------------------------------------------------- */
.blue-block {
  border-left: 4px solid var(--brand);
  background: linear-gradient(180deg, var(--surface-tint), #ffffff);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 30px 32px;
}
.blue-block.no-border {
  border-left-width: 0;
  border-top: 1px dashed var(--brand-op-20);
  border-radius: var(--radius);
}
.warning-wrap { color: var(--brand); font-weight: 700; letter-spacing: .04em; }

/* Bordered card panels */
.content.checkblock {
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 32px;
}
.content.checkblock.center.no-side-pad {
  border: none;
  box-shadow: none;
  background: transparent;
}
.content.checkblock.border-grey { border: 1px solid var(--hairline); }

/* Have / have-not comparison boxes — semantic green/red kept for meaning */
.content.green-box {
  border: 1px solid #b8e6c6;
  background: linear-gradient(180deg, #f0fbf3, #ffffff);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.content.red-box {
  border: 1px solid #f3cccc;
  background: linear-gradient(180deg, #fdf3f3, #ffffff);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.green-text { color: #158a3c; }
.red-text { color: #b32424; }

/* -------------------------------------------------------------------------- */
/* Flavour grid                                                                 */
/* -------------------------------------------------------------------------- */
.grid-3col .content {
  border-radius: var(--radius);
  transition: transform .2s ease;
}
.grid-3col .content:hover { transform: translateY(-4px); }

.image-wrap.small-size {
  background: radial-gradient(120% 120% at 50% 20%, #ffffff, var(--surface-tint));
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.image-wrap.small-size .small-img { mix-blend-mode: multiply; }
.text-24px { font-family: var(--font-head); letter-spacing: -0.01em; }
.text-18px .text-wrap, .grid-3col .text-18px { color: var(--grey-600); }

/* -------------------------------------------------------------------------- */
/* Price / offer card                                                           */
/* -------------------------------------------------------------------------- */
.blue-block.no-border._w-100 {
  background:
    radial-gradient(90% 80% at 100% 0%, var(--accent-soft), transparent 60%),
    linear-gradient(180deg, #ffffff, var(--surface-tint));
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 30px;
}
.blue-block .h1.blue {
  font-size: clamp(38px, 7vw, 52px);
  font-weight: 800;
}
.color-block.p12.darken {
  background: var(--accent-soft);
  border: 1px solid #F6C6DB;
  border-radius: 999px;
  color: var(--brand-strong);
}

/* Trust / reassurance strip under CTAs */
.bottom-block { color: var(--grey-600); }
.bottom-block .text-16px, .bottom-block .text-18px { font-size: 14px; }

/* -------------------------------------------------------------------------- */
/* Dividers                                                                     */
/* -------------------------------------------------------------------------- */
.line.horizontal { height: 1px; background-color: var(--hairline); }
.line.horizontal.dotted { border-bottom: 1px dashed var(--hairline); }
.subtext { opacity: .72; font-size: 13px; }

/* -------------------------------------------------------------------------- */
/* Floating CTA (mobile)                                                        */
/* -------------------------------------------------------------------------- */
.floating-cta {
  background: linear-gradient(180deg, rgba(255,250,252,0), rgba(255,250,252,.96) 30%);
  padding: 20px 20px 22px;
}
.floating-cta .button { box-shadow: var(--shadow-lg); }

/* -------------------------------------------------------------------------- */
/* Footer                                                                       */
/* -------------------------------------------------------------------------- */
.section.footer { background-color: #1C0E15; }
.disclaimer p { color: #B79AA7; font-size: 13px; line-height: 1.6; }
.disclaimer strong { color: #E6CBD8; }
.footer-links { gap: 20px; }
.link-white { opacity: .85; transition: opacity .2s ease; }
.link-white:hover { opacity: 1; text-decoration: underline; }

/* -------------------------------------------------------------------------- */
/* First-party cookie consent banner (opt-in)                                  */
/* -------------------------------------------------------------------------- */
#cookie-banner {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  color: var(--grey-950);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 22px 24px;
  font-family: var(--font-body);
}
#cookie-banner .cc-text { font-size: 14px; line-height: 1.55; color: #4a3540; }
#cookie-banner .cc-text a { color: var(--brand); text-decoration: underline; }
#cookie-banner .cc-actions { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
#cookie-banner button {
  flex: 1 1 auto;
  min-width: 140px;
  cursor: pointer;
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-head);
  transition: background-color .2s, border-color .2s, transform .15s;
}
#cookie-banner .cc-accept { background: var(--brand); color: #fff; border: 1px solid var(--brand); }
#cookie-banner .cc-accept:hover { background: var(--button-hover); border-color: var(--button-hover); transform: translateY(-1px); }
#cookie-banner .cc-reject { background: #fff; color: #4a3540; border: 1px solid #E7C9D6; }
#cookie-banner .cc-reject:hover { background: var(--surface-tint); }
.cookie-settings { cursor: pointer; }
@media (max-width: 479px) {
  #cookie-banner .cc-actions { flex-direction: column-reverse; }
}
