:root {
  --navy: #06294b;
  --ink: #09233d;
  --blue: #0b6fb3;
  --teal: #13aeca;
  --aqua: #8ee7f5;
  --ice: #f2fcff;
  --muted: #667b91;
  --line: rgba(6, 41, 75, .12);
  --shadow: 0 34px 90px rgba(6, 41, 75, .16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f8fdff 0%, #fff 46%, #eefbff 100%);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.hero {
  width: min(1180px, calc(100% - 32px));
  min-height: 790px;
  margin: 14px auto 74px;
  border: 4px solid rgba(6, 41, 75, .75);
  border-radius: 28px;
  background: linear-gradient(180deg, #f7fdff 0%, #fff 58%, #edfaff 100%);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.nav {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  padding: 22px 34px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
}

.hamburger {
  width: 30px;
  height: 22px;
  border: 0;
  background: transparent;
  padding: 0;
  display: grid;
  gap: 7px;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
}

.nav-links {
  position: absolute;
  top: 78px;
  left: 80px;
  display: grid;
  gap: 7px;
  font-size: 11px;
  font-weight: 900;
  color: var(--blue);
}

.nav-links a:first-child::before {
  content: "→";
  margin-right: 14px;
}

.logo {
  width: 126px;
  height: 126px;
  padding: 11px;
  border-radius: 50%;
  justify-self: center;
  background: rgba(255,255,255,.96);
  box-shadow: 0 16px 34px rgba(6,41,75,.12);
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.socials {
  justify-self: end;
  display: flex;
  gap: 12px;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(6,41,75,.16);
}

.socials svg {
  width: 18px;
  height: 18px;
  fill: var(--navy);
}

.hero-inner {
  position: absolute;
  inset: 0;
}

.vertical-text {
  position: absolute;
  left: 36px;
  bottom: 90px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  font-weight: 900;
  color: rgba(6,41,75,.42);
  z-index: 8;
}

.hero-title-wrap {
  position: absolute;
  left: 76px;
  top: 166px;
  width: 55%;
  z-index: 6;
}

.title-kicker {
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900;
  color: var(--blue);
  font-size: 22px;
}

h1 {
  margin: 0;
  font-size: clamp(112px, 13.4vw, 198px);
  line-height: .78;
  letter-spacing: -.105em;
  color: var(--navy);
  font-weight: 900;
}

.hero-orb {
  position: absolute;
  left: 56%;
  bottom: -510px;
  transform: translateX(-50%);
  width: 880px;
  height: 880px;
  border-radius: 50%;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 24%, rgba(255,255,255,.76), transparent 24%),
    linear-gradient(180deg, rgba(142,231,245,.92), rgba(142,231,245,.34));
}

.hero-bottle-float {
  position: absolute;
  left: 58%;
  top: 238px;
  width: 355px;
  height: 520px;
  z-index: 10;
  pointer-events: none;
  animation: bottleFloatDesktop 4.4s ease-in-out infinite;
  will-change: transform;
}

.hero-bottle {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: rotate(-16deg);
  transform-origin: center;
  filter: drop-shadow(0 32px 44px rgba(6,41,75,.24));
}

.hero-shadow {
  position: absolute;
  left: 58%;
  bottom: 158px;
  transform: translateX(-50%);
  width: 310px;
  height: 58px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(6,41,75,.22), transparent 66%);
  filter: blur(10px);
  z-index: 4;
  animation: ripple 4.5s ease-in-out infinite;
}

.hero-copy {
  position: absolute;
  right: 58px;
  bottom: 178px;
  width: 325px;
  z-index: 14;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 900;
  color: var(--blue);
}

h2 {
  margin: 0 0 22px;
  font-size: clamp(44px, 6.4vw, 88px);
  line-height: .88;
  letter-spacing: -.075em;
  font-weight: 900;
  color: var(--ink);
}

.hero-copy h2 {
  font-size: 34px;
}

.minimum {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(6,41,75,.14);
  box-shadow: 0 10px 24px rgba(6,41,75,.08);
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 16px 32px rgba(11,111,179,.24);
}

.btn.light {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
}

.scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 11px;
  font-weight: 900;
  color: rgba(6,41,75,.25);
  margin: 0;
}

.brand-strip {
  width: min(1060px, calc(100% - 32px));
  margin: 0 auto 92px;
  padding: 24px 32px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line);
  box-shadow: 0 16px 54px rgba(6,41,75,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-align: center;
  font-weight: 900;
}

.brand-strip img {
  width: 265px;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 112px;
}

.split {
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  gap: 52px;
  align-items: center;
}

.section p:not(.eyebrow),
.price-head p,
.final p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.image-card {
  overflow: hidden;
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.delivery {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 46px;
  align-items: start;
}

.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.steps article {
  min-height: 200px;
  padding: 28px;
  border-radius: 30px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 16px 44px rgba(6,41,75,.07);
}

.steps span {
  display: block;
  font-size: 52px;
  line-height: .9;
  color: var(--aqua);
  font-weight: 900;
  margin-bottom: 20px;
}

.steps strong {
  display: block;
  font-size: 23px;
  margin-bottom: 8px;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.prices {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 112px;
}

.price-head {
  max-width: 780px;
  margin-bottom: 32px;
}

.price-grid {
  display: grid;
  gap: 22px;
}

.price-card {
  min-height: 250px;
  padding: 28px 42px 28px 28px;
  border-radius: 42px;
  color: white;
  display: grid;
  grid-template-columns: 205px 1fr;
  gap: 8px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.16), transparent 48%);
}

.product-image {
  position: relative;
  z-index: 2;
  width: 164px;
  height: 174px;
  margin: 0 auto;
  border-radius: 30px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.white-card {
  background: #fff;
  box-shadow: 0 16px 34px rgba(6,41,75,.18), inset 0 0 0 1px rgba(6,41,75,.06);
}

.product-image img {
  width: auto;
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 8px 15px rgba(6,41,75,.18));
}

.price-content {
  position: relative;
  z-index: 2;
}

.price-card h3 {
  margin: 0 0 16px;
  font-size: 34px;
  letter-spacing: -.05em;
}

.row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.22);
  font-size: 20px;
}

.row b {
  white-space: nowrap;
  font-size: 24px;
}

.blue { background: linear-gradient(135deg, #08284a, #0b6fb3); }
.teal { background: linear-gradient(135deg, #0a597a, #13aeca); }
.aqua { background: linear-gradient(135deg, #147e9d, #73d8e8); }

.trike img {
  height: 640px;
}

.final {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 46px;
  padding: 70px 28px 42px;
  border-radius: 46px;
  text-align: center;
  background: linear-gradient(180deg, #fff, #edfaff);
  box-shadow: var(--shadow);
}

.final > img {
  width: 126px;
  margin: 0 auto 20px;
}

.actions,
.footer-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.actions {
  margin: 24px 0;
}

.footer-links {
  margin: 24px 0 10px;
}

.footer-links a {
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: white;
  font-weight: 800;
}

.small {
  font-size: 14px !important;
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  padding: 14px 20px;
  border-radius: 999px;
  background: #25D366;
  color: white;
  font-weight: 900;
  box-shadow: 0 18px 38px rgba(37,211,102,.35);
}



@keyframes ripple {
  0%, 100% { transform: translateX(-50%) scaleX(1); opacity: .55; }
  50% { transform: translateX(-50%) scaleX(1.14); opacity: .35; }
}

/* Policy pages */
.policy-page { background: linear-gradient(180deg, #f6fcff 0%, #ffffff 100%); }
.policy-wrap { width: min(980px, calc(100% - 32px)); margin: 28px auto 60px; }
.policy-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.policy-top .brand-mini { display: flex; align-items: center; gap: 14px; font-weight: 800; }
.policy-top img { width: 52px; height: 52px; object-fit: contain; }
.back-link { padding: 12px 16px; border: 1px solid var(--line); border-radius: 999px; background: white; font-weight: 700; }
.policy-hero { padding: 48px; border-radius: 34px; background: linear-gradient(180deg, #ffffff, #eefbff); box-shadow: var(--shadow); margin-bottom: 24px; }
.policy-hero p { margin: 10px 0 0; font-size: 17px; line-height: 1.7; color: var(--muted); }
.policy-body { padding: 40px 42px; border-radius: 34px; background: white; box-shadow: var(--shadow); }
.policy-body h2 { font-size: 28px; margin: 30px 0 10px; letter-spacing: -.03em; }
.policy-body ul { padding-left: 22px; }
.policy-body li { margin-bottom: 10px; }
.policy-links-inline { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px; }
.policy-links-inline a { padding: 10px 14px; border-radius: 999px; border: 1px solid var(--line); background: #f8fcfe; font-weight: 700; }

@media (max-width: 980px) {
  .hero { min-height: 860px; }
  .nav-links, .vertical-text { display: none; }
  .hero-title-wrap { left: 26px; top: 138px; width: 68%; }
  h1 { font-size: 92px; }
  .hero-bottle-float { width: 270px; height: 390px; top: 248px; left: 61%; }
  .hero-copy { left: 28px; right: auto; bottom: 68px; width: 320px; }
  .brand-strip, .split, .delivery { display: grid; grid-template-columns: 1fr; }
  .brand-strip { border-radius: 34px; gap: 16px; }
  .brand-strip img { width: 240px; }
  .steps { grid-template-columns: 1fr; }
  .price-card { grid-template-columns: 1fr; padding: 24px; }
  .product-image { margin-bottom: 16px; }
  .row { flex-direction: column; gap: 4px; }
  .image-card img, .trike img { height: 420px; }
}

@media (max-width: 560px) {
  .hero { width: calc(100% - 18px); border-width: 3px; border-radius: 20px; min-height: 820px; }
  .nav { padding: 18px 22px; }
  .logo { width: 82px; height: 82px; }
  .socials a { width: 32px; height: 32px; }
  h1 { font-size: 58px; }
  .hero-bottle-float { width: 210px; height: 310px; top: 300px; left: 62%; }
  .hero-orb { width: 650px; height: 650px; bottom: -410px; }
  .hero-copy { width: 270px; bottom: 62px; }
  .hero-copy h2 { font-size: 30px; }
  .policy-hero, .policy-body { padding: 28px 22px; }
}

.product-showcase {
  min-height: 560px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(142,231,245,.38), transparent 34%),
    linear-gradient(180deg, #ffffff, #eefbff);
}

.product-showcase img {
  width: min(360px, 72%);
  height: auto;
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 28px 40px rgba(6,41,75,.18));
}

@media (max-width: 980px) {
  .product-showcase {
    min-height: 420px;
  }

  .product-showcase img {
    width: min(270px, 70%);
    max-height: 360px;
  }
}

@media (max-width: 560px) {
  .product-showcase {
    min-height: 360px;
  }

  .product-showcase img {
    width: min(220px, 70%);
  }
}


/* Final mobile/product visibility fixes */
.product-showcase {
  min-height: 560px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(142,231,245,.42), transparent 36%),
    linear-gradient(180deg, #ffffff, #eefbff);
}
.product-showcase img {
  width: min(360px, 72%);
  height: auto;
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 28px 40px rgba(6,41,75,.18));
}

@media (max-width: 560px) {
  .hero {
    min-height: auto !important;
    overflow: hidden;
  }
  .hero-inner {
    position: relative !important;
    inset: auto !important;
    min-height: auto;
    padding: 150px 28px 40px;
    display: flex;
    flex-direction: column;
  }
  .hero-title-wrap {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    z-index: 7;
    order: 1;
  }
  .hero-title-wrap .the,
  .title-kicker {
    font-size: 20px;
    margin-bottom: 8px;
  }
  h1, .hero-title {
    font-size: clamp(58px, 18vw, 76px) !important;
    line-height: .82 !important;
    max-width: 92%;
  }
  .hero-orb {
    position: absolute !important;
    left: 52% !important;
    top: 430px !important;
    bottom: auto !important;
    width: 640px !important;
    height: 640px !important;
    z-index: 1;
  }
  .hero-bottle,
  .hero-main-bottle {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: min(285px, 74vw) !important;
    height: 360px !important;
    margin: 28px auto 16px !important;
    transform: rotate(-14deg) !important;
    transform-origin: center center !important;
    z-index: 10 !important;
    object-fit: contain !important;
    order: 2;
    display: block !important;
    opacity: 1 !important;
    filter: drop-shadow(0 28px 38px rgba(6,41,75,.22));
  }
  .hero-shadow,
  .hero-ripple {
    position: absolute !important;
    left: 52% !important;
    top: 710px !important;
    bottom: auto !important;
    width: 240px !important;
    height: 46px !important;
    z-index: 4;
  }
  .hero-copy,
  .hero-message {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    z-index: 14;
    order: 3;
    margin-top: 16px;
  }
  .hero-copy h2,
  .hero-message h2 {
    font-size: clamp(32px, 10vw, 42px) !important;
    line-height: .9 !important;
    max-width: 96%;
  }
  .minimum,
  .min-order {
    margin-top: 8px;
  }
  .scroll,
  .vertical-text,
  .vertical-copy {
    display: none !important;
  }
  .product-showcase {
    min-height: 390px !important;
    border-radius: 34px;
  }
  .product-showcase img {
    display: block !important;
    width: min(250px, 68vw) !important;
    height: auto !important;
    max-height: 330px !important;
    opacity: 1 !important;
  }
  .product-image,
  .product-badge {
    width: 170px !important;
    height: 185px !important;
    background: #fff !important;
    border-radius: 28px !important;
  }
  .product-image img,
  .product-badge img {
    height: 160px !important;
    width: auto !important;
    display: block !important;
    opacity: 1 !important;
  }
}







/* Final bottle animation fix: animate the wrapper, not the image */
@keyframes bottleFloatDesktop {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-26px);
  }
}

@keyframes bottleFloatMobile {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-34px);
  }
}

@media (max-width: 560px) {
  .hero-bottle-float {
    animation: bottleFloatMobile 3.4s ease-in-out infinite !important;
    will-change: transform;
  }

  .hero-bottle {
    transform: rotate(-14deg);
  }
}


/* FINAL CLEAN MOBILE FIX
   Purpose:
   - remove the huge empty mobile gap
   - keep the bottle floating
   - stop the bottle from sitting behind the text
   - keep the CTA/minimum order visible
   - center the Cape Aqua partner strip
*/
@media (max-width: 560px) {
  body {
    overflow-x: hidden;
  }

  .hero {
    width: calc(100% - 18px) !important;
    min-height: 980px !important;
    margin: 10px auto 44px !important;
    border-width: 3px !important;
    border-radius: 22px !important;
    overflow: hidden !important;
  }

  .nav {
    padding: 18px 20px 0 !important;
  }

  .hamburger {
    transform: translateY(12px) !important;
  }

  .logo {
    width: 82px !important;
    height: 82px !important;
    padding: 8px !important;
  }

  .socials {
    gap: 10px !important;
  }

  .socials a {
    width: 34px !important;
    height: 34px !important;
  }

  .nav-links,
  .vertical-text,
  .scroll {
    display: none !important;
  }

  .hero-title-wrap {
    position: absolute !important;
    top: 145px !important;
    left: 28px !important;
    width: calc(100% - 56px) !important;
    z-index: 12 !important;
  }

  .title-kicker,
  .hero-title-wrap .title-kicker {
    margin-bottom: 8px !important;
    font-size: 22px !important;
    text-align: left !important;
  }

  h1,
  .hero-title {
    font-size: 64px !important;
    line-height: .84 !important;
    letter-spacing: -.095em !important;
    max-width: 92% !important;
  }

  .hero-orb {
    width: 660px !important;
    height: 660px !important;
    left: 50% !important;
    bottom: -285px !important;
    z-index: 1 !important;
  }

  .hero-bottle-float {
    position: absolute !important;
    top: 365px !important;
    left: 63% !important;
    width: 205px !important;
    height: 315px !important;
    z-index: 8 !important;
    animation: bottleFloatMobileClean 3.6s ease-in-out infinite !important;
    will-change: transform !important;
    pointer-events: none !important;
  }

  .hero-bottle {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    transform: rotate(-14deg) !important;
    filter: drop-shadow(0 24px 32px rgba(6,41,75,.22)) !important;
  }

  .hero-shadow {
    position: absolute !important;
    top: 655px !important;
    left: 60% !important;
    bottom: auto !important;
    width: 180px !important;
    height: 38px !important;
    z-index: 4 !important;
  }

  .hero-copy {
    position: absolute !important;
    top: 650px !important;
    left: 28px !important;
    right: auto !important;
    bottom: auto !important;
    width: calc(100% - 56px) !important;
    z-index: 16 !important;
  }

  .hero-copy .eyebrow,
  .eyebrow {
    font-size: 12px !important;
    letter-spacing: .16em !important;
  }

  .hero-copy h2 {
    font-size: 32px !important;
    line-height: .9 !important;
    max-width: 84% !important;
    margin-bottom: 18px !important;
  }

  .minimum {
    margin-bottom: 14px !important;
    padding: 11px 16px !important;
  }

  .hero-copy .btn {
    width: min(300px, 82vw) !important;
    justify-content: center !important;
  }

  .wa-float {
    right: 14px !important;
    bottom: 18px !important;
    padding: 14px 20px !important;
    font-size: 18px !important;
  }

  .brand-strip {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 12px !important;
    padding: 24px 18px !important;
    border-radius: 30px !important;
    margin-bottom: 56px !important;
  }

  .brand-strip span {
    width: 100% !important;
    text-align: center !important;
  }

  .brand-strip img {
    width: min(260px, 80vw) !important;
    margin: 0 auto !important;
  }

  .section,
  .prices,
  .final {
    width: calc(100% - 28px) !important;
  }

  .split,
  .delivery {
    grid-template-columns: 1fr !important;
  }

  .section h2,
  .delivery h2,
  .price-head h2,
  .final h2 {
    font-size: 42px !important;
  }

  .product-showcase,
  .image-card.product-showcase {
    min-height: 360px !important;
  }

  .product-showcase img,
  .image-card.product-showcase img {
    display: block !important;
    width: min(210px, 58vw) !important;
    max-height: 320px !important;
    margin: 0 auto !important;
    object-fit: contain !important;
  }

  .price-card {
    grid-template-columns: 1fr !important;
    padding: 24px !important;
    min-height: auto !important;
  }

  .product-image,
  .product-badge {
    width: 170px !important;
    height: 180px !important;
    margin: 0 auto 18px !important;
  }

  .product-image img,
  .product-badge img {
    height: 155px !important;
    width: auto !important;
    object-fit: contain !important;
  }

  .row,
  .price-row {
    flex-direction: column !important;
    gap: 4px !important;
  }
}

@keyframes bottleFloatMobileClean {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-22px);
  }
}

/* Tablet/mobile landscape positioning */
@media (min-width: 561px) and (max-width: 980px) {
  .hero {
    min-height: 880px !important;
  }

  .hero-title-wrap {
    top: 150px !important;
    left: 34px !important;
    width: 62% !important;
  }

  .hero-bottle-float,
  .hero-bottle {
    z-index: 9 !important;
  }

  .hero-bottle-float {
    top: 330px !important;
    left: 63% !important;
    width: 245px !important;
    height: 365px !important;
  }

  .hero-copy {
    top: 610px !important;
    left: 34px !important;
    bottom: auto !important;
    width: calc(100% - 68px) !important;
    z-index: 16 !important;
  }

  .brand-strip {
    justify-items: center !important;
    text-align: center !important;
  }
}


/* ===== FINAL HANDOFF FIXES: MOBILE HERO + WORKING MENU ===== */

/* Make hamburger clickable above everything */
.hamburger {
  cursor: pointer;
  position: relative;
  z-index: 1002;
}

/* Mobile menu hidden by default */
.mobile-menu {
  display: none;
}

/* Subtle shadow instead of giant black oval */
.hero-shadow {
  background: radial-gradient(ellipse at center, rgba(6,41,75,.14), rgba(6,41,75,0) 68%) !important;
}

/* Menu drawer styling */
@media (max-width: 980px) {
  .mobile-menu {
    position: absolute;
    top: 70px;
    left: 28px;
    z-index: 1001;
    display: block;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .22s ease, transform .22s ease;
  }

  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu-panel {
    min-width: 170px;
    padding: 20px 22px;
    border-radius: 24px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(6,41,75,.12);
    box-shadow: 0 20px 50px rgba(6,41,75,.16);
    display: grid;
    gap: 14px;
  }

  .mobile-menu-panel a {
    font-size: 20px;
    line-height: 1;
    font-weight: 900;
    color: var(--blue);
  }

  .mobile-menu-panel a:first-child::before {
    content: "→";
    margin-right: 12px;
  }
}

/* Final iPhone/mobile composition */
@media (max-width: 560px) {
  .hero {
    min-height: 1030px !important;
    margin-top: 10px !important;
  }

  .nav {
    padding: 18px 22px 0 !important;
  }

  .hamburger {
    transform: none !important;
    margin-top: 22px !important;
  }

  .mobile-menu {
    top: 92px !important;
    left: 48px !important;
  }

  .mobile-menu-panel {
    min-width: 185px !important;
    padding: 22px 24px !important;
  }

  .mobile-menu-panel a {
    font-size: 20px !important;
  }

  .hero-title-wrap {
    top: 210px !important;
    left: 28px !important;
    width: calc(100% - 56px) !important;
    z-index: 12 !important;
  }

  h1,
  .hero-title {
    font-size: 58px !important;
    line-height: .84 !important;
    max-width: 92% !important;
  }

  .title-kicker,
  .hero-title-wrap .title-kicker {
    font-size: 22px !important;
    margin-bottom: 8px !important;
  }

  /* Bring the bottle up into the hero/orb area without covering the wording */
  .hero-bottle-float {
    top: 440px !important;
    left: 63% !important;
    width: 205px !important;
    height: 315px !important;
    z-index: 8 !important;
    animation: bottleFloatMobileClean 3.6s ease-in-out infinite !important;
  }

  .hero-bottle {
    transform: rotate(-14deg) !important;
  }

  .hero-orb {
    width: 680px !important;
    height: 680px !important;
    left: 52% !important;
    bottom: -260px !important;
    z-index: 1 !important;
  }

  .hero-shadow {
    top: 705px !important;
    left: 61% !important;
    bottom: auto !important;
    width: 170px !important;
    height: 34px !important;
    z-index: 4 !important;
    background: radial-gradient(ellipse at center, rgba(6,41,75,.12), rgba(6,41,75,0) 68%) !important;
    filter: blur(9px) !important;
  }

  /* Bring the selling copy back into view and above the browser bar area */
  .hero-copy {
    top: 740px !important;
    left: 28px !important;
    right: auto !important;
    bottom: auto !important;
    width: calc(100% - 56px) !important;
    z-index: 16 !important;
  }

  .hero-copy h2 {
    font-size: 30px !important;
    line-height: .9 !important;
    max-width: 78% !important;
    margin-bottom: 16px !important;
  }

  .minimum {
    display: inline-flex !important;
    margin-bottom: 14px !important;
  }

  .hero-copy .btn {
    width: min(295px, 82vw) !important;
  }

  .wa-float {
    right: 16px !important;
    bottom: 16px !important;
    z-index: 1000 !important;
  }

  .scroll,
  .vertical-text,
  .nav-links {
    display: none !important;
  }
}

/* Slightly wider mobile/tablet final tune */
@media (min-width: 561px) and (max-width: 980px) {
  .hero {
    min-height: 850px !important;
  }

  .hero-title-wrap {
    top: 148px !important;
    left: 34px !important;
    width: 58% !important;
  }

  .hero-bottle-float {
    top: 318px !important;
    left: 62% !important;
    width: 245px !important;
    height: 365px !important;
  }

  .hero-copy {
    top: 600px !important;
    left: 34px !important;
    bottom: auto !important;
    width: calc(100% - 68px) !important;
  }
}



/* FINAL CLEANUP: no duplicated 'The' on hero */
.title-kicker {
  display: none !important;
}

/* Product cards: clean white background, no checkerboard/square pattern */
.product-image.white-card,
.product-image,
.product-badge {
  background: #ffffff !important;
  overflow: hidden !important;
}

.product-image img,
.product-badge img {
  mix-blend-mode: normal !important;
  background: transparent !important;
}

/* Mobile: keep product images neat inside the white cards */
@media (max-width: 560px) {
  .product-image,
  .product-badge {
    background: #ffffff !important;
  }
}
