/** Shopify CDN: Minification failed

Line 34:0 All "@import" rules must come first

**/
/* ============================================================
   LULL BRANDS — SHOPIFY THEME
   theme.css — All styles
   ============================================================ */

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --black:    #0f0f0f;
  --white:    #ffffff;
  --offwhite: #ffffff;
  --silver:   #d8d8d4;
  --gray:     #8a8a85;
  --charcoal: #2c2c2c;
  --accent:   #c8398a;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--white); color: var(--black); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: var(--font-body); }
a { text-decoration: none; color: inherit; }

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500&display=swap');

h1, h2, h3 { font-family: var(--font-display); line-height: 0.9; }
.eyebrow {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gray); display: flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--silver); }

/* ── CUSTOM CURSOR ─────────────────────────────────────────── */
body { cursor: none; }
.cursor {
  position: fixed; top: 0; left: 0; width: 8px; height: 8px;
  background: var(--black); border-radius: 50%; pointer-events: none;
  z-index: 9999; transform: translate(-50%,-50%);
  transition: width .25s var(--ease), height .25s var(--ease);
}
.cursor-ring {
  position: fixed; top: 0; left: 0; width: 32px; height: 32px;
  border: 1px solid rgba(15,15,15,.2); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .35s var(--ease), height .35s var(--ease), opacity .3s;
}
body.cursor-hover .cursor { width: 5px; height: 5px; }
body.cursor-hover .cursor-ring { width: 48px; height: 48px; opacity: .1; }
body.cursor-inv .cursor { background: var(--white); }
body.cursor-inv .cursor-ring { border-color: rgba(248,248,245,.35); }

/* ── NOTIFICATION ──────────────────────────────────────────── */
.lull-notification {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(70px);
  background: var(--black); color: var(--white);
  padding: 13px 26px; font-size: 13px; letter-spacing: .04em;
  z-index: 1000; opacity: 0; pointer-events: none;
  transition: transform .45s var(--ease), opacity .45s;
  white-space: nowrap;
}
.lull-notification.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ── NAV ───────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px; height: 68px;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.site-header.scrolled {
  border-color: var(--silver);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
}
.header-logo img { height: 22px; width: auto; }
.header-nav { display: flex; gap: 36px; align-items: center; }
.header-nav a {
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gray); transition: color .2s;
}
.header-nav a:hover { color: var(--black); }
.header-cart-btn {
  background: var(--black); color: var(--white);
  padding: 10px 28px; font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 500; border: none;
  transition: background .2s, transform .2s;
}
.header-cart-btn:hover { background: var(--charcoal); transform: translateY(-1px); }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn-primary {
  background: var(--black); color: var(--white);
  padding: 15px 36px; font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 500; border: none;
  transition: all .3s var(--ease); display: inline-block;
}
.btn-primary:hover { background: var(--charcoal); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--black);
  padding: 15px 36px; font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; border: 1px solid var(--silver);
  transition: all .3s var(--ease); display: inline-block;
}
.btn-outline:hover { border-color: var(--black); transform: translateY(-2px); }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh; width: 100%;
  display: flex; align-items: center; overflow: hidden;
  background: var(--white);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 90% center; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right,
    rgba(255,255,255,.88) 0%,
    rgba(255,255,255,.75) 28%,
    rgba(255,255,255,.35) 50%,
    rgba(255,255,255,.05) 72%,
    rgba(255,255,255,0)   100%
  );
}
.hero__content {
  position: relative; z-index: 2;
  padding: 140px 56px 80px; max-width: 460px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(80px, 10vw, 148px);
  line-height: .88; color: var(--black);
  opacity: 0; animation: fadeUp 1s var(--ease) .3s forwards;
}
.hero__sub {
  font-size: 17px; font-weight: 300; color: var(--gray);
  line-height: 1.7; margin-top: 28px; max-width: 420px;
  opacity: 0; animation: fadeUp 1s var(--ease) .5s forwards;
}
.hero__actions {
  display: flex; gap: 12px; margin-top: 40px;
  opacity: 0; animation: fadeUp 1s var(--ease) .7s forwards;
}
.hero__stats {
  display: flex; margin-top: 56px;
  border-top: 1px solid rgba(15,15,15,.12); padding-top: 28px;
  opacity: 0; animation: fadeUp 1s var(--ease) .9s forwards;
  max-width: 480px;
}
.hero__stat { flex: 1; padding-right: 24px; border-right: 1px solid rgba(15,15,15,.12); }
.hero__stat:nth-child(2) { padding: 0 24px; }
.hero__stat:last-child { border-right: none; padding-left: 24px; padding-right: 0; }
.hero__stat-num { font-family: var(--font-display); font-size: 42px; color: var(--black); line-height: 1; }
.hero__stat-lbl { font-size: 11px; color: var(--gray); margin-top: 4px; }

@keyframes fadeUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }

/* ── TICKER ────────────────────────────────────────────────── */
.ticker { background: var(--black); padding: 13px 0; overflow: hidden; }
.ticker__track { display: flex; gap: 60px; animation: ticker 22s linear infinite; width: max-content; }
.ticker__item { font-family: var(--font-display); font-size: 17px; letter-spacing: 3px; color: rgba(248,248,245,.18); text-transform: uppercase; white-space: nowrap; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── INGREDIENTS ───────────────────────────────────────────── */
.ingredients { background: var(--white); padding: 120px 56px; }
.section-head { margin-bottom: 56px; }
.ingredients__grid {
  display: grid; grid-template-columns: repeat(7,1fr);
  border: 1px solid var(--silver);
}
.ing-card {
  padding: 36px 22px; border-right: 1px solid var(--silver);
  position: relative; overflow: hidden; transition: background .3s;
}
.ing-card:last-child { border-right: none; }
.ing-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px;
  background: var(--black); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.ing-card:hover { background: var(--offwhite); }
.ing-card:hover::after { transform: scaleX(1); }
.ing-card__dose { font-family: var(--font-display); font-size: 34px; color: var(--black); display: block; line-height: 1; }
.ing-card__unit { font-size: 10px; letter-spacing: .1em; color: var(--gray); display: block; margin-bottom: 16px; }
.ing-card__name { font-size: 12px; font-weight: 500; color: var(--black); margin-bottom: 5px; }
.ing-card__name--big { font-family: var(--font-display); font-size: 22px; color: var(--black); line-height: 1.1; margin-bottom: 10px; }
.ing-card__note { font-size: 11px; color: var(--gray); line-height: 1.5; }
.ing-card__num { position: absolute; bottom: 10px; right: 10px; font-family: var(--font-display); font-size: 36px; color: rgba(15,15,15,.04); }

/* ── PRODUCT SECTION ───────────────────────────────────────── */
.product-section { background: var(--white); padding: 0; }

/* Product buy area — photo LEFT, form RIGHT, no info strip above */
.product-buy {
  display: grid;
  grid-template-columns: 1fr 500px;
  min-height: 680px;
}

/* Photo: full bleed, no padding, no grey box */
.product-photo {
  position: relative;
  overflow: hidden;
  background: #e8e8e6; /* matches the actual mockup background */
}
.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* fill the whole panel */
  object-position: center;  /* center the can */
  display: block;
  transition: transform .6s ease;
}
.product-photo:hover img { transform: scale(1.02); }

/* Form: white, vertically centered, generous padding */
.product-form {
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  border-left: 1px solid #eeeeea;
}

/* SKU / flavor label above title */
.product-sku {
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gray); margin-bottom: 14px;
}

/* Product title */
.product-title {
  font-family: var(--font-display); font-size: clamp(40px,4.5vw,64px);
  line-height: .9; color: var(--black); margin-bottom: 14px;
}

/* Short descriptor */
.product-desc {
  font-size: 15px; font-weight: 300; color: var(--gray);
  line-height: 1.7; margin-bottom: 28px; max-width: 380px;
}

/* Specs strip */
.product-specs {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--silver); max-width: 100%;
  margin-bottom: 32px;
}
.product-spec { background: #f8f8f6; padding: 14px 16px; }
.product-spec__label { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--gray); margin-bottom: 4px; }
.product-spec__value { font-size: 15px; font-weight: 500; color: var(--black); }

/* Price */
.product-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 20px; }
.product-price__main { font-family: var(--font-display); font-size: 56px; color: var(--black); line-height: 1; }
.product-price__sub { font-size: 13px; color: var(--gray); }

/* Pack selector */
.pack-selector { display: flex; gap: 8px; margin-bottom: 18px; }
.pack-btn {
  flex: 1; padding: 13px 6px; border: 1px solid var(--silver);
  background: var(--white); font-size: 11px; letter-spacing: .08em;
  text-transform: uppercase; transition: all .2s; color: var(--gray);
}
.pack-btn.active { background: var(--black); color: var(--white); border-color: var(--black); }
.pack-btn:hover:not(.active) { border-color: var(--black); color: var(--black); }

/* Subscribe toggle */
.subscribe-row {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px;
  background: var(--offwhite); border: 1px solid var(--silver);
  margin-bottom: 20px; transition: border-color .2s; cursor: pointer;
}
.subscribe-row:hover { border-color: var(--charcoal); }
.toggle { width: 36px; height: 20px; background: var(--silver); border-radius: 10px; position: relative; transition: background .3s; flex-shrink: 0; }
.toggle.on { background: var(--black); }
.toggle__knob { position: absolute; top: 3px; left: 3px; width: 14px; height: 14px; background: var(--white); border-radius: 50%; transition: left .3s var(--ease); }
.toggle.on .toggle__knob { left: 19px; }
.subscribe-label { font-size: 13px; color: var(--black); }
.subscribe-save { margin-left: auto; font-size: 12px; color: var(--gray); }

/* ATC */
.atc-btn {
  width: 100%; padding: 18px; background: var(--black); color: var(--white);
  font-size: 12px; letter-spacing: .15em; text-transform: uppercase;
  font-weight: 500; border: none; position: relative; overflow: hidden;
  transition: transform .2s; margin-bottom: 14px;
}
.atc-btn:hover { background: var(--accent); transform: translateY(-1px); }
.atc-btn__text { position: relative; z-index: 1; }
.cart-trust {
  display: flex; gap: 8px; align-items: center; justify-content: center;
  font-size: 11px; color: var(--gray); flex-wrap: wrap;
}
.cart-trust__sep { color: var(--silver); }

/* ── HOW IT WORKS ──────────────────────────────────────────── */
.how-section { background: var(--white); padding: 120px 56px; }
.how-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--silver); margin-top: 56px; }
.how-card {
  padding: 52px 36px; border-right: 1px solid var(--silver);
  position: relative; transition: background .35s;
}
.how-card:last-child { border-right: none; }
.how-card:hover { background: var(--black); }
.how-card:hover .how-card__step,
.how-card:hover .how-card__title,
.how-card:hover .how-card__desc,
.how-card:hover .how-card__time { color: rgba(248,248,245,.5) !important; }
.how-card:hover .how-card__title { color: var(--white) !important; }
.how-card__num { font-family: var(--font-display); font-size: 90px; color: rgba(15,15,15,.04); position: absolute; top: 14px; right: 14px; line-height: 1; transition: color .35s; }
.how-card:hover .how-card__num { color: rgba(248,248,245,.04); }
.how-card__step { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--gray); margin-bottom: 26px; display: block; transition: color .35s; }
.how-card__title { font-family: var(--font-display); font-size: 38px; color: var(--black); margin-bottom: 14px; transition: color .35s; }
.how-card__desc { font-size: 15px; font-weight: 300; color: var(--gray); line-height: 1.7; transition: color .35s; }
.how-card__time { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--silver); margin-top: 22px; transition: color .35s; }

/* ── WHY LULL ──────────────────────────────────────────────── */
.why-section { background: var(--white); padding: 120px 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.comp-table { margin-top: 44px; border: 1px solid var(--silver); }
.comp-row { display: grid; grid-template-columns: 1fr 68px 68px; border-bottom: 1px solid var(--silver); }
.comp-row:last-child { border-bottom: none; }
.comp-row.comp-header { background: var(--white); }
.comp-feat { padding: 15px 18px; font-size: 14px; color: var(--gray); border-right: 1px solid var(--silver); }
.comp-cel { padding: 15px; text-align: center; font-size: 16px; border-right: 1px solid var(--silver); display: flex; align-items: center; justify-content: center; }
.comp-cel:last-child { border-right: none; }
.comp-cel.bad { color: var(--silver); }
.comp-cel.good { color: var(--black); font-size: 18px; }
.comp-header .comp-feat { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--silver); padding: 11px 18px; }
.comp-header .comp-cel { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--gray); padding: 11px; }
.comp-header .comp-cel.good { color: var(--black); font-weight: 500; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--silver); }
.stat-card { background: var(--white); padding: 44px 32px; transition: background .3s; }
.stat-card:hover { background: var(--black); }
.stat-card:hover .stat-num, .stat-card:hover .stat-lbl { color: var(--white); }
.stat-num { font-family: var(--font-display); font-size: 60px; color: var(--black); line-height: 1; transition: color .3s; }
.stat-lbl { font-size: 13px; color: var(--gray); margin-top: 7px; transition: color .3s; }

/* ── TESTIMONIALS ──────────────────────────────────────────── */
.testimonials { background: var(--white); padding: 120px 56px; }
.testimonials__outer { overflow: hidden; margin: 52px -56px 0; padding: 0 56px; }
.testimonials__track { display: flex; gap: 18px; transition: transform .6s var(--ease); }
.testimonial-card { min-width: 348px; background: var(--white); border: 1px solid var(--silver); padding: 40px; flex-shrink: 0; transition: border-color .3s, transform .3s; }
.testimonial-card:hover { border-color: var(--black); transform: translateY(-4px); }
.testimonial-stars { letter-spacing: 3px; margin-bottom: 18px; font-size: 13px; }
.testimonial-text { font-size: 15px; font-weight: 300; color: var(--charcoal); line-height: 1.75; margin-bottom: 26px; font-style: italic; }
.testimonial-author { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--gray); }
.testimonials__nav { display: flex; gap: 10px; margin-top: 36px; }
.t-nav { width: 42px; height: 42px; border: 1px solid var(--silver); background: transparent; font-size: 15px; transition: all .2s; color: var(--black); display: flex; align-items: center; justify-content: center; }
.t-nav:hover { background: var(--black); color: var(--white); border-color: var(--black); }

/* ── BUNDLES ───────────────────────────────────────────────── */
.bundles { background: var(--white); padding: 120px 56px; }
.bundles__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--silver); margin-top: 56px; }
.bundle-card { background: var(--white); padding: 52px 40px; position: relative; transition: background .4s var(--ease), transform .3s var(--ease); }
.bundle-card:hover, .bundle-card.featured { background: var(--black); transform: translateY(-6px); }
.bundle-card:hover .bundle-cans,
.bundle-card:hover .bundle-name,
.bundle-card:hover .bundle-price,
.bundle-card:hover .bundle-per,
.bundle-card.featured .bundle-cans,
.bundle-card.featured .bundle-name,
.bundle-card.featured .bundle-price,
.bundle-card.featured .bundle-per { color: var(--white); }
.bundle-card:hover .bundle-btn,
.bundle-card.featured .bundle-btn { background: var(--white); color: var(--black); }
.bundle-card:hover .bundle-badge,
.bundle-card.featured .bundle-badge { background: rgba(248,248,245,.1); color: rgba(248,248,245,.45); }
.bundle-badge { position: absolute; top: 18px; right: 18px; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; padding: 5px 11px; background: var(--offwhite); color: var(--gray); transition: all .4s; }
.bundle-cans { font-family: var(--font-display); font-size: 84px; color: var(--black); line-height: 1; margin-bottom: 3px; transition: color .4s; }
.bundle-name { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--gray); margin-bottom: 36px; display: block; transition: color .4s; }
.bundle-price { font-family: var(--font-display); font-size: 44px; color: var(--black); margin-bottom: 5px; transition: color .4s; }
.bundle-per { font-size: 13px; color: var(--gray); margin-bottom: 36px; display: block; transition: color .4s; }
.bundle-btn { display: block; width: 100%; padding: 13px; background: var(--black); color: var(--white); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; border: none; text-align: center; transition: background .3s, color .3s; }

/* ── CTA BANNER ────────────────────────────────────────────── */
.cta-banner { background: var(--black); padding: 100px 56px; text-align: center; }
.cta-banner__title { font-family: var(--font-display); font-size: clamp(52px,7vw,104px); color: var(--white); line-height: .9; margin-bottom: 36px; }
.cta-banner__sub { font-size: 16px; color: var(--gray); max-width: 440px; margin: 0 auto 44px; font-weight: 300; line-height: 1.7; }

/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer { background: var(--white); padding: 80px 56px 40px; border-top: 1px solid var(--silver); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-logo img { height: 28px; width: auto; margin-bottom: 14px; }
.footer-tagline { font-size: 14px; color: var(--gray); font-weight: 300; max-width: 250px; line-height: 1.6; }
.footer-col-title { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--silver); margin-bottom: 18px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 14px; color: var(--gray); transition: color .2s; }
.footer-links a:hover { color: var(--black); }
.footer-bottom { border-top: 1px solid var(--silver); padding-top: 28px; display: flex; justify-content: space-between; align-items: flex-start; gap: 36px; }
.footer-legal { font-size: 11px; color: var(--silver); line-height: 1.6; max-width: 540px; }
.footer-copy { font-size: 11px; color: var(--silver); white-space: nowrap; }

/* ── SCROLL REVEAL ─────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .1s; } .reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; } .reveal.d4 { transition-delay: .4s; }
.reveal.d5 { transition-delay: .5s; } .reveal.d6 { transition-delay: .6s; }
.reveal.d7 { transition-delay: .7s; }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .product-buy { grid-template-columns: 1fr 420px; }
  .product-form { padding: 40px 36px; }
  .product-specs { grid-template-columns: 1fr 1fr; }
  .why-section { grid-template-columns: 1fr; }
  .ingredients__grid { grid-template-columns: repeat(4,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .site-header { padding: 0 24px; }
  .header-nav, .header-cart-btn { display: none; }
  .hero__content { padding: 120px 24px 60px; max-width: 100%; }
  .hero__overlay { background: rgba(255,255,255,.85); }
  .hero__stats { flex-direction: column; gap: 14px; }
  .hero__stat { border-right: none; border-bottom: 1px solid rgba(15,15,15,.1); padding: 0 0 14px; }
  .hero__stat:last-child { border-bottom: none; }
  .ingredients, .how-section, .why-section, .testimonials, .bundles, .cta-banner { padding: 80px 24px; }
  .ingredients__grid { grid-template-columns: repeat(2,1fr); }
  .how-grid, .bundles__grid { grid-template-columns: 1fr; }
  .how-card { border-right: none; border-bottom: 1px solid var(--silver); }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .site-footer { padding: 60px 24px 32px; }
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
}

/* ── COMING SOON / EMAIL SIGNUP ────────────────────────────── */

/* Coming soon badge in product form */
.coming-soon-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--charcoal); margin-bottom: 20px;
  padding: 10px 16px; background: var(--offwhite);
  border: 1px solid var(--silver);
}
.coming-soon-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(.8); }
}

/* Email signup block inside product form */
.email-signup-block { margin-bottom: 20px; }
.email-signup-label {
  font-size: 13px; color: var(--gray); margin-bottom: 12px;
}
.email-signup-row { display: flex; gap: 0; }
.email-input {
  flex: 1; padding: 15px 18px; border: 1px solid var(--silver);
  border-right: none; font-family: var(--font-body); font-size: 14px;
  color: var(--black); background: var(--white); outline: none;
  transition: border-color .2s;
}
.email-input:focus { border-color: var(--black); }
.email-input::placeholder { color: var(--gray); }
.email-submit-btn {
  padding: 15px 24px; background: var(--black); color: var(--white);
  border: 1px solid var(--black); font-family: var(--font-body);
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 500; white-space: nowrap;
  transition: background .2s;
}
.email-submit-btn:hover { background: var(--charcoal); }
.signup-success {
  font-size: 13px; color: #1a6b1a; margin-top: 10px;
  padding: 10px 14px; background: #d6f0d6; border: 1px solid #b0ddb0;
}
.signup-error {
  font-size: 13px; color: #8b1a1a; margin-top: 10px;
  padding: 10px 14px; background: #fddede; border: 1px solid #f0b0b0;
}

/* Bundle notify button tweak */
.bundle-notify-btn { font-size: 10px !important; letter-spacing: .1em !important; }

/* ── SIGNUP MODAL ──────────────────────────────────────────── */
.signup-modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(15,15,15,.6); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease);
}
.signup-modal-overlay.open { opacity: 1; pointer-events: all; }
.signup-modal {
  background: var(--white); width: 100%; max-width: 480px;
  padding: 56px 48px; position: relative;
  transform: translateY(20px); transition: transform .35s var(--ease);
}
.signup-modal-overlay.open .signup-modal { transform: translateY(0); }
.signup-modal-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; font-size: 24px;
  color: var(--gray); line-height: 1; padding: 4px;
  transition: color .2s;
}
.signup-modal-close:hover { color: var(--black); }
.signup-modal-logo {
  font-family: var(--font-display); font-size: 36px;
  color: var(--black); margin-bottom: 20px; letter-spacing: 1px;
}
.signup-modal-title {
  font-family: var(--font-display); font-size: 40px;
  color: var(--black); line-height: .95; margin-bottom: 14px;
}
.signup-modal-sub {
  font-size: 14px; color: var(--gray); line-height: 1.65;
  margin-bottom: 28px; font-weight: 300;
}
.signup-modal-row { display: flex; gap: 0; }
.signup-modal-fine {
  font-size: 11px; color: var(--gray); margin-top: 12px;
  letter-spacing: .03em;
}

/* ── CTA EMAIL FORM ────────────────────────────────────────── */
.cta-email-form { max-width: 520px; margin: 0 auto; }
.cta-form-row { display: flex; gap: 0; }
.cta-email-input {
  flex: 1; padding: 17px 20px; border: 1px solid rgba(255,255,255,.2);
  border-right: none; font-family: var(--font-body); font-size: 14px;
  color: var(--white); background: rgba(255,255,255,.08); outline: none;
  transition: border-color .2s;
}
.cta-email-input:focus { border-color: rgba(255,255,255,.5); }
.cta-email-input::placeholder { color: rgba(255,255,255,.4); }
.cta-submit-btn {
  padding: 17px 28px; background: var(--white); color: var(--black);
  border: none; font-family: var(--font-body); font-size: 12px;
  letter-spacing: .12em; text-transform: uppercase; font-weight: 500;
  white-space: nowrap; transition: background .2s;
}
.cta-submit-btn:hover { background: var(--silver); }
.cta-signup-success {
  font-size: 14px; color: rgba(255,255,255,.75);
  margin-top: 14px; letter-spacing: .03em;
}

@media (max-width: 768px) {
  .email-signup-row, .cta-form-row, .signup-modal-row { flex-direction: column; gap: 8px; }
  .email-input, .cta-email-input { border-right: 1px solid var(--silver); }
  .signup-modal { padding: 40px 28px; margin: 16px; max-width: calc(100% - 32px); }
  .cta-email-input { border-right: 1px solid rgba(255,255,255,.2); }
}

/* ══════════════════════════════════════════════════════════════
   PURPLE HOVER — all black buttons turn purple on hover
   ══════════════════════════════════════════════════════════════ */


.btn-primary:hover { background: var(--accent) !important; transform: translateY(-2px); }
.header-cart-btn:hover         { background: var(--accent) !important; transform: translateY(-1px); }
.email-submit-btn:hover { background: var(--accent) !important; }

.bundle-btn:hover { background: var(--accent) !important; color: var(--white) !important; }
.bundle-card:hover             { background: var(--accent) !important; transform: translateY(-6px); }
.bundle-card.featured          { background: var(--accent) !important; }
.t-nav:hover                   { background: var(--accent) !important; border-color: var(--accent) !important; color: var(--white); }
.how-card:hover                { background: var(--accent) !important; }
.stat-card:hover               { background: var(--accent) !important; }
.ing-card::after               { background: var(--accent) !important; }
.pack-btn.active               { background: var(--accent) !important; border-color: var(--accent) !important; }
.pack-btn:hover:not(.active)   { border-color: var(--accent); color: var(--accent); }
.cta-submit-btn:hover          { background: var(--silver) !important; }
.coming-soon-dot               { background: var(--accent) !important; }
.cursor                        { transition: background .2s; }
body.cursor-hover .cursor      { background: var(--accent); }

/* ══════════════════════════════════════════════════════════════
   MOBILE — complete rewrite for phones
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── NAV ── */
  .site-header { padding: 0 20px; height: 60px; }
  .header-nav  { display: none; }
  .header-cart-btn {
    padding: 8px 18px; font-size: 10px;
  }
  .header-logo img { height: 18px; }

  /* ── HERO ── */
  .hero { min-height: 100svh; }
  .hero__overlay {
    background: linear-gradient(
      to bottom,
      rgba(255,255,255,.82) 0%,
      rgba(255,255,255,.78) 55%,
      rgba(255,255,255,.55) 80%,
      rgba(255,255,255,0)   100%
    );
  }
  .hero__content {
    padding: 90px 24px 60px;
    max-width: 100%;
  }
  .hero__title { font-size: clamp(64px, 16vw, 96px); }
  .hero__sub   { font-size: 15px; max-width: 100%; margin-top: 18px; }
  .hero__actions { flex-direction: column; gap: 10px; margin-top: 28px; }
  .hero__actions .btn-primary,
  .hero__actions .btn-outline { width: 100%; text-align: center; padding: 16px; font-size: 12px; }
  .hero__stats {
    flex-direction: row !important;
    gap: 0; flex-wrap: nowrap; margin-top: 36px;
  }
  .hero__stat {
    flex: 1; padding: 0 12px;
    border-right: 1px solid rgba(15,15,15,.1) !important;
    border-bottom: none !important; padding-bottom: 0 !important;
  }
  .hero__stat:last-child { border-right: none !important; }
  .hero__stat:nth-child(2) { padding: 0 12px; }
  .hero__stat-num { font-size: 28px; }
  .hero__stat-lbl { font-size: 10px; }

  /* ── TICKER ── */
  .ticker { display: none; }

  /* ── INGREDIENTS ── */
  .ingredients { padding: 64px 20px; }
  .ingredients__grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 32px;
  }
  .ing-card { padding: 28px 18px; }
  .ing-card__dose { font-size: 28px; }
  .ing-card__name--big { font-size: 18px; }

  /* ── PRODUCT — MOBILE STACKED ── */
  .product-buy {
    display: flex !important;
    flex-direction: column !important;
    min-height: unset !important;
    grid-template-columns: none !important;
  }
  /* Mobile: form first, photo second (action above fold) */
  .product-form {
    order: 1;
    padding: 36px 20px 32px;
    border-left: none;
    border-bottom: 1px solid #eeeeea;
  }
  .product-photo {
    order: 2;
    min-height: 300px;
    height: 60vw;
    max-height: 420px;
  }
  .product-photo img {
    object-fit: cover;
    object-position: center top;
  }
  .product-title { font-size: clamp(34px, 9vw, 48px); }
  .product-desc  { font-size: 14px; margin-bottom: 20px; }
  .product-specs { grid-template-columns: 1fr 1fr; margin-bottom: 24px; }
  .product-spec  { padding: 12px 14px; }
  .product-spec__value { font-size: 14px; }

  .product-price__main { font-size: 44px; }
  .pack-selector { gap: 6px; margin-bottom: 16px; }
  .pack-btn { padding: 12px 4px; font-size: 10px; }
  .coming-soon-badge { font-size: 10px; padding: 9px 14px; margin-bottom: 16px; }
  .email-signup-label { font-size: 13px; margin-bottom: 10px; }
  .email-signup-row { flex-direction: column; gap: 8px; }
  .email-input {
    border-right: 1px solid var(--silver) !important;
    padding: 14px 16px; font-size: 16px; /* 16px prevents iOS zoom */
  }
  .email-submit-btn { padding: 14px 20px; font-size: 11px; }
  .cart-trust { flex-wrap: wrap; font-size: 10px; gap: 4px; }

  /* ── HOW ── */
  .how-section { padding: 64px 20px; }
  .how-grid { grid-template-columns: 1fr; }
  .how-card {
    border-right: none; border-bottom: 1px solid var(--silver);
    padding: 40px 24px;
  }
  .how-card:last-child { border-bottom: none; }

  /* ── WHY ── */
  .why-section { grid-template-columns: 1fr; padding: 64px 20px; gap: 48px; }
  .comp-feat   { font-size: 12px; padding: 12px 12px; }
  .comp-cel    { padding: 12px 8px; font-size: 14px; }
  .stat-grid   { grid-template-columns: 1fr 1fr; }
  .stat-card   { padding: 32px 20px; }
  .stat-num    { font-size: 44px; }

  /* ── TESTIMONIALS ── */
  .testimonials { padding: 64px 20px; }
  .testimonials__outer { margin: 40px -20px 0; padding: 0 20px; }
  .testimonial-card { min-width: 280px; padding: 28px; }
  .testimonial-text { font-size: 14px; }

  /* ── BUNDLES ── */
  .bundles { padding: 64px 20px; }
  .bundles__grid { grid-template-columns: 1fr; gap: 1px; }
  .bundle-card { padding: 40px 28px; transform: none !important; }
  .bundle-cans { font-size: 64px; }
  .bundle-price { font-size: 36px; }
  .bundle-btn { font-size: 11px; padding: 14px; }

  /* ── CTA ── */
  .cta-banner { padding: 72px 20px; }
  .cta-banner__title { font-size: clamp(44px, 12vw, 72px); }
  .cta-form-row { flex-direction: column; gap: 8px; }
  .cta-email-input {
    border-right: 1px solid rgba(255,255,255,.2) !important;
    padding: 16px 18px;
    font-size: 16px; /* prevent iOS zoom */
  }
  .cta-submit-btn { padding: 16px 20px; font-size: 12px; }

  /* ── FOOTER ── */
  .site-footer { padding: 48px 20px 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .footer-legal { font-size: 10px; }

  /* ── MODAL ── */
  .signup-modal {
    margin: 16px;
    max-width: calc(100% - 32px);
    padding: 40px 24px;
  }
  .signup-modal-row { flex-direction: column; gap: 8px; }
  .signup-modal-row .email-input {
    border-right: 1px solid var(--silver) !important;
    font-size: 16px;
  }
  .signup-modal-title { font-size: 32px; }

  /* Cursor off on mobile */
  body { cursor: auto !important; }
  .cursor, .cursor-ring { display: none !important; }
}

/* Small phones */
@media (max-width: 390px) {
  .hero__stats { flex-direction: column; gap: 16px; }
  .hero__stat { border-right: none !important; border-bottom: 1px solid rgba(15,15,15,.08) !important; padding: 0 0 16px !important; }
  .hero__stat:last-child { border-bottom: none !important; }
  .hero__stat:nth-child(2) { padding: 0 0 16px !important; }
  .ingredients__grid { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero__bg { transform: none !important; }
  .ticker__track { animation: none; }
  .coming-soon-dot { animation: none; }
}

/* Focus visible for keyboard nav */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .hero__overlay { background: rgba(255,255,255,.95); }
  .ing-card, .how-card, .bundle-card { border: 2px solid var(--black); }
}

/* ── SKIP LINK (accessibility) ─────────────────────────────── */
.skip-link {
  position: absolute; top: -100px; left: 20px; z-index: 9999;
  background: var(--accent); color: var(--white);
  padding: 10px 20px; font-size: 14px; font-weight: 500;
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* ── SAFE AREA (iPhone notch/home bar) ─────────────────────── */
.site-footer {
  padding-bottom: max(40px, env(safe-area-inset-bottom));
}
.site-header {
  padding-left: max(56px, env(safe-area-inset-left));
  padding-right: max(56px, env(safe-area-inset-right));
}
@media (max-width: 768px) {
  .site-header {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }
  .hero__content {
    padding-left: max(24px, env(safe-area-inset-left));
    padding-right: max(24px, env(safe-area-inset-right));
    padding-top: max(90px, calc(60px + env(safe-area-inset-top)));
  }
}

/* ── NAV ACTIVE STATE ─────────────────────────────────────── */
.nav-link.nav-active { color: var(--black) !important; }
.header-nav .nav-link:hover { color: var(--black); }

/* ── INNER PAGES — MOBILE ─────────────────────────────────── */
@media (max-width: 768px) {

  /* All inner page sections */
  section[style*="padding:100px 56px"],
  section[style*="padding:120px 56px"] {
    padding: 64px 20px 48px !important;
  }

  /* Kill all multi-column grids on mobile */
  div[style*="grid-template-columns:1fr 1fr"],
  div[style*="grid-template-columns:1fr 1fr 1fr"],
  div[style*="grid-template-columns:repeat(4,1fr)"],
  div[style*="grid-template-columns:repeat(3,1fr)"],
  div[style*="grid-template-columns:2fr 1fr 1fr 1fr"],
  div[style*="grid-template-columns:80px 1fr 300px"] {
    grid-template-columns: 1fr !important;
  }

  /* Ingredient cards stacked */
  div[style*="grid-template-columns:80px 1fr 300px"] > div {
    border-left: none !important;
    border-top: 1px solid var(--silver) !important;
  }

  /* About founder box */
  div[style*="background:var(--black);padding:48px"] {
    padding: 32px 24px !important;
  }

  /* Press facts grid */
  div[style*="grid-template-columns:2fr 1fr 1fr 1fr"] {
    display: none !important; /* hide table header on mobile */
  }

  /* Page headings */
  h1[style*="font-size:clamp(48px"] {
    font-size: clamp(40px, 12vw, 64px) !important;
    margin-bottom: 16px !important;
  }

  /* CTA blocks */
  div[style*="text-align:center;padding:56px"],
  div[style*="padding:56px;background:var(--black)"],
  div[style*="background:var(--black);padding:56px"] {
    padding: 40px 24px !important;
  }

  /* Contact form grid */
  div[style*="display:grid;grid-template-columns:1fr 1fr;gap:80px"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
  }

  /* Values grid in About */
  div[style*="display:grid;grid-template-columns:repeat(3,1fr);gap:40px"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
  }

  /* How it works timeline */
  div[style*="grid-template-columns:120px 1fr"] {
    grid-template-columns: 80px 1fr !important;
  }

  /* FAQ item padding */
  summary[style*="padding:28px 0"] {
    padding: 20px 0 !important;
    font-size: 15px !important;
  }

  /* Retail why-carry grid */
  div[style*="grid-template-columns:1fr 1fr 1fr"] {
    display: flex !important;
    flex-direction: column !important;
  }

  /* Partner types grid */
  div[style*="grid-template-columns:1fr 1fr;gap:16px"] {
    grid-template-columns: 1fr !important;
  }

  /* Info boxes in contact */
  div[style*="margin-bottom:48px"] { margin-bottom: 32px !important; }

  /* Inline flex CTAs with links */
  div[style*="display:flex;align-items:center;justify-content:space-between;padding:32px 40px"] {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px !important;
    padding: 24px 20px !important;
  }
  div[style*="display:flex;align-items:center;justify-content:space-between;padding:32px 40px"] a {
    margin-left: 0 !important;
    width: 100% !important;
    text-align: center !important;
  }

  /* Ingredient card number column */
  div[style*="display:flex;align-items:flex-start;justify-content:center;padding:40px 20px"] {
    display: none !important;
  }

  /* Reduce padding in offwhite boxes */
  div[style*="background:var(--black);padding:40px"],
  div[style*="background:var(--offwhite);padding:40px"] {
    padding: 28px 20px !important;
  }

  /* Spec rows in how it works */
  div[style*="display:grid;grid-template-columns:2fr 1fr 1fr 1fr;padding:18px 24px"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    padding: 14px 16px !important;
  }
}

@media (max-width: 480px) {
  section[style*="padding:100px 56px"],
  section[style*="padding:120px 56px"] {
    padding: 48px 16px 40px !important;
  }
  h1[style*="font-size:clamp(48px"] {
    font-size: 36px !important;
    line-height: 1 !important;
  }
}

/* ── iPHONE SPECIFIC ─────────────────────────────────────── */
@media (max-width: 390px) {
  .header { padding: 0 16px; }
  .header-logo { font-size: 22px; }
  .header-nav { gap: 16px; }
  .header-nav a { font-size: 10px; letter-spacing: .1em; }
  .header-cart-btn { font-size: 10px; }

  /* Inner pages */
  section[style*="padding:100px 56px"],
  section[style*="padding:120px 56px"] {
    padding: 48px 16px 40px !important;
  }
  h1 { font-size: 34px !important; }
  .footer-bottom { font-size: 10px; padding: 16px; }
  .footer-top { padding: 40px 16px 32px; gap: 32px; }
}

/* Make sure all inner page grids fully collapse on iPhone */
@media (max-width: 768px) {
  /* Force single column on ALL grids in inner pages */
  section > div[style*="display:grid"] {
    display: flex !important;
    flex-direction: column !important;
  }

  /* Ingredient rows */
  div[style*="grid-template-columns:80px 1fr 300px"] {
    display: flex !important;
    flex-direction: column !important;
  }
  div[style*="grid-template-columns:80px 1fr 300px"] > div:first-child {
    display: none !important;
  }
  div[style*="grid-template-columns:80px 1fr 300px"] > div {
    border-left: none !important;
    border-top: 1px solid var(--silver) !important;
    padding: 24px 20px !important;
  }

  /* Fix fact/brand cards */
  div[style*="grid-template-columns:repeat(4,1fr);gap:1px"] {
    display: flex !important;
    flex-direction: column !important;
  }
  div[style*="grid-template-columns:repeat(4,1fr);gap:1px"] > div {
    border-bottom: 1px solid var(--silver) !important;
  }

  /* Retail table */
  div[style*="grid-template-columns:2fr 1fr 1fr 1fr"] {
    grid-template-columns: 1fr 1fr !important;
    font-size: 12px !important;
  }

  /* Press claims grid */
  div[style*="display:grid;grid-template-columns:1fr 1fr;gap:24px"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  /* Nutrition row in ingredients */
  div[style*="display:grid;grid-template-columns:1fr 1fr;gap:1px"] {
    display: flex !important;
    flex-direction: column !important;
  }

  /* How it works timeline steps */
  div[style*="grid-template-columns:120px 1fr;gap:0;margin-bottom:1px"] {
    display: flex !important;
    flex-direction: row !important; /* keep timestamp left on mobile */
  }
  div[style*="grid-template-columns:120px 1fr;gap:0;margin-bottom:1px"] > div:first-child {
    min-width: 72px !important;
    width: 72px !important;
    padding: 20px 10px !important;
  }
  div[style*="grid-template-columns:120px 1fr;gap:0;margin-bottom:1px"] > div:last-child {
    padding: 20px 16px !important;
  }

  /* Science grid in how it works */
  div[style*="display:grid;grid-template-columns:1fr 1fr;gap:32px"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }
  div[style*="display:grid;grid-template-columns:1fr 1fr;gap:32px"] > div {
    padding: 20px !important;
  }

  /* Retail partner types */
  div[style*="grid-template-columns:1fr 1fr;gap:16px"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
  }

  /* Why carry Lull grid */
  div[style*="grid-template-columns:1fr 1fr 1fr"] {
    display: flex !important;
    flex-direction: column !important;
  }
  div[style*="grid-template-columns:1fr 1fr 1fr"] > div {
    padding: 24px 20px !important;
  }

  /* Contact form inputs - prevent iOS zoom */
  input[type="text"],
  input[type="email"],
  select,
  textarea {
    font-size: 16px !important;
  }
}

/* ── ADD TO CART ─────────────────────────────────────────── */
.add-to-cart-btn {
  width: 100%; padding: 16px; background: var(--black); color: white;
  border: none; font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 500; cursor: pointer; font-family: inherit;
  transition: background .2s; margin-bottom: 0;
}
.add-to-cart-btn:hover { background: #333; }
.add-to-cart-btn:disabled { background: #aaa; cursor: not-allowed; }
.pdp-btns .add-to-cart-btn { flex: 1; margin-bottom: 0; }

/* ── FAQ ITEM ────────────────────────────────────────────── */
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item[open] .faq-icon { transform: rotate(45deg); }

/* ── CTA BANNER — SHOP BUTTONS ───────────────────────────── */
.cta-banner__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.cta-primary-btn {
  display: inline-block; padding: 15px 48px;
  background: white; color: var(--black);
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 500; text-decoration: none; transition: opacity .2s;
}
.cta-primary-btn:hover { opacity: .88; }
.cta-secondary-btn {
  display: inline-block; padding: 15px 48px;
  background: transparent; color: white;
  border: 1px solid rgba(255,255,255,.35);
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 500; text-decoration: none; transition: border-color .2s;
}
.cta-secondary-btn:hover { border-color: white; }
.cta-banner__trust { font-size: 12px; color: rgba(255,255,255,.4); display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-trust-dot { color: rgba(255,255,255,.2); }
@media (max-width: 600px) {
  .cta-banner__btns { flex-direction: column; align-items: center; }
  .cta-primary-btn, .cta-secondary-btn { width: 100%; max-width: 320px; text-align: center; }
}

/* ── FDA DISCLAIMER ─────────────────────────────────────── */
.footer-legal {
  padding: 24px 56px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 8px;
}
.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,.3);
  line-height: 1.7;
  max-width: 900px;
  font-weight: 300;
}
.ps-fda-note {
  font-size: 10px;
  color: #aaa;
  line-height: 1.6;
  margin-top: 14px;
  font-weight: 300;
  font-style: italic;
}
@media (max-width: 768px) {
  .footer-legal { padding: 20px 20px 0; }
}

/* ── FOOTER LEGAL LINKS ──────────────────────────────────── */
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { font-size: 11px; color: rgba(255,255,255,.3); text-decoration: none; transition: color .2s; }
.footer-legal-links a:hover { color: rgba(255,255,255,.7); }
@media (max-width: 600px) {
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal-links { flex-wrap: wrap; justify-content: center; gap: 12px; }
}
