/** Shopify CDN: Minification failed

Line 1954:12 Expected identifier but found whitespace
Line 1954:13 Unexpected "100%"
Line 1962:2 Unexpected "0%"
Line 1968:2 Unexpected "50%"
Line 3857:13 Expected "}" to go with "{"

**/
:root {
  --purple-900: #003561;
  --purple-800: #003561;
  --purple-700: #003561;
  --purple-500: #91B9EA;
  --purple-300: #91B9EA;
  --purple-100: #EAF2FF;
  --purple-50: #EAF2FF;
  --yellow: #91B9EA;
  --yellow-soft: #EAF2FF;
  --pink: #EAF2FF;
  --cream: #EAF2FF;
  --ink: #003561;
  --muted: #91B9EA;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block
}

a {
  color: inherit;
  text-decoration: none
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #003561;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  filter: brightness(0) invert(1);
  width: auto;
  object-fit: contain;
}

.mobile-menu-toggle {
  display: none !important;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 6px;
  margin-right: 12px;
}

.links {
  display: flex;
  gap: 28px;
  margin: 0 auto;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.links a {
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  transition: opacity .2s, color .2s;
  text-decoration: none;
}

.links a:hover {
  color: #ffffff;
  opacity: 1;
}

.links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #38bdf8;
  transition: width .25s;
}

.links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-end;
}

.cta-pill {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all .2s;
}

.cta-pill:hover {
  background: #ffffff;
  color: #003561;
  transform: translateY(-2px);
}

.nav-cart-btn {
  position: relative;
  color: #ffffff;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #ef4444;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 15, 30, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 340px;
  height: 100%;
  background: #002240;
  color: #ffffff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.3);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.is-open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-close {
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu-links a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-menu-links a:hover {
  color: #38bdf8;
}

.mobile-menu-footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media(max-width: 992px) {
  .mobile-menu-toggle {
    display: flex !important;
  }
  .links {
    display: none !important;
  }
  .cta-pill {
    display: none;
  }
}

/* HERO SECTION RE-DESIGN */
.hero {
  position: relative;
  background: #ffffff !important;
  min-height: 505px;
  max-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 20px 0 0 0;
}

.hero-container {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: flex-end;
  gap: 32px;
  position: relative;
  z-index: 2;
  height: 100%;
}

/* Left Column - Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
}

.hero-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-can-img {
  width: 160%;
  height: auto;
  max-height: 781px;
  object-fit: contain;
  transform: scale(2) translateY(20px);
  transform-origin: bottom center;
  mask-image: radial-gradient(ellipse 44% 64% at 50% 50%, black 30%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 44% 64% at 50% 50%, black 30%, transparent 72%);
  margin-bottom: -30px;
  transition: transform 0.4s ease;
}

.hero-img-wrapper:hover .hero-can-img {
  transform: scale(2.04) translateY(18px);
}

/* Floating Badges Feature - Positioned Closer Around Hand */
.hero-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 16px;
  border-radius: 16px;
  border: 1px solid rgba(0, 53, 97, 0.12);
  box-shadow: 0 14px 32px rgba(0, 37, 77, 0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  animation: floatBadge 4s ease-in-out infinite alternate;
}

.hero-badge i {
  font-size: 22px;
  color: #003561;
  background: #e0f2fe;
  padding: 8px;
  border-radius: 12px;
}

.hero-badge strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #00274d;
  line-height: 1.1;
}

.hero-badge span {
  font-size: 11px;
  color: #475569;
  font-weight: 600;
}

.badge-1 {
  top: -36%;
  left: 8%;
  animation-delay: 0s;
}

.badge-2 {
  bottom: 46%;
  left: 6%;
  animation-delay: 1.2s;
}

.badge-3 {
  top: -4%;
  right: 6%;
  animation-delay: 2.4s;
}

@keyframes floatBadge {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

/* Right Column - Content */
.hero-content {
  text-align: left;
  max-width: 580px;
  padding-bottom: 105px;
}

.hero-eyebrow-wrapper {
  margin-bottom: 12px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 53, 97, 0.08);
  color: #003561;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border: 1px solid rgba(0, 53, 97, 0.15);
}

.hero-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #00274d;
  margin-bottom: 12px;
}

.hero-heading-highlight {
  display: block;
  background: linear-gradient(135deg, #003561 0%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 900;
}

.hero-feature-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.hero-feature-tags .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #003561;
  background: #f1f5f9;
  padding: 5px 12px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.hero-feature-tags .tag-divider {
  color: #94a3b8;
  font-weight: 700;
}

.hero-subtext {
  font-size: 15px;
  line-height: 1.5;
  color: #334155;
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.btn-hero-primary {
  background: #003561;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 10px 25px -5px rgba(0, 53, 97, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-hero-primary:hover {
  background: #002240;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -6px rgba(0, 53, 97, 0.45);
}

.btn-hero-secondary {
  background: #ffffff;
  color: #003561 !important;
  border: 2px solid #003561 !important;
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(0, 53, 97, 0.12);
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: #003561;
  color: #ffffff !important;
  border-color: #003561 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 53, 97, 0.25);
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .hero {
    min-height: auto;
    max-height: none;
    padding: 32px 0 0 0;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
    text-align: center;
    align-items: flex-end;
  }

  .hero-content {
    order: 1;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    padding-bottom: 10px;
  }

  .hero-visual {
    order: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

  .hero-img-wrapper {
    max-width: 360px;
    margin: 0 auto;
  }

  .hero-img-wrapper:hover .hero-can-img {
    transform: scale(1.2) translateY(18px) !important;
  }

  .hero-feature-tags {
    justify-content: center;
  }

  .hero-ctas {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .hero-can-img {
    width: 120%;
    max-height: 380px;
    transform: scale(1.2) translateY(18px);
    margin-bottom: 0;
  }

  .hero-badge {
    display: none !important;
  }
}


/* SECTION HEADS */
.chip {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 13px
}

.chip-yellow {
  background: var(--yellow);
  color: var(--purple-900);
  border: 2px solid var(--purple-900)
}

h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--purple-900);
  margin-top: 14px
}

.under {
  position: relative;
  display: inline-block
}

.under::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 14px;
  background: var(--yellow);
  z-index: -1;
  border-radius: 4px
}

.section-head {
  max-width: 760px;
  margin: 0 auto 56px auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-head p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  text-align: center;
}

/* OVERVIEW */
.overview {
  padding: 120px 0;
  background: linear-gradient(180deg, #fff 0%, var(--purple-50) 100%)
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: left;
}

.ov-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  border: 1.5px solid var(--purple-100);
  transition: transform .35s, box-shadow .35s, border-color .35s;
}

.ov-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -30px rgba(106, 61, 245, .35);
  border-color: var(--purple-300)
}

.ov-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--purple-900);
  color: var(--yellow);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  line-height: 1
}

.ov-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2;
  stroke: var(--yellow);
  fill: none
}

.ov-card h3{font-family:'Poppins',sans-serif;font-size:22px;color:var(--purple-900);margin-bottom:8px;text-align:left;}
.ov-card p{color:var(--muted);font-size:14.5px;line-height:1.55;text-align:left;}

.overview-strip {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: var(--purple-900);
  color: #fff;
  border-radius: 28px;
  padding: 36px;
  text-align: center;
}

.overview-strip strong {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  color: var(--yellow);
  display: block;
  line-height: 1
}

.overview-strip span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: .8
}

@media(max-width:880px) {

  .overview-grid,
  .overview-strip {
    grid-template-columns: repeat(2, 1fr)
  }
}

/* INGREDIENTS */
.ingredients {
  padding: 120px 0;
  background: var(--purple-50);
  text-align: center
}

.ingredients h2 {
  margin-bottom: 60px
}

.arc-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  height: 520px
}

.arc-wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border: 2px dashed var(--purple-300);
  border-radius: 50%;
  opacity: .6;
}

.spoon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(106, 61, 245, .4)
}

.spoon img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.ing {
  position: absolute;
  max-width: 240px;
  text-align: left
}

.ing h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  color: var(--purple-900);
  margin-bottom: 6px;
  position: relative;
  padding-left: 14px
}

.ing h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple-700)
}

.ing p {
  color: var(--muted);
  font-size: 14.5px;
  padding-left: 14px
}

.ing-tl {
  top: 60px;
  left: 0
}

.ing-tr {
  top: 60px;
  right: 0;
  text-align: right
}

.ing-tr h4 {
  padding-left: 0;
  padding-right: 14px
}

.ing-tr h4::before {
  left: auto;
  right: 0
}

.ing-tr p {
  padding-left: 0;
  padding-right: 14px
}

.ing-bl {
  bottom: 60px;
  left: 30px
}

.ing-br {
  bottom: 60px;
  right: 30px;
  text-align: right
}

.ing-br h4 {
  padding-left: 0;
  padding-right: 14px
}

.ing-br h4::before {
  left: auto;
  right: 0
}

.ing-br p {
  padding-left: 0;
  padding-right: 14px
}

@media(max-width:780px) {
  .arc-wrap {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px
  }

  .arc-wrap::before {
    display: none
  }

  .spoon {
    position: static;
    transform: none;
    grid-column: 1/-1;
    margin: 20px auto;
    width: 180px;
    height: 180px
  }

  .ing {
    position: static;
    max-width: none
  }

  .ing-tr,
  .ing-br {
    text-align: left
  }

  .ing-tr h4,
  .ing-br h4 {
    padding-left: 14px;
    padding-right: 0
  }

  .ing-tr h4::before,
  .ing-br h4::before {
    left: 0;
    right: auto
  }

  .ing-tr p,
  .ing-br p {
    padding-left: 14px;
    padding-right: 0
  }
}

/* BENEFITS */
.benefits {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--purple-100) 0%, #cbb6ff 100%)
}

.ben-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.ben {
  background: var(--purple-900);
  color: #fff;
  border-radius: 24px;
  padding: 32px;
  position: relative;
  transition: transform .35s
}

.ben:hover {
  transform: translateY(-10px)
}

.ben-ic {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(145, 185, 234, 0.2);
  color: var(--yellow);
  display: grid;
  place-items: center;
  font-size: 26px;
  margin-bottom: 20px
}

.ben h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  color: var(--yellow);
  margin-bottom: 10px
}

.ben p {
  color: #e9e4ff;
  font-size: 15px;
  line-height: 1.6
}

.flavor {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  color: var(--purple-900)
}

.berries {
  font-size: 32px
}

@media(max-width:780px) {
  .ben-grid {
    grid-template-columns: 1fr
  }
}

/* ROUTINE */
.routine {
  padding: 120px 0;
  background: var(--cream)
}

.routine-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr 1fr;
  gap: 20px;
  grid-auto-rows: 240px
}

.routine-card {
  border-radius: 28px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: transform .35s
}

.routine-card:hover {
  transform: translateY(-6px)
}

.routine-card.pink {
  background: var(--pink)
}

.routine-card.light {
  background: #fff;
  border: 1.5px solid var(--purple-100);
  grid-row: span 2
}

.routine-card.berries {
  background: var(--pink);
  padding: 0
}

.routine-card.light img,
.routine-card.berries img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  z-index: 0
}

.routine-card.light .chip,
.routine-card.light p {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, .92);
  border-radius: 14px;
  padding: 8px 14px;
  align-self: flex-start
}

.routine-card.light p {
  padding: 12px 16px;
  max-width: 260px;
  font-weight: 500;
  color: var(--purple-900)
}

.routine-card p {
  color: var(--purple-900);
  font-size: 15px;
  line-height: 1.5
}

.routine-card .chip {
  align-self: flex-start
}

.big-num {
  font-family: 'Poppins', sans-serif;
  font-size: 120px;
  font-weight: 900;
  color: var(--purple-900);
  line-height: .9;
  opacity: .9
}

@media(max-width:880px) {
  .routine-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px
  }

  .routine-card.light {
    grid-row: auto;
    grid-column: span 2
  }
}

/* REVIEWS */
.reviews {
  padding: 120px 0;
  background: #fff;
  text-align: left
}

.reviews h2 {
  margin-bottom: 50px
}

.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.rev {
  background: var(--purple-50);
  border: 1.5px solid var(--purple-100);
  border-radius: 24px;
  padding: 30px;
  text-align: left;
  transition: transform .35s, border-color .35s
}

.rev:hover {
  transform: translateY(-6px);
  border-color: var(--purple-300)
}

.rev blockquote {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  line-height: 1.45;
  color: var(--purple-900)
}

.rev figcaption {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 500
}

@media(max-width:880px) {
  .rev-grid {
    grid-template-columns: 1fr
  }
}

/* BUY */
.buy {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--purple-900), var(--purple-700))
}

.buy-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  color: #fff
}

.buy h2 {
  color: #fff;
  margin-top: 14px
}

.buy p {
  margin-top: 16px;
  color: #e9e4ff;
  font-size: 16px;
  line-height: 1.6
}

.buy-card {
  background: #fff;
  border-radius: 28px;
  padding: 36px;
  text-align: center;
  color: var(--ink);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, .5)
}

.price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px
}

.old {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 18px
}

.now {
  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--purple-900)
}

.per {
  color: var(--muted);
  font-size: 14px
}

.buy-card small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px
}

@media(max-width:780px) {
  .buy-inner {
    grid-template-columns: 1fr
  }
}

/* FOOTER */
.foot {
  background: var(--purple-900);
  color: #fff;
  border-radius: 32px 32px 0 0;
  overflow: hidden;
}

/* Newsletter Bar */
.foot-newsletter {
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 48px 0;
}

.foot-newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.foot-nl-copy h3 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.foot-nl-copy p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.foot-nl-form {
  display: flex;
  gap: 0;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
}

.foot-nl-form input {
  padding: 14px 20px;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  width: 280px;
}

.foot-nl-form input::placeholder {
  color: rgba(255,255,255,0.4);
}

.foot-nl-form button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: #91B9EA;
  border: none;
  color: #003561;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.foot-nl-form button:hover {
  background: #EAF2FF;
}

.foot-nl-form button svg {
  width: 16px;
  height: 16px;
  stroke: var(--purple-900);
  stroke-width: 2.5;
}

/* Main Footer Grid */
.foot-main {
  padding: 64px 0 48px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.foot-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #91B9EA;
  margin-bottom: 20px;
}

.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.foot-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.foot-col ul li a:hover {
  color: #fff;
}

/* Brand Column */
.foot-logo {
  height: 72px;
  margin-bottom: 20px;
  display: block;
  filter: brightness(0) invert(1);
}

.foot-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
  margin-bottom: 28px;
}

.foot-socials {
  display: flex;
  gap: 12px;
}

.foot-socials a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
  color: rgba(255,255,255,0.7);
}

.foot-socials a:hover {
  background: rgba(145, 185, 234, 0.15);
  border-color: #91B9EA;
  color: #91B9EA;
}

.foot-socials a svg {
  width: 18px;
  height: 18px;
}

/* Contact Column */
.foot-contact {
  gap: 16px !important;
}

.foot-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.foot-contact li svg {
  width: 16px;
  height: 16px;
  stroke: #91B9EA;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}

.foot-contact li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.foot-contact li a:hover {
  color: #fff;
}

.foot-contact li span {
  line-height: 1.5;
}

/* Footer Bottom */
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}

.foot-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.foot-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.foot-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.foot-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s ease;
}

.foot-legal a:hover {
  color: rgba(255,255,255,0.8);
}

/* Footer Responsive */
@media(max-width: 1024px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 36px;
  }

  .foot-brand-col {
    grid-column: span 3;
  }
}

@media(max-width: 640px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .foot-brand-col {
    grid-column: span 2;
  }

  .foot-newsletter-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .foot-nl-form {
    width: 100%;
  }

  .foot-nl-form input {
    width: 100%;
    min-width: 0;
    flex: 1;
  }

  .foot-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .foot-legal {
    gap: 16px;
  }
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2, .8, .2, 1)
}

.reveal.in {
  opacity: 1;
  transform: none
}

/* FLAVORS SECTION - 3 COLUMNS IN A ROW */
.flavors {
  padding: 100px 0 120px;
  background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
  text-align: center;
}

.flavors-head {
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
}

.flavors-head h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 12px;
  color: #003561;
  line-height: 1.1;
}

.flavors-head h2 em {
  color: #003561;
  font-style: italic;
}

.flavors-head p {
  font-size: 16px;
  color: #4A5568;
  margin: 0 auto;
  line-height: 1.5;
}

.flavors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.flavor-card-item {
  background: #FFFFFF;
  border-radius: 28px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 53, 97, 0.06);
  border: 1px solid rgba(0, 53, 97, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.flavor-card-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 53, 97, 0.12);
}

.flavor-card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
}

.flavor-card-badge .swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: block;
}

.swatch-lime {
  background: linear-gradient(135deg, #b8ff4a, #6cd86a);
  box-shadow: 0 0 12px rgba(184, 255, 74, 0.6);
}

.swatch-berry {
  background: linear-gradient(135deg, #ff8fbf, #d96aa9);
  box-shadow: 0 0 12px rgba(255, 143, 191, 0.6);
}

.badge-mystery {
  background: #003561;
  color: #E8FF5A;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 12px;
}

/* Card background accents */
.flavor-card-lime {
  background: linear-gradient(180deg, #f4ffe8 0%, #FFFFFF 35%);
  border-color: rgba(184, 255, 74, 0.4);
}

.flavor-card-berry {
  background: linear-gradient(180deg, #fff0f5 0%, #FFFFFF 35%);
  border-color: rgba(255, 143, 191, 0.4);
}

.flavor-card-mystery {
  background: linear-gradient(180deg, #f1f5f9 0%, #FFFFFF 35%);
  border: 2px dashed rgba(0, 53, 97, 0.2);
}

.flavor-card-media {
  height: 250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  margin-top: 10px;
  position: relative;
}

.flavor-card-media img {
  max-height: 240px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.12));
  transition: transform 0.4s ease;
}

.flavor-card-item:hover .flavor-card-media img {
  transform: scale(1.06) rotate(-3deg);
}

/* Empty Mystery Card Placeholder */
.empty-can-placeholder {
  width: 130px;
  height: 210px;
  border-radius: 20px;
  border: 2px dashed rgba(0, 53, 97, 0.25);
  background: rgba(0, 53, 97, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
}

.mystery-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #003561;
  color: #E8FF5A;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.empty-can-placeholder p {
  font-size: 10px;
  font-weight: 700;
  color: #003561;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.3;
  text-align: center;
}

.flavor-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  flex: 1;
}

.flavor-card-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #003561;
  margin-bottom: 8px;
  line-height: 1.2;
}

.flavor-card-content h3 em {
  font-style: italic;
  color: #6cd86a;
}

.flavor-card-berry .flavor-card-content h3 em {
  color: #d96aa9;
}

.flavor-card-mystery .flavor-card-content h3 em {
  color: #003561;
}

.flavor-desc {
  font-size: 14px;
  color: #4A5568;
  line-height: 1.5;
  margin-bottom: 16px;
  min-height: 42px;
}

.flavor-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
  list-style: none;
  padding: 0;
}

.flavor-tags li {
  padding: 6px 12px;
  border-radius: 14px;
  background: rgba(0, 53, 97, 0.06);
  color: #003561;
  font-size: 12px;
  font-weight: 600;
}

.flavor-meta {
  display: flex;
  justify-content: space-around;
  width: 100%;
  padding: 14px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 24px;
  margin-top: auto;
}

.flavor-meta > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flavor-meta b {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #003561;
}

.flavor-meta span {
  font-size: 11px;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.btn-primary {
  background: #003561;
  color: #ffffff !important;
  box-shadow: 0 10px 25px -5px rgba(0, 53, 97, 0.25);
}

.btn-primary:hover {
  background: #002240;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -5px rgba(0, 53, 97, 0.4);
}

.btn-ghost {
  background: #ffffff;
  color: #003561 !important;
  border: 2px solid #003561;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.btn-ghost:hover {
  background: #003561;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.flavor-buy-btn {
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 14px;
  letter-spacing: 0.2px;
}

/* Pack Variant Selector Styling */
.flavor-variant-selector {
  width: 100%;
  margin-bottom: 20px;
  text-align: left;
}

.variant-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  color: #003561;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.selected-pack-text {
  color: #e53e3e;
  font-weight: 700;
  text-transform: none;
  font-size: 11px;
}

.selected-pack-text.has-selection {
  color: #2b6cb0;
}

.variant-pills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.variant-pill {
  padding: 8px 6px;
  border-radius: 12px;
  border: 1.5px solid rgba(0, 53, 97, 0.15);
  background: #FFFFFF;
  color: #003561;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}

.variant-pill:hover {
  border-color: #003561;
  background: rgba(0, 53, 97, 0.04);
}

.variant-pill.is-active {
  background: #003561;
  color: #E8FF5A;
  border-color: #003561;
  box-shadow: 0 4px 12px rgba(0, 53, 97, 0.25);
}

.variant-pills.has-error {
  animation: shakeError 0.4s ease;
}

.variant-error-msg {
  font-size: 11px;
  font-weight: 700;
  color: #e53e3e;
  margin-top: 8px;
  text-align: center;
}

@keyframes shakeError {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

/* Responsive Grid */
@media(max-width: 990px) {
  .flavors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media(max-width: 768px) {
  .flavor-card-mystery {
    display: none !important;
  }
}

@media(max-width: 640px) {
  .flavors-grid {
    grid-template-columns: 1fr;
  }
}
  max-width: 100%;
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, .4));
  animation: floatY 6s ease-in-out infinite, swayRot 9s ease-in-out infinite;
  transition: transform 0.3s ease;
  z-index: 10
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
    translate: 0 0;
  }

  50% {
    transform: translateY(-22px);
    translate: 0 -22px;
  }
}

@keyframes swayRot {
  0%,
  100% {
    rotate: -4deg;
  }

  50% {
    rotate: 4deg;
  }
}

.flavor-media:hover .rotate-can {
  transform: scale(1.04)
}

/* LIFESTYLE */
.lifestyle {
  padding: 120px 0;
  background: #fff
}

.lifestyle-grid {
  padding-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 20px;
}

.lifestyle-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  grid-column: span 1;
  grid-row: span 1;
  border: 1px solid #003561;
  transition: transform .5s, box-shadow .5s;
}

.lifestyle-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2, .9, .3, 1);
}

.lifestyle-card:hover img {
  transform: scale(1.08)
}

.lifestyle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px -20px rgba(106, 61, 245, .3)
}

.lifestyle-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, .85));
}

.lifestyle-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lifestyle-card figcaption span {
  font-size: 11px;
  letter-spacing: .22em;
  color: #91B9EA;
  text-transform: uppercase;
  font-weight: 600;
}

.lifestyle-card figcaption h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff
}

.lifestyle-card.tall {
  grid-row: span 2
}

.lifestyle-card.wide {
  grid-column: span 2
}

@media(max-width:880px) {
  .lifestyle-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px
  }

  .lifestyle-card.tall {
    grid-row: span 2
  }

  .lifestyle-card.wide {
    grid-column: span 2
  }
}

@media(max-width:540px) {
  .lifestyle-grid {
    grid-template-columns: 1fr
  }

  .lifestyle-card.tall,
  .lifestyle-card.wide {
    grid-row: auto;
    grid-column: auto
  }
}

/* OUR STORY */
.story {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: stretch;
}

.story-visual {
  display: flex;
  justify-content: center;
  height: 100%;
}

.story-card {
  background: #fff;
  border-radius: 32px;
  padding: 44px 36px;
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 100%;
  max-width: 440px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.story-logo-circle {
  width: 170px;
  height: 170px;
  background: #003561;
  border-radius: 50%;
  margin: 0 auto 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 16px 36px -10px rgba(0, 53, 97, 0.35);
  flex-shrink: 0;
}

.story-logo-circle img {
  max-width: 105px;
  height: auto;
  filter: brightness(0) invert(1);
}

.story-logo-circle span {
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  margin-top: 2px;
}

.story-logo-circle svg {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2;
}

.story-card blockquote {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #003561;
  line-height: 1.25;
  margin: 0;
}

.story-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  color: #003561;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.story-content h2 {
  font-size: clamp(34px, 4.5vw, 52px);
  color: #003561;
  margin-bottom: 24px;
  line-height: 1.1;
  font-weight: 800;
}

.story-content p {
  color: #002040;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.story-content strong {
  color: #003561;
  font-weight: 700;
}

.story-stats {
  display: flex;
  gap: 40px;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 53, 97, 0.15);
}

.story-stats div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.story-stats i {
  color: #003561 !important;
}

.story-stats b {
  font-family: 'Poppins', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: #003561;
  line-height: 1.1;
}

.story-stats span {
  font-size: 12px;
  color: #475569;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media(max-width:880px) {
  .story-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .story-card {
    padding: 32px;
  }
  
  .story-logo-circle {
    width: 160px;
    height: 160px;
  }
  
  .story-logo-circle img {
    height: 70px;
  }
}

/* MARQUEE BANNER */
.marquee-banner {
  position: relative;
  overflow: hidden;
  background: #91B9EA;
  color: #003561;
  padding: 16px 0;
  border-top: 2px solid #003561;
  border-bottom: 2px solid #003561;
  margin: 0;
}

.marquee-banner .marquee-track {
  display: inline-flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  align-items: center;
  text-transform: uppercase;
}

.marquee-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  animation: logoPop 0.6s ease-in-out infinite alternate;
}

@keyframes logoPop {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media(max-width:768px) {
  .marquee-banner .marquee-track {
    font-size: 12px;
    gap: 20px;
    animation-duration: 35s;
  }

  .marquee-logo {
    width: 24px;
    height: 24px;
  }
}

/* STATS STRIP */
.stats-strip {
  background: linear-gradient(135deg, #003561 0%, #002040 100%);
  color: #fff;
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%239DBCEA" opacity="0.1"/><circle cx="80" cy="80" r="2" fill="%239DBCEA" opacity="0.1"/><circle cx="50" cy="50" r="1" fill="%239DBCEA" opacity="0.05"/></svg>');
  background-size: 100px 100px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stats-grid div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stats-grid strong {
  font-size: 42px;
  font-weight: 900;
  font-family: 'Poppins', sans-serif;
  color: #91B9EA;
  letter-spacing: -1px;
}

.stats-grid span {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.7);
}

@media(max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stats-grid strong {
    font-size: 32px;
  }
}

/* REDESIGNED INGREDIENTS SECTION (SECTION 3) */
.ingredients {
  position: relative;
  padding: 60px 0 70px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  color: #003561;
}

.ingredients-head {
  margin-bottom: 36px;
}

.ingredients-head h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: #00274d;
  margin: 10px 0 6px 0;
  line-height: 1.15;
}

.ingredients-head h2 em {
  font-style: italic;
  background: linear-gradient(135deg, #003561 0%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ingredients-subtext {
  font-size: 15px;
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.ing-card {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid rgba(0, 53, 97, 0.1);
  box-shadow: 0 12px 32px rgba(0, 37, 77, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.ing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 37, 77, 0.12);
  border-color: rgba(0, 53, 97, 0.22);
}

.ing-card-media {
  position: relative;
  width: 100%;
  height: 200px;
  background: #001a33;
  overflow: hidden;
}

.ing-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.ing-card:hover .ing-card-media img {
  transform: scale(1.05);
}

.ing-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  color: #003561;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 53, 97, 0.1);
}

.ing-card-badge i {
  font-size: 14px;
  color: #003561;
}

.ing-card-content {
  padding: 18px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ing-card-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #00274d;
  margin-bottom: 2px;
  letter-spacing: -0.3px;
}

.ing-tagline {
  font-size: 12px;
  font-weight: 700;
  color: #0284c7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: block;
}

.ing-card-content p {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .ingredients-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
/* Responsive */
@media(max-width: 900px) {
  .ingredients {
    padding: 80px 0;
  }

  .ingredients .section-head {
    margin: 0 auto 36px;
  }

  .ingredients-list {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ingredient-title {
    font-size: 28px;
  }

  .ingredient-description {
    font-size: 15px;
  }
}

@media(max-width: 480px) {
  .ingredient-item {
    padding: 12px 0;
  }
}

/* VIDEO REVIEWS SECTION */
.reviews {
  padding: 100px 0 120px;
  background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 100%);
}

.reviews .section-head {
  text-align: center;
  margin: 0 auto 64px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.reviews .section-head h2 {
  font-size: clamp(36px, 5vw, 56px);
  color: #003561;
  text-align: center;
}

.reviews .section-head h2 em {
  color: #003561;
  font-style: italic;
}

.reviews .section-head p {
  max-width: 600px;
  margin: 16px auto 0 auto;
  color: #002040;
  font-size: 17px;
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.review-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(26, 11, 84, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px -20px rgba(26, 11, 84, 0.15);
}

.review-video {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  background: linear-gradient(135deg, #003561 0%, #00284c 100%);
  color: #fff;
  border-radius: 32px 32px 0 0;
}

.review-video iframe,
.review-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

.review-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  background: linear-gradient(135deg, #001a33 0%, #003561 50%, #001224 100%);
  overflow: hidden;
  border-radius: 32px 32px 0 0;
}

.review-video-placeholder::before {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(145, 185, 234, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
  animation: pulseGlow 3s ease-in-out infinite alternate;
}

.video-play-pulse {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: #91B9EA;
  font-size: 26px;
  box-shadow: 0 0 24px rgba(145, 185, 234, 0.3);
  position: relative;
  z-index: 2;
}

.review-coming-soon-badge {
  display: inline-block;
  background: rgba(145, 185, 234, 0.2);
  color: #91B9EA;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid rgba(145, 185, 234, 0.35);
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.review-coming-soon-tag {
  font-size: 13px;
  font-weight: 600;
  color: #e2e8f0;
  line-height: 1.4;
  max-width: 85%;
  margin: 0;
  position: relative;
  z-index: 2;
}

.review-content {
  padding: 24px;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow) 0%, #c8f08a 100%);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--purple-900);
  flex-shrink: 0;
}

.reviewer-meta h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--purple-900);
  margin-bottom: 2px;
}

.reviewer-meta span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.review-quote {
  font-size: 15px;
  line-height: 1.6;
  color: var(--purple-800);
  margin-bottom: 16px;
  font-style: italic;
}

.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rev-tag {
  padding: 6px 12px;
  background: rgba(232, 255, 90, 0.15);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  color: var(--purple-800);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive */
@media(max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 640px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .review-video {
    aspect-ratio: 16/9;
  }
}

/* COMMUNITY SECTION */
.community {
  padding: 100px 0 120px;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.community-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Single Image Media Container */
.community-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 32px 80px -20px rgba(0, 53, 97, 0.25);
  border: 1px solid rgba(0, 53, 97, 0.1);
}

.community-image {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.community-media:hover .community-image {
  transform: scale(1.03);
}

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slider-dot.active {
  background: var(--yellow);
  width: 24px;
}

/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 10;
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background: rgba(232, 255, 90, 0.3);
  border-color: var(--yellow);
}

.slider-arrow svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  stroke-width: 2.5;
}

.slider-arrow.prev { left: 16px; }
.slider-arrow.next { right: 16px; }

/* Community Copy */
.community-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.community-copy h2 {
  font-size: clamp(36px, 4vw, 52px);
  color: var(--purple-900);
  line-height: 1.15;
}

.community-copy h2 em {
  color: var(--purple-700);
  font-style: italic;
}

.community-copy > p {
  font-size: 16px;
  line-height: 1.65;
  color: #003561;
  font-weight: 500;
  max-width: 520px;
}

.community-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.community-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #003561;
}

.community-perks li svg {
  width: 20px;
  height: 20px;
  stroke: #003561;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  background: rgba(0, 53, 97, 0.08);
  border-radius: 8px;
  padding: 3px;
  box-sizing: content-box;
}

/* WhatsApp Community Button */
.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  width: fit-content;
  text-decoration: none;
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
  color: #FFFFFF;
}

.whatsapp-icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Community button uses standard .btn-primary */

/* Responsive */
@media(max-width: 900px) {
  .community-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .community-slider {
    aspect-ratio: 16/10;
  }
}

/* STICKY ADD TO CART BAR */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #91B9EA;
  border-top: 1px solid #003561;
  padding: 14px 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.1);
  box-shadow: 0 -8px 40px rgba(0, 53, 97, 0.2);
}

.sticky-bar.visible {
  transform: translateY(0);
}

.sticky-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}

.sticky-bar-form-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  margin: 0;
}

.sticky-product {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.sticky-can {
  width: 40px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 53, 97, 0.25));
}

.sticky-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sticky-name {
  font-size: 13px;
  font-weight: 700;
  color: #003561;
  white-space: nowrap;
}

.sticky-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.sticky-now {
  font-size: 18px;
  font-weight: 800;
  color: #003561;
  font-family: 'Poppins', sans-serif;
}

.sticky-old {
  font-size: 13px;
  color: rgba(0, 53, 97, 0.5);
  text-decoration: line-through;
}

.sticky-per {
  font-size: 12px;
  color: rgba(0, 53, 97, 0.6);
}

.sticky-variants {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.sticky-variant {
  padding: 8px 16px;
  border-radius: 20px;
  border: 1.5px solid rgba(0, 53, 97, 0.25);
  background: transparent;
  color: rgba(0, 53, 97, 0.8);
  font-size: 13px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sticky-variant:hover {
  border-color: #003561;
  color: #003561;
}

.sticky-variant.active {
  background: #003561;
  border-color: #003561;
  color: #ffffff;
}

.sticky-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.sticky-btn {
  padding: 12px 28px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.sticky-btn-outline {
  border: 1.5px solid #003561;
  color: #003561;
  background: transparent;
}

.sticky-btn-outline:hover {
  background: rgba(0, 53, 97, 0.1);
  border-color: #003561;
  color: #003561;
}

.sticky-btn-primary {
  background: #003561;
  color: #ffffff;
  border: 1.5px solid #003561;
}

.sticky-btn-primary:hover {
  background: #002444;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 53, 97, 0.3);
}

@media(max-width: 768px) {
  .sticky-bar {
    display: none !important;
  }
}

/* COMPARISON TABLE SECTION */
.comparison {
  padding: 100px 0;
  background: #FAFCFF;
}

.comparison .section-head {
  margin-bottom: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.comparison .section-head h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  color: #003561;
  font-weight: 800;
  margin-top: 12px;
  text-align: center;
  width: 100%;
}

.comparison .section-head p {
  text-align: center;
  max-width: 600px;
  margin: 12px auto 0 auto;
  color: #475569;
  font-size: 16px;
}

.comparison .section-head h2 em {
  color: #003561;
  font-style: italic;
}

.comparison-wrapper {
  max-width: 1020px;
  margin: 0 auto;
  position: relative;
}

.comparison-table {
  background: #FFFFFF;
  border: 2.5px solid #003561;
  border-radius: 36px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 48px rgba(0, 53, 97, 0.1);
  position: relative;
  overflow: hidden;
}

.comp-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.25fr;
  align-items: center;
  border-bottom: 1px solid rgba(0, 53, 97, 0.08);
  position: relative;
}

.comp-row:last-child {
  border-bottom: none;
}

.comp-col {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
}

.comp-col.col-category {
  justify-content: flex-start;
  text-align: left;
  gap: 12px;
  color: #003561;
  font-weight: 800;
  font-size: 15px;
}

.comp-col.col-category svg {
  width: 20px;
  height: 20px;
  stroke: #003561;
  flex-shrink: 0;
}

.comp-header {
  background: #FFFFFF;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #003561;
  border-bottom: 2px solid rgba(0, 53, 97, 0.15);
}

.comp-header .col-category {
  color: #003561;
  font-size: 14px;
  letter-spacing: 1px;
}

.comp-header .col-other {
  color: #475569;
  font-size: 13px;
  letter-spacing: 0.5px;
}

/* Floating SPLYN Column (Column 4) */
.comp-col.col-splyn {
  background: #003561;
  color: #FFFFFF;
  position: relative;
  z-index: 2;
  padding: 18px 24px;
}

.comp-header .col-splyn {
  background: #003561;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  padding: 22px 24px;
  box-shadow: 0 -8px 24px rgba(0, 53, 97, 0.25);
}

.comp-row:last-child .col-splyn {
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
  box-shadow: 0 12px 32px rgba(0, 53, 97, 0.3);
}

.comp-splyn-logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* Values & Badges styling */
.comp-val {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 20px;
}

.comp-no {
  color: #64748b;
  background: rgba(100, 116, 139, 0.08);
}

.comp-yes {
  color: #003561;
  background: rgba(0, 53, 97, 0.08);
}

.comp-splyn-yes {
  color: #34d399;
  background: rgba(52, 211, 153, 0.18);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 800;
}

.comp-splyn-no {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.18);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 800;
}

/* Icons styling */
.badge-icon {
  font-size: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none !important;
}

.cross-red {
  color: #EF4444;
  background: transparent;
  box-shadow: none !important;
}

.check-green {
  color: #10B981;
  background: transparent;
  box-shadow: none !important;
}

.check-green-bright {
  color: #10B981;
  background: transparent;
  box-shadow: none !important;
  font-size: 30px;
}

.comp-col.col-category i {
  font-size: 22px;
  color: #003561;
  flex-shrink: 0;
}

/* Mobile Responsiveness */
@media(max-width: 840px) {
  .comparison-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
  }

  .comparison-table {
    min-width: 660px;
  }
}

/* MINIMAL CART PAGE STYLES */
.cart-page-section {
  padding: 120px 0 100px;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--purple-50) 100%);
  min-height: 80vh;
}

.cart-page-head {
  text-align: center;
  margin-bottom: 50px;
}

.cart-page-head h1 {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--purple-900);
  font-weight: 800;
  margin-top: 10px;
}

.cart-page-head h1 em {
  font-style: italic;
  color: var(--purple-700);
}

.cart-head-subtitle {
  font-size: 16px;
  color: var(--purple-700);
  margin-top: 8px;
  opacity: 0.8;
}

.cart-page-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.cart-items-container {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(0, 53, 97, 0.08);
  box-shadow: 0 10px 40px rgba(0, 53, 97, 0.04);
}

.cart-items-header {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1.2fr 1fr;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 53, 97, 0.1);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--purple-700);
  opacity: 0.6;
}

.cart-item-row {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1.2fr 1fr;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0, 53, 97, 0.06);
}

.cart-item-row:last-child {
  border-bottom: none;
}

.cart-item-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-item-media {
  width: 72px;
  height: 84px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--purple-50);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 53, 97, 0.08);
}

.cart-item-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.cart-item-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-item-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--purple-900);
  text-decoration: none;
  transition: color 0.2s ease;
}

.cart-item-name:hover {
  color: #003561;
}

.cart-item-spec {
  font-size: 13px;
  color: var(--purple-700);
  opacity: 0.7;
}

.cart-item-remove-link {
  font-size: 12px;
  color: #EF4444;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  transition: opacity 0.2s ease;
}

.cart-item-remove-link:hover {
  opacity: 0.75;
}

.cart-item-unit-price,
.cart-item-line-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--purple-900);
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  background: var(--purple-50);
  border-radius: 20px;
  padding: 4px;
  border: 1px solid rgba(0, 53, 97, 0.1);
}

.qty-stepper .qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--purple-900);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.qty-stepper .qty-btn:hover {
  background: var(--purple-900);
  color: #FFFFFF;
}

.qty-stepper .qty-input {
  width: 36px;
  text-align: center;
  border: none;
  background: transparent;
  font-weight: 700;
  font-size: 14px;
  color: var(--purple-900);
  -moz-appearance: textfield;
}

.qty-stepper .qty-input::-webkit-outer-spin-button,
.qty-stepper .qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-actions-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 53, 97, 0.08);
}

.cart-summary-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(0, 53, 97, 0.08);
  box-shadow: 0 10px 40px rgba(0, 53, 97, 0.04);
  position: sticky;
  top: 100px;
}

.cart-summary-card h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--purple-900);
  margin-bottom: 24px;
}

.cart-summary-card h2 em {
  font-style: italic;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--purple-900);
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(0, 53, 97, 0.15);
  margin-bottom: 16px;
}

.summary-amount {
  font-size: 22px;
  font-weight: 800;
  color: var(--purple-900);
}

.summary-shipping-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--purple-700);
  margin-bottom: 24px;
  opacity: 0.8;
}

.summary-checkout-actions .cart-checkout-btn {
  width: 100%;
  padding: 16px 28px;
  font-size: 16px;
  border-radius: 30px;
  background: var(--purple-900);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 53, 97, 0.25);
  border: none;
  cursor: pointer;
}

.summary-checkout-actions .cart-checkout-btn:hover {
  background: #002444;
  transform: translateY(-2px);
}

.cart-trust-badges {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 53, 97, 0.08);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--purple-700);
  opacity: 0.75;
}

.cart-empty-wrapper {
  text-align: center;
  max-width: 500px;
  margin: 60px auto;
  padding: 48px 32px;
  background: #FFFFFF;
  border-radius: 28px;
  border: 1px solid rgba(0, 53, 97, 0.08);
  box-shadow: 0 10px 40px rgba(0, 53, 97, 0.04);
}

.cart-empty-icon {
  margin-bottom: 20px;
}

.cart-empty-wrapper h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--purple-900);
  margin-bottom: 12px;
}

.cart-empty-wrapper p {
  font-size: 15px;
  color: var(--purple-700);
  margin-bottom: 28px;
  opacity: 0.8;
}

@media(max-width: 900px) {
  .cart-page-grid {
    grid-template-columns: 1fr;
  }
  .cart-items-header {
    display: none;
  }
  .cart-item-row {
    grid-template-columns: 1fr;
    gap: 16px;
    position: relative;
  }
  .cart-item-unit-price {
    display: none;
  }
}

/* POLICY & LEGAL PAGES */
.policy-page {
  padding: 80px 0 120px 0;
  background: #f8fafc;
  min-height: 80vh;
}

.policy-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.policy-header {
  margin-bottom: 48px;
}

.policy-header h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: #003561;
  margin: 12px 0 8px 0;
}

.policy-last-updated {
  font-size: 13px;
  color: #64748b;
  font-weight: 600;
}

.policy-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

.policy-sidebar {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(0, 53, 97, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 100px;
}

.policy-sidebar h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #003561;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.policy-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.policy-nav-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  color: #475569;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.policy-nav-list a:hover {
  background: rgba(0, 53, 97, 0.05);
  color: #003561;
}

.policy-nav-list a.active {
  background: #003561;
  color: #ffffff;
}

.policy-support-card {
  background: #f1f5f9;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}

.policy-support-card i {
  font-size: 32px;
  color: #003561;
  margin-bottom: 8px;
}

.policy-support-card h5 {
  font-size: 15px;
  font-weight: 800;
  color: #003561;
  margin-bottom: 4px;
}

.policy-support-card p {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 14px;
  line-height: 1.4;
}

.policy-content-body {
  background: #ffffff;
  border-radius: 24px;
  padding: 48px;
  border: 1px solid rgba(0, 53, 97, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  line-height: 1.8;
  color: #334155;
  font-size: 15px;
}

.policy-content-body h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #003561;
  margin: 32px 0 12px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 53, 97, 0.08);
}

.policy-content-body h2:first-child {
  margin-top: 0;
}

.policy-content-body p {
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .policy-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .policy-sidebar {
    position: static;
  }
  .policy-content-body {
    padding: 24px;
  }
}

/* END CSS */