:root {
  --hot-pink: #ff2d78;
  --electric-yellow: #ffe600;
  --lime: #b8ff00;
  --sky: #00d4ff;
  --dark: #1a1820;
  --cream: #fff8f0;
  --purple: #7c3aed;
}

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

body {
  background: var(--dark);
  font-family: "Space Mono", monospace;
  overflow-x: hidden;
  cursor: none;
}

.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  background: var(--electric-yellow);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.2s, height 0.2s;
  mix-blend-mode: difference;
  display: none;
}
.cursor.visible {
  display: block;
}
.cursor.big {
  width: 60px;
  height: 60px;
}

.ticker {
  background: var(--dark);
  overflow: hidden;
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.ticker-inner {
  display: inline-flex;
  align-items: center;
  animation: ticker 22s linear infinite;
}
.ticker-word {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  padding: 12px 0;
  white-space: nowrap;
}
.ticker-word.pink {
  color: var(--hot-pink);
  padding-right: 28px;
}
.ticker-word.yellow {
  color: var(--electric-yellow);
  padding-right: 28px;
}
.ticker-word.cream {
  color: rgba(255, 248, 240, 0.25);
  padding-right: 28px;
}
.ticker-sep {
  color: var(--hot-pink);
  font-size: 1.2rem;
  padding: 0 20px 0 0;
  opacity: 0.5;
}
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

nav {
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}
.nav-logo {
  font-family: "Permanent Marker", cursive;
  font-size: 1.5rem;
  color: var(--electric-yellow);
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--hot-pink);
}
.nav-links .cart-link {
  background: var(--hot-pink);
  color: white;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 1.1rem;
}
.nav-links .cart-link:hover {
  background: var(--electric-yellow);
  color: var(--dark);
}

.hero {
  min-height: 80vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 20px 40px 50px;
  position: relative;
  overflow: hidden;
  gap: 20px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 45, 120, 0.25) 0%,
    transparent 70%
  );
  top: -100px;
  right: -100px;
  pointer-events: none;
  animation: blobPulse 5s ease-in-out infinite;
}
.hero-blob2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.15) 0%,
    transparent 70%
  );
  bottom: -50px;
  left: 100px;
  pointer-events: none;
  animation: blobPulse 7s ease-in-out infinite reverse;
}
@keyframes blobPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 230, 0, 0.12);
  border: 1px solid var(--electric-yellow);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 20px;
}
.hero-eyebrow span {
  font-size: 0.72rem;
  color: var(--electric-yellow);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--electric-yellow);
  border-radius: 50%;
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.hero-h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4.5rem, 9vw, 9rem);
  line-height: 0.88;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.hero-h1 .pink {
  color: var(--hot-pink);
}
.hero-h1 .yellow {
  color: var(--electric-yellow);
}

.hero-sub {
  font-size: 0.82rem;
  color: rgba(255, 248, 240, 0.5);
  line-height: 1.7;
  max-width: 360px;
  margin: 16px 0 22px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}
.hero-pill {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255, 248, 240, 0.15);
  color: rgba(255, 248, 240, 0.45);
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  cursor: none;
  user-select: none;
}
.hero-pill:hover {
  border-color: var(--hot-pink);
  color: var(--hot-pink);
}
.hero-pill.active {
  background: rgba(255, 45, 120, 0.12);
  border-color: var(--hot-pink);
  color: var(--hot-pink);
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.btn-hero-primary {
  background: var(--hot-pink);
  color: white;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  padding: 14px 32px;
  border: none;
  border-radius: 100px;
  cursor: none;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 40px rgba(255, 45, 120, 0.5);
}
.btn-hero-secondary {
  background: transparent;
  color: var(--cream);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  padding: 14px 32px;
  border: 1.5px solid rgba(255, 248, 240, 0.25);
  border-radius: 100px;
  cursor: none;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-hero-secondary:hover {
  border-color: var(--electric-yellow);
  color: var(--electric-yellow);
}

.hero-mini-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hms-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 8px 14px;
}
.hms-val {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  color: var(--lime);
  letter-spacing: 0.05em;
  line-height: 1;
}
.hms-lbl {
  font-size: 0.6rem;
  color: rgba(255, 248, 240, 0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.3;
}

.hero-img-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.hero-img-ring {
  position: relative;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(255, 230, 0, 0.15),
    rgba(255, 45, 120, 0.1)
  );
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slowSpin 25s linear infinite;
}
@keyframes slowSpin {
  to {
    transform: rotate(360deg);
  }
}

.hero-img-ring img {
  height: 500px;
  animation: slowSpin 25s linear infinite reverse, float 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(255, 45, 120, 0.4));
  position: relative;
  z-index: 2;
  transition: opacity 0.25s ease;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(360deg);
  }
  50% {
    transform: translateY(-15px) rotate(360deg);
  }
}

.hero-badge {
  position: absolute;
  top: 28px;
  right: 20px;
  background: var(--electric-yellow);
  color: var(--dark);
  font-family: "Permanent Marker", cursive;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 100px;
  transform: rotate(8deg);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
  animation: wiggle 2s ease-in-out infinite;
  z-index: 6;
}
@keyframes wiggle {
  0%,
  100% {
    transform: rotate(8deg);
  }
  50% {
    transform: rotate(12deg);
  }
}

.stats-strip {
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 40px;
}
.stat {
  flex: 1;
  text-align: center;
  padding: 20px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.stat:last-child {
  border-right: none;
}
.stat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  color: var(--hot-pink);
  line-height: 1;
}
.stat-label {
  font-size: 0.62rem;
  color: rgba(255, 248, 240, 0.4);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 4px;
}

.slider-section {
  padding: 80px 0 60px;
}
.section-header {
  padding: 0 40px;
  margin-bottom: 50px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.section-header h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.9;
  color: var(--cream);
}
.section-header h2 em {
  font-style: normal;
  color: var(--hot-pink);
}
.section-header p {
  font-size: 0.78rem;
  color: rgba(255, 248, 240, 0.4);
  max-width: 280px;
  line-height: 1.7;
}

.slider-viewport {
  overflow: hidden;
  padding: 100px 0 40px;
  margin-top: -60px;
}
.slider-track {
  display: flex;
  gap: 24px;
  padding: 0 40px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  user-select: none;
}
.slider-track.dragging {
  transition: none;
  cursor: grabbing;
}

.shake-card {
  min-width: 280px;
  height: 400px;
  border-radius: 28px;
  flex-shrink: 0;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 28px;
  cursor: none;
  transition: transform 0.3s ease;
}
.shake-card:hover {
  transform: translateY(-12px) rotate(-1deg);
}
.shake-card:nth-child(even):hover {
  transform: translateY(-12px) rotate(1deg);
}

.card-coconut {
  background: linear-gradient(160deg, #323230, #252523);
  border: 1px solid rgba(211, 212, 207, 0.2);
}
.card-blueberry {
  background: linear-gradient(160deg, #251f48, #1a1535);
  border: 1px solid rgba(127, 104, 236, 0.3);
}
.card-banana {
  background: linear-gradient(160deg, #352b00, #271f00);
  border: 1px solid rgba(250, 200, 87, 0.3);
}
.card-grapefruit {
  background: linear-gradient(160deg, #38110d, #2a0a07);
  border: 1px solid rgba(255, 103, 86, 0.3);
}
.card-strawberry {
  background: linear-gradient(160deg, #38001e, #280015);
  border: 1px solid rgba(242, 125, 154, 0.35);
}

.card-img {
  position: absolute;
  top: -70px;
  height: 260px;
  transition: height 0.4s ease, top 0.4s ease;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
  z-index: 2;
  pointer-events: none;
}
.shake-card:hover .card-img {
  height: 295px;
  top: -90px;
}

.card-chip {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid currentColor;
  z-index: 3;
}
.card-coconut .card-chip {
  color: #d3d4cf;
}
.card-blueberry.card-chip {
  color: #7f68ec;
}
.card-banana .card-chip {
  color: #fac857;
}
.card-grapefruit .card-chip {
  color: #ff6756;
}
.card-strawberry .card-chip {
  color: #f27d9a;
}

.card-bottom {
  position: relative;
  z-index: 2;
  width: 100%;
}
.card-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--cream);
  margin-bottom: 6px;
}
.card-desc {
  font-size: 0.67rem;
  color: rgba(255, 248, 240, 0.45);
  line-height: 1.5;
  margin-bottom: 16px;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  color: var(--electric-yellow);
}
.card-btn {
  background: var(--hot-pink);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 100px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  cursor: none;
  transition: transform 0.2s, background 0.2s;
}
.card-btn:hover {
  transform: scale(1.08);
  background: #ff0060;
}

.slider-controls {
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}
.ctrl-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 248, 240, 0.15);
  background: transparent;
  color: var(--cream);
  font-size: 1.2rem;
  cursor: none;
  transition: border-color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ctrl-btn:hover {
  background: var(--hot-pink);
  border-color: var(--hot-pink);
}
.slider-dots {
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: rgba(255, 248, 240, 0.2);
  transition: background 0.3s, width 0.3s;
  cursor: none;
}
.slider-dot.active {
  background: var(--hot-pink);
  width: 28px;
}

.ingredients-section {
  padding: 100px 40px 80px;
  position: relative;
}
.ingredients-section::before {
  content: "FRESH";
  font-family: "Bebas Neue", sans-serif;
  font-size: 20vw;
  color: rgba(255, 255, 255, 0.02);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.1em;
}

.ingredients-grid {
  max-width: 1000px;
  margin: 100px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 3px;
  row-gap: 100px;
  background: transparent;
  overflow: visible;
  position: relative;
}

.ing-card {
  background: #252230;
  padding: 80px 28px 32px;
  position: relative;
  overflow: visible;
  transition: background 0.3s;
  cursor: none;
}
.ing-card:nth-child(1),
.ing-card:nth-child(2),
.ing-card:nth-child(3) {
  z-index: 3;
}
.ing-card:nth-child(4),
.ing-card:nth-child(5),
.ing-card:nth-child(6) {
  z-index: 2;
}

.ing-card:hover {
  background: #2c2840;
}
.ing-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  transition: width 0.4s;
}
.ing-card:hover::before {
  width: 100%;
}
.ing-card.c1::before {
  background: #d3d4cf;
}
.ing-card.c2::before {
  background: #7f68ec;
}
.ing-card.c3::before {
  background: #fac857;
}
.ing-card.c4::before {
  background: #ff6756;
}
.ing-card.c5::before {
  background: #f27d9a;
}
.ing-card.c6::before {
  background: #00d4ff;
}

.ing-img-wrap {
  position: absolute;
  top: -60px;
  left: 20px;
  width: 120px;
  height: 120px;
  z-index: 5;
  pointer-events: none;
}
.ing-img {
  height: 120px;
  filter: drop-shadow(0 -4px 16px rgba(0, 0, 0, 0.5));
  transform-origin: bottom center;
  transition: transform 0.4s ease;
}
.ing-card:hover .ing-img {
  transform: scale(1.22) rotate(-6deg) translateY(-10px);
}

.ing-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  color: rgba(255, 248, 240, 0.2);
  margin-bottom: 8px;
}
.ing-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 10px;
}
.ing-desc {
  font-size: 0.7rem;
  color: rgba(255, 248, 240, 0.35);
  line-height: 1.7;
}

/* ========== NEWSLETTER ========== */
.newsletter {
  padding: 40px;
}
.newsletter-inner {
  background: var(--hot-pink);
  border-radius: 28px;
  padding: 56px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  position: relative;
  overflow: hidden;
}
.newsletter-inner::after {
  content: "🥤";
  font-size: 18rem;
  position: absolute;
  right: -40px;
  top: -60px;
  opacity: 0.07;
  pointer-events: none;
  line-height: 1;
}

.nl-left {
  position: relative;
  z-index: 1;
}

.nl-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 14px;
}

.nl-left h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 0.9;
  color: white;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.nl-proof {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nl-avatars {
  display: flex;
}

/* Fixed avatars — clean colored circles with initials, no emojis */
.nl-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: "Space Mono", monospace;
  color: white;
  margin-left: -9px;
  flex-shrink: 0;
  line-height: 1;
}
.nl-avatar:first-child {
  margin-left: 0;
}
.nl-avatar.av1 {
  background: #e03e6b;
}
.nl-avatar.av2 {
  background: #5b4ecf;
}
.nl-avatar.av3 {
  background: #1aac8e;
}
.nl-avatar.av4 {
  background: #d4820a;
}

.nl-proof-text {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}
.nl-proof-text strong {
  color: white;
  font-weight: 700;
  display: block;
  font-size: 0.8rem;
}

.nl-right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.nl-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nl-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.74rem;
  color: rgba(0, 0, 0, 0.75);
}
.nl-perk-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.nl-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.nl-input {
  flex: 1;
  min-width: 180px;
  padding: 14px 20px;
  border-radius: 100px;
  border: none;
  background: rgba(0, 0, 0, 0.18);
  color: white;
  font-family: "Space Mono", monospace;
  font-size: 0.82rem;
  outline: none;
}
.nl-input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.nl-btn {
  padding: 14px 26px;
  background: var(--dark);
  color: var(--electric-yellow);
  border: none;
  border-radius: 100px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.15em;
  cursor: none;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.nl-btn:hover {
  background: #111;
  transform: translateY(-2px);
}

.lifestyle {
  padding: 80px 40px 100px;
}
.lifestyle-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.lifestyle-img-frame {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.lifestyle-img-frame img {
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(20%) contrast(1.05);
}
.ls-badge {
  position: absolute;
  bottom: -16px;
  right: 28px;
  background: var(--electric-yellow);
  color: var(--dark);
  font-family: "Permanent Marker", cursive;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 100px;
  transform: rotate(-3deg);
  box-shadow: 3px 3px 0 var(--dark);
}
.lifestyle-img-wrap {
  position: relative;
}
.ls-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--hot-pink);
  margin-bottom: 16px;
}
.ls-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  line-height: 0.92;
  color: var(--cream);
  margin-bottom: 22px;
}
.ls-copy {
  font-size: 0.76rem;
  color: rgba(255, 248, 240, 0.45);
  line-height: 1.8;
  margin-bottom: 30px;
}
.ls-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.ls-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.76rem;
  color: rgba(255, 248, 240, 0.6);
}
.ls-features li strong {
  color: var(--cream);
}
.ls-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
}
.ls-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.ls-btn-p {
  background: var(--hot-pink);
  color: white;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.1em;
  font-size: 1.1rem;
  text-decoration: none;
  transition: transform 0.2s;
}
.ls-btn-p:hover {
  transform: translateY(-2px);
}
.ls-btn-s {
  border: 1.5px solid rgba(255, 248, 240, 0.2);
  color: var(--cream);
  padding: 14px 28px;
  border-radius: 100px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.1em;
  font-size: 1.1rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.ls-btn-s:hover {
  border-color: var(--lime);
  color: var(--lime);
}

/* ========== FOOTER ========== */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 36px 40px;
}
.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-logo-text {
  font-family: "Permanent Marker", cursive;
  font-size: 1.2rem;
  color: var(--electric-yellow);
  text-decoration: none;
}
.footer-dev-label {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 248, 240, 0.3);
}
.footer-links {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.68rem;
  color: rgba(255, 248, 240, 0.35);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--cream);
}

/* Visible contact buttons */
.footer-contact {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 100px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: none;
}
.footer-contact-btn.btn-codepen {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: var(--cream);
}
.footer-contact-btn.btn-codepen:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--lime);
  color: var(--lime);
  transform: translateY(-2px);
}
.footer-contact-btn.btn-email {
  background: var(--hot-pink);
  border: 1.5px solid var(--hot-pink);
  color: white;
}
.footer-contact-btn.btn-email:hover {
  background: #ff0060;
  box-shadow: 0 0 20px rgba(255, 45, 120, 0.5);
  transform: translateY(-2px);
}
.footer-contact-btn i {
  font-size: 1rem;
}

@media (max-width: 800px) {
  nav {
    padding: 14px 20px;
  }
  .nav-links {
    gap: 18px;
  }
  .nav-links li:not(:last-child) {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 20px 20px 40px;
    text-align: center;
  }
  .hero-img-wrap {
    order: -1;
    margin-bottom: 10px;
  }
  .hero-img-ring {
    width: 260px;
    height: 260px;
  }
  .hero-img-ring img {
    height: 300px;
  }
  .hero-badge {
    right: calc(50% - 160px);
    top: 10px;
  }
  .hero-eyebrow {
    margin: 0 auto 16px;
  }
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-pills {
    justify-content: center;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-mini-stats {
    justify-content: center;
  }

  .stats-strip {
    padding: 0 20px;
  }
  .stat-num {
    font-size: 2rem;
  }

  .slider-section {
    padding: 60px 0 40px;
  }
  .section-header {
    padding: 0 20px;
  }
  .slider-track {
    padding: 0 20px;
  }
  .slider-controls {
    padding: 0 20px;
  }

  .ingredients-section {
    padding: 70px 20px 60px;
  }
  .ingredients-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 80px;
  }

  .newsletter {
    padding: 20px;
  }
  .newsletter-inner {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    gap: 30px;
  }

  .lifestyle {
    padding: 60px 20px 80px;
  }
  .lifestyle-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  footer {
    padding: 28px 20px;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-links {
    gap: 16px;
  }
  .footer-contact {
    flex-direction: row;
  }
}

@media (max-width: 480px) {
  .ticker-word {
    font-size: 1.1rem;
  }

  nav {
    padding: 12px 16px;
  }
  .nav-logo {
    font-size: 1.2rem;
  }

  .hero {
    padding: 16px 16px 36px;
  }
  .hero-h1 {
    font-size: clamp(3.5rem, 14vw, 5rem);
  }
  .hero-img-ring {
    width: 220px;
    height: 220px;
  }
  .hero-img-ring img {
    height: 250px;
  }
  .hero-badge {
    display: none;
  }
  .hero-sub {
    font-size: 0.78rem;
  }

  .stats-strip {
    overflow-x: auto;
  }
  .stat {
    min-width: 80px;
  }
  .stat-num {
    font-size: 1.8rem;
  }
  .stat-label {
    font-size: 0.55rem;
  }

  .shake-card {
    min-width: 240px;
    height: 360px;
  }
  .card-img {
    height: 220px;
    top: -60px;
  }
  .shake-card:hover .card-img {
    height: 250px;
    top: -75px;
  }

  .ingredients-grid {
    grid-template-columns: 1fr;
    row-gap: 80px;
  }

  .newsletter-inner {
    padding: 32px 20px;
  }
  .nl-left h2 {
    font-size: 2.2rem;
  }
  .nl-form {
    flex-direction: column;
  }
  .nl-btn {
    text-align: center;
  }

  footer {
    padding: 24px 16px;
  }
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 10px;
  }
  .footer-contact-btn {
    width: 100%;
    justify-content: center;
  }
}