:root {
  --_color---light-blue: #e0f2ff;
  --_color---white-color: white;
  --_color---blue: #4821ab;
  --_color---pink: #f85c9b;
  --_color---neon-green: #e5ff54;
  --blue: #4821ab;
  --pink: #f85c9b;
  --white: #ffffff;
}


/* Global scrollbar */
::-webkit-scrollbar {
  width: .5rem;
  background-color: #ebe7e8;
}

::-webkit-scrollbar-thumb {
  background-color: #4821ab;
  border-radius: .5rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Oswald", sans-serif;
}


body {
  font-family: "Oswald", sans-serif;
  background-color: var(--_color---pink);

}



/* Popup Overlay */
#popup-toggle {
  display: none;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#popup-toggle:not(:checked)~.overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Popup box */
.popup {
  position: relative;
  border-radius: 10px;
  padding: 10px;
  max-width: 250px;
  width: 90%;
}

.popup video {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  position: relative;
  top: 2rem;
}

/* Close button */
.close {
  position: absolute;
  top: 35px;
  right: -5px;
  background: #fff;
  color: #000;
  font-size: 20px;
  border-radius: 50%;
  padding: 5px 10px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  z-index: 3;
}


/* NAVBAR */
.navbar {
  border-style: solid;
  border-width: 3px 3px 1px;
  border-color: var(--_color---light-blue);
  width: 95%;
  margin: 15px auto;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: var(--white);
  border-radius: 40px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
  overflow: visible;
}


.nav-link {
  position: relative;
  padding-right: 10px;
}


/* Left and Right Menus */
.nav-left,
.nav-right {
  display: flex;
  gap: 25px;
  align-items: center;

}

.nav-left a,
.nav-right a {
  text-decoration: none;
  color: var(--blue);
  font-family: oswald, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease, transform 0.3s ease;
}


.nav-left a:hover,
.nav-right a:hover {
  color: var(--pink);
  transform: rotate(-5deg) scale(1.1);

}

.nav-link.active {
  color: var(--pink);
  transform: rotate(-5deg) scale(1.1);
}

/* melting PNG */
.nav-link::after {
  content: "";
  position: absolute;
  left: 45%;
  top: 124%;
  transform: translateX(-50%) translateY(0);
  width: 85px;
  height: 20px;
  background: url("images/navbar_melting_img.png") no-repeat center;
  background-size: contain;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.4s ease;
}

.nav-link:hover::after {
  opacity: 1;
  transform: translateX(-37%) translateY(2px);
  /* little drip animation */
}


/* Center Logo */
.logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-wrapper {
  position: absolute;
  top: -15px;
  /* pushes it upward so it sticks out */
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 20px;
  border-radius: 40px;
}

.logo-wrapper img {
  height: 75px;
  display: block;
  position: fixed;
  top: 5px;
}


.pink-ball {

  background-color: var(--pink);
  border-radius: 50%;
  width: 12px;
  height: 12px;
  position: absolute;
  right: -91px;
  bottom: -34px;
  animation: fallToLogo 2s ease-in-out infinite;
}

@keyframes fallToLogo {
  0% {
    transform: translateY(-5px)
  }

  70% {
    transform: translateY(10px) scale(1);
  }

  85% {
    transform: translateY(-10px) scale(0.9);
  }

  95% {
    transform: translateY(5px) scale(1.05);
  }

  100% {
    transform: translateY(0);
    width: 12px;
    height: 12px;
  }
}


.hero {
  position: relative;
}

/* Cream collage section */
.hero-visuals {
  height: 685px;
  background-color: #ece1d1;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Background images (individually positioned) */
.hero-bg-item {
  position: absolute;
  object-fit: contain;
}

/*  positions */
.hero-bg-item.bg1 {
  top: 8px;
  left: -9px;
  width: 1469px;
}

.hero-bg-item.bg2 {
  top: -38px;
  left: -3px;
  width: 1597px;
}

.hero-bg-item.bg3 {
  top: -15px;
  left: 2px;
  width: 1597px;
}

.hero-bg-item.bg4 {
  bottom: 1px;
  left: -44px;
  width: 1445px;
}

.hero-bg-item.bg5 {
  bottom: -95px;
  left: -108px;
  width: 1597px;
}

.hero-bg-item.bg6 {
  top: -87px;
  left: -95px;
  width: 1635px;
}

/* ---- Hero background floating animations ---- */

/* generic float animation */
@keyframes floatUpDown {
  0% {
    transform: translateY(0px) scale(1);
  }

  50% {
    transform: translateY(-15px) scale(1.02);
  }

  100% {
    transform: translateY(0px) scale(1);
  }
}

@keyframes floatSide {
  0% {
    transform: translateX(0px) rotate(0deg);
  }

  50% {
    transform: translateX(20px) rotate(2deg);
  }

  100% {
    transform: translateX(0px) rotate(0deg);
  }
}

@keyframes gentleTilt {
  0% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(-3deg) scale(1.03);
  }

  100% {
    transform: rotate(0deg) scale(1);
  }
}

/* To Assign animations to each image */
.hero-bg-item.bg1 {
  animation: floatUpDown 6s ease-in-out infinite;
}

.hero-bg-item.bg2 {
  animation: floatSide 8s ease-in-out infinite;
}

.hero-bg-item.bg3 {
  animation: gentleTilt 10s ease-in-out infinite;
}

.hero-bg-item.bg4 {
  animation: floatUpDown 7s ease-in-out infinite;
}

.hero-bg-item.bg5 {
  animation: floatSide 9s ease-in-out infinite;
}

.hero-bg-item.bg6 {
  animation: gentleTilt 11s ease-in-out infinite;
}



/* Pink background panel */
.hero-panel.background-color-pink {
  background-color: var(--_color---pink);
  position: relative;
  margin-top: -5px;
  z-index: 2;
  top: 7px;
}

.wave-wrapper {
  position: relative;
  width: 100%;
  height: 42px;
  overflow: hidden;
  line-height: 0;
  display: flex;
  top: -43px;
}

.wave-item {
  flex: none;
  width: 100%;
  height: 42px;
  animation: waveSlide 8s linear infinite;
}


@keyframes waveSlide {
  0% {
    transform: translateX(20%);
  }

  100% {
    transform: translateX(-100%);
  }
}



/* Container */
.container {
  width: 100%;
  max-width: 1326px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Content layout */
.home-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: -118px;
}

/* Big headline */
.home-heading-title-wrapper {
  position: relative;
  z-index: 999;
}

.home-heading-title {
  font-family: "Oswald", Arial, sans-serif;
  font-size: 140px;
  font-weight: 700;
  line-height: 1;
  color: var(--_color---neon-green);
  letter-spacing: -2.56px;
  position: relative;
  z-index: 2;
}

.home-heading-title.stroke {
  -webkit-text-stroke-width: 40px;
  -webkit-text-stroke-color: var(--_color---pink);
  color: transparent;
  position: absolute;
  inset: 0;
  z-index: 1;
}





/* Right side text + button */
.home-header-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 416px;
  background-color: var(--_color---pink);
}

.home-heading-text {
  font-family: oswald, sans-serif;
  font-size: 20px;
  line-height: 1.4;
  color: var(--_color---neon-green);
  font-weight: 400;
  opacity: 0;
  transform: translateY(40px);
  /* start lower */
  animation: slideIn 0.6s ease-out forwards;
  animation-delay: 0.8s;
}



.button.home-shop-now {
  font-family: "Oswald", sans-serif;
  background-color: var(--_color---neon-green);
  color: var(--_color---blue);
  opacity: 0;
  transform: translateY(40px);
  /* start lower */
  animation: slideIn 0.6s ease-out forwards;
  animation-delay: 1.2s;
  /* To wait until heading settles */
}



@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 4;
    transform: translateY(0);
  }
}


/* ----- Partner logo marquee ----- */
.home-partner-logo-wrapper {
  border-top: 4px solid var(--_color---neon-green);
  margin-top: 20px;
  padding: 28px 0;
  overflow: hidden;
  /*To clip overflowing track */
  background: transparent;
  background-color: var(--_color---pink);
}

/* track that moves left */
.home-partner-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 0;
  animation: marquee-scroll 22s linear infinite;
  will-change: transform;
}

/* group contains one full set of logos (duplicated for seamless scroll) */
.home-partner-group {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 48px;
  /* small spacing between end of first set and start of duplicated set */
}

/* logo sizes */
.partner-logo-icon {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* star separators */
.star-icon {
  height: 18px;
  width: auto;
  display: block;
  opacity: 1;
}

/* link wrapper */
.link-partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* pause on hover/focus */
.home-partner-logo-wrapper:hover .home-partner-track,
.home-partner-logo-wrapper:focus-within .home-partner-track {
  animation-play-state: paused;
}


/* marquee animation: move from 0 to -50% (because of duplicated content) */
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


/* Scoop Section */
.scoop-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Top bg with marquee-style animation */
.scoop-bg-top {
  background: url("images/scoop_of_happiness_bg_Vector.png") repeat-x;
  /* repeat horizontally */
  background-size: cover;
  width: 100%;
  height: 550px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #e0f2ff;
  animation: bgScroll 15s linear infinite;
}

/* Keyframes for endless horizontal scroll */
@keyframes bgScroll {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -1000px 0;
    /*To adjust based on image width */
  }
}



/* Container */
.scoop-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 160px 20px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Title */
.scoop-title-wrapper {
  max-width: 564px;
  margin-bottom: -100px;
  position: relative;
  z-index: 0;
  animation: titleSlideUp 2s ease-out forwards;
  animation-delay: 2.5s;
}

/* Title animation */
@keyframes titleSlideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }

  to {
    transform: translateY(-120px);
    opacity: 1;
  }
}


.scoop-title {
  font-family: Oswald, sans-serif;
  font-size: 72px;
  font-weight: 700;
  color: var(--_color---blue);
  line-height: 1.1;
}

/* Circle wrapper  */
.circle-wrapper {
  width: 668px;
  height: 668px;
  margin: 0 auto;
  position: relative;
  animation: rotateCircle 2.5s ease-out 1;
}

/* Half-circle */
.half-circle {
  width: 100%;
  height: 50%;
  /*So that only half is visible */
  background-color: #cce9ff;
  overflow: hidden;
  position: relative;

}

/* Top half */
.half-circle.top {
  border-top-left-radius: 668px;
  border-top-right-radius: 668px;
}

/* Bottom half  */
.half-circle.bottom {
  border-bottom-left-radius: 668px;
  border-bottom-right-radius: 668px;

}

#Scoop-text-2 {
  position: absolute;
  top: 142%;
  left: 102%;
}

#scoop-text-2 {
  position: relative;
  top: 3%;
  left: 98%;
}


/* To Keep bottom content upright */
.half-circle.bottom .scoop-content {
  transform: rotate(180deg) translateX(-50%);
}


/* Circle rotation (background illusion) */
@keyframes rotateCircle {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Scoop content inside */
.scoop-content {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 35px;
  align-items: center;
  text-align: center;
  width: 500px;

}

.scoop-text {
  font-family: oswald, sans-serif;
  text-align: center;
  font-size: 18px;
  line-height: 1.55556;
  color: var(--_color---blue);
  max-width: 420px;
}

.scoop-text .highlight {
  color: var(--_color---pink);
  font-weight: 700;
  text-decoration: none;
}

.scoop-signature {
  height: 40px;
  width: auto;
  display: block;
  margin-left: 350px;
}


/* Sky background */
.scoop-sky-bg {
  background: url("images/sky_bg.png") repeat-x center;
  background-size: cover;
  width: 130%;
  height: 1140px;
  position: relative;
  z-index: 2;
  top: -437px;
  animation: bgScroll 30s linear infinite;
}



@keyframes bgScroll {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -1000px 0;
    /* To adjust based on image width */
  }
}



/* Bottom decoration */
.scoop-bg-bottom {
  background: url("images/Scoop_of_happiness_bottom_img.png") no-repeat center;
  background-size: cover;
  top: -1577.8px;
  position: relative;
  z-index: 2;
  width: 49.6%;
  height: 364.2px;
  left: 339.2px;
}


.featured-flavours {
  text-align: center;
  padding: 80px 20px;
  position: relative;
  top: -1567px;
  z-index: 2;
}



.flavour-container {
  width: 100%;
  max-width: 800px;
  height: 500px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.flavour-container input {
  display: none;
}

.flavour-cards {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;

}

.flavour-card {
  position: absolute;
  width: 60%;
  height: 115%;
  left: 0;
  right: 0;
  margin: auto;
  padding: 20px;
  border-radius: 16px;
  background: url("images/neutral-abstract-texture-simple-background.jpg") no-repeat center/cover;
  text-align: center;
  cursor: pointer;
  opacity: 0;
  transition: transform .6s ease, opacity .6s ease;
  animation-play-state: running;

}



.flavour-card img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 20px;
  margin-top: 35px;
  opacity: 0;
  transform: translateY(40px);
  animation: slideIn 0.6s ease-out forwards;
  animation-delay: 0.7;

}



.flavour-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--_color---blue);
  font-family: oswald, sans-serif;
  opacity: 0;
  transform: translateY(40px);
  animation: slideIn 0.6s ease-out forwards;
  animation-delay: 0.9s;
}

.flavour-card p {
  font-size: 16px;
  color: #555;
  width: 370px;
  margin: auto;
  font-family: oswald, sans-serif;
  opacity: 0;
  transform: translateY(40px);
  animation: slideIn 0.6s ease-out forwards;
  animation-delay: 1s;
}

.flavour-card .button {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  background: var(--_color---neon-green);
  color: var(--_color---blue);
  text-decoration: none;
  font-weight: 700;
  transition: all .3s;
  margin-top: 20px;
  font-family: oswald, sans-serif;
}

.flavour-card .button:hover {
  background: var(--_color---blue);
  color: var(--_color---neon-green);
}

/* Position logic (center, left, right) */
#flavour-1:checked~.flavour-cards #card-1,
#flavour-2:checked~.flavour-cards #card-2,
#flavour-3:checked~.flavour-cards #card-3,
#flavour-4:checked~.flavour-cards #card-4,
#flavour-5:checked~.flavour-cards #card-5,
#flavour-6:checked~.flavour-cards #card-6 {
  transform: translateX (0) scale(1);
  opacity: 1;
  z-index: 2;
}

#flavour-1:checked~.flavour-cards #card-2,
#flavour-2:checked~.flavour-cards #card-3,
#flavour-3:checked~.flavour-cards #card-4,
#flavour-4:checked~.flavour-cards #card-5,
#flavour-5:checked~.flavour-cards #card-6,
#flavour-6:checked~.flavour-cards #card-1 {
  transform: translateX(40%) scale(.8);
  opacity: 0;
  /* 0.6 for inactice left/right cards to be visible  */
  z-index: 1;
}

#flavour-1:checked~.flavour-cards #card-6,
#flavour-2:checked~.flavour-cards #card-1,
#flavour-3:checked~.flavour-cards #card-2,
#flavour-4:checked~.flavour-cards #card-3,
#flavour-5:checked~.flavour-cards #card-4,
#flavour-6:checked~.flavour-cards #card-5 {
  transform: translateX(-40%) scale(.8);
  opacity: 0;
  /* 0.6 for inactice left/right cards to be visible  */
  z-index: 1;
}

#card-6 h3 {
  margin-top: -30px;
}

/*To Animate sliding automatically */
@keyframes slideCards {

  0%,
  10% {
    transform: translateX(0) scale(.8);
    opacity: 1;
    /* center card */
    z-index: 2;
  }

  15%,
  30% {
    transform: translateX(40%) scale(.8);
    opacity: 0.6;
    /* right card */
    z-index: 1;
  }

  35%,
  50% {
    transform: translateX(-40%) scale(.8);
    opacity: 0.6;
    /* left card */
    z-index: 1;
  }

  55%,
  100% {
    opacity: 0;
    transform: translateX(0) scale(.8);
    z-index: 0;
  }
}

/* To Assign different delays so each card takes a turn being active */
#card-1 {
  animation: slideCards 18s infinite;
}

#card-2 {
  animation: slideCards 18s infinite 3s;
}

#card-3 {
  animation: slideCards 18s infinite 6s;
}

#card-4 {
  animation: slideCards 18s infinite 9s;
}

#card-5 {
  animation: slideCards 18s infinite 12s;
}

#card-6 {
  animation: slideCards 18s infinite 15s;
}


.flavour-container:hover .flavour-card {
  animation-play-state: paused !important;
}


/* Blob Buttons */
.blob-button {
  --c: var(--_color---blue);
  color: var(--_color---blue);
  border-radius: 100px;
  padding: 16px 24px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
  font-family: oswald, sans-serif;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: 0.4s;
  line-height: 28px;
}

/* Blob spans */
.blob-button span:not(.button-text) {
  position: absolute;
  width: 25%;
  height: 100%;
  background-color: var(--c);
  transform: translateY(150%);
  border-radius: 50%;
  transition: 0.5s;
  z-index: -1;
}

.blob-button:hover {
  color: var(--_color---neon-green);

}

.blob-button:hover span:not(.button-text) {
  transform: translateY(0) scale(2);
}

/* Stagger blob animations */
.blob-button span:nth-child(2) {
  left: 0;
  transition-delay: 0.1s;
}

.blob-button span:nth-child(3) {
  left: 25%;
  transition-delay: 0.2s;
}

.blob-button span:nth-child(4) {
  left: 50%;
  transition-delay: 0.3s;
}

.blob-button span:nth-child(5) {
  left: 75%;
  transition-delay: 0.4s;
}

/* Card 1 */
#card-1 h3 {
  color: #940646;
}

#card-1 p {
  color: #c20c5e;
}

#card-1 .blob-button {
  background-color: rgb(148, 6, 70);
  color: rgb(241 186 198);
}

#card-1 .blob-button:hover {
  --c: rgb(241 186 198);
  color: rgb(148, 6, 70);
  border: 2px solid rgb(241 186 198);
}


/* Card 2 */
#card-2 h3 {
  color: #b46a2f;
}

#card-2 p {
  color: #8f4408;

}

#card-2 .blob-button {
  background-color: rgb(190, 114, 47);
  color: rgb(248 232 179);
}

#card-2 .blob-button:hover {
  --c: rgb(248 232 179);
  color: rgb(190, 114, 47);
  border: 2px solid rgb(248 232 179);
}


/* Card 3 */
#card-3 h3 {
  color: black;
}

#card-3 p {
  color: rgb(91, 90, 90);
}


#card-3 .blob-button {
  background-color: black;
  color: rgb(215 141 129);
}

#card-3 .blob-button:hover {
  --c: rgb(215 141 129);
  color: black;
  border: 2px solid rgb(215 141 129);
}


/* Card 4 */
#card-4 h3 {
  color: rgb(137 75 25);
}

#card-4 p {
  color: rgb(179, 91, 18);
}

#card-4 .blob-button {
  background-color: rgb(137 75 25);
  color: rgb(163 221 194);
}

#card-4 .blob-button:hover {
  --c: rgb(163 221 194);
  color: rgb(137 75 25);
  border: 2px solid rgb(163 221 194);
}


/* Card 5 */
#card-5 h3 {
  color: rgb(159 81 167);
}

#card-5 p {
  color: rgb(174, 111, 181);
}

#card-5 .blob-button {
  background-color: rgb(159 81 167);
  color: rgb(132 220 231);
}

#card-5 .blob-button:hover {
  --c: rgb(141, 211, 220);
  color: rgb(159 81 167);
  border: 2px solid rgb(132 220 231);
}


/* Card 6 */
#card-6 h3 {
  color: rgb(172, 13, 103);
}

#card-6 p {
  color: rgb(188, 46, 127);
}

#card-6 .blob-button {
  background-color: rgb(172, 13, 103);
  color: rgb(231 220 178);
}

#card-6 .blob-button:hover {
  --c: rgb(231 220 178);
  color: rgb(172, 13, 103);
  border: 2px solid rgb(231 220 178);
}

/* ---------------- NUTRITION SECTION ---------------- */
.nutrition-section {
  position: relative;
  background: #fff;
  overflow: hidden;
  top: -1500px;
}

/* Background */
.nutrition-bg {
  background: url("images/nutrition_section_bg.png") no-repeat center;
  background-size: cover;
  width: 100%;
  height: 1240px;
  position: relative;
  z-index: 1;
  max-width: 1243px;
  margin-bottom: -32px;
  margin-left: auto;
  margin-right: auto;
  top: 555px;
  animation: bgRotate 60s linear infinite;
}

@keyframes bgRotate {
  from {
    transform: rotate(0deg) scale(1.05);
  }

  to {
    transform: rotate(360deg) scale(1.05);
  }
}

/* Container */
.nutrition-container {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 90%;
  max-width: 1200px;
  z-index: 2;
}

/* Text */
.nutrition-text {
  flex: 1;
  max-width: 400px;
}

.nutrition-title {
  font-family: Oswald, sans-serif;
  font-size: 96px;
  font-weight: 700;
  color: var(--_color---blue);
  margin-bottom: 20px;
  position: absolute;
  top: -15px;
  text-align: center;
  left: 120px;
}

.nutrition-desc {
  font-family: Oswald, sans-serif;
  font-size: 20px;
  color: var(--pink);
  line-height: 1.4;
  position: relative;
  top: -145px;
  left: 685px;
  text-align: center;
}

.purple_glace {
  font-family: Oswald, sans-serif;
  font-size: 20px;
  color: var(--_color---blue);
}

/* Tub + bubbles */
.nutrition-images {
  position: relative;
  flex: 1;
  text-align: center;
}

.nutrition-tub {
  height: 715px;
  position: relative;
  z-index: 2;
  bottom: -270px;
  left: -5px;
  animation: tubScale 5s ease-in-out infinite;
}

@keyframes tubScale {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}


/* Nutrition bubbles */
.nutrition-bubble {
  position: absolute;
  background: var(--_color---pink);
  color: var(--_color---neon-green);
  font-family: Oswald, sans-serif;
  font-weight: 700;
  text-align: center;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1.3;
  box-shadow: 0 0 0 25px #fdaacb;

  /* bounce + spin rotation */
  animation: bubbleSpin 5s ease-in-out infinite;
}

/* Spin + bounce Animations */
@keyframes bubbleSpin {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  20% {
    transform: translateY(-20px) rotate(90deg);
  }

  40% {
    transform: translateY(0) rotate(150deg);
  }

  60% {
    transform: translateY(20px) rotate(240deg);
  }

  80% {
    transform: translateY(0) rotate(240deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* Bubble positions and size with stagger delays */
.bubble1 {
  width: 115px;
  height: 115px;
  top: 555px;
  left: -155px;
  animation-delay: 0s;
}

.bubble2 {
  width: 130px;
  height: 130px;
  bottom: -145px;
  left: -245px;
  animation-delay: 2s;
}

.bubble3 {
  width: 145px;
  height: 145px;
  top: 700px;
  right: 365px;
  animation-delay: 1s;
  z-index: 2;
}


/* Nutrition Value */
.calcium {
  font-size: 22px;
  font-weight: 550;
  line-height: 1;
  font-family: oswald, sans-serif;
}

.vitamin {
  font-size: 25px;
  font-weight: 550;
  line-height: 1;
  font-family: oswald, sans-serif;
}


.protein {
  font-size: 30px;
  font-weight: 550;
  line-height: 1;
  font-family: oswald, sans-serif;
}


/* Spoon */
.nutrition-spoon {
  flex: 1;
  text-align: right;
}

.nutrition-spoon img {
  z-index: 2;
  height: 980px;
  position: absolute;
  top: 480px;
  right: 15px;

  /* Pivot from bottom center of handle */
  transform-origin: bottom center;

  /* Smooth pendulum swing */
  animation: spoonTilt 8s ease-in-out infinite;
}

@keyframes spoonTilt {
  0% {
    transform: rotate(-15deg);
  }

  50% {
    transform: rotate(15deg);
  }

  100% {
    transform: rotate(-15deg);
  }
}




/* Wave */
.nutrition-section .wave-wrapper {
  position: relative;
  width: 100%;
  height: 42px;
  overflow: hidden;
  line-height: 0;
  display: flex;
  z-index: 3;
  /* To ensure waves are above bg */
  top: 20px;
}

.nutrition-section .wave-item {
  flex: none;
  width: 100%;
  height: 42px;
  animation: waveSlide 8s linear infinite;

}



.nutrition-section .wave-wrapper:first-of-type {
  position: absolute;
  top: 0;
  /* To stick to top of section */
  left: 0;
  width: 100%;
  z-index: 1;
}

.wave-wrapper_2 {
  position: relative;
  width: 125%;
  height: 42px;
  overflow: hidden;
  line-height: 0;
  display: flex;
  top: -1497px;
  z-index: 2;
}




/* ---------------- HIGHLIGHTS SECTION ---------------- */
.highlights-section {
  background: var(--_color---pink);
  padding: 200px 20px;
  position: relative;
  bottom: 1500px;
}

.highlights-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
}

/* Hide radios */
input[type="radio"] {
  display: none;
}

/* Left text */
.highlights-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-right: -50px;
  margin-left: 2px;
}

.highlight-line {
  font-family: Oswald, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 35px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  width: 670px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.4);
  /* To make it look like faded by default */
  transition: color 0.3s ease;
}

.star-icon {
  width: 28px;
  height: auto;
  opacity: 0;
  /* hidden until active */
  transition: opacity 0.3s ease;
}

/* Active states via radio */
#h1:checked~.highlights-text label[for="h1"],
#h2:checked~.highlights-text label[for="h2"],
#h3:checked~.highlights-text label[for="h3"],
#h4:checked~.highlights-text label[for="h4"],
#h5:checked~.highlights-text label[for="h5"],
#h6:checked~.highlights-text label[for="h6"] {
  color: var(--_color---neon-green);
}

#h1:checked~.highlights-text label[for="h1"] .star-icon,
#h2:checked~.highlights-text label[for="h2"] .star-icon,
#h3:checked~.highlights-text label[for="h3"] .star-icon,
#h4:checked~.highlights-text label[for="h4"] .star-icon,
#h5:checked~.highlights-text label[for="h5"] .star-icon,
#h6:checked~.highlights-text label[for="h6"] .star-icon {
  opacity: 1;
}

/* Button */
.highlight-btn {
  font-family: oswald, sans-serif;
  width: 162px;
  text-align: center;
  margin-top: 30px;
  margin-left: 40px;
}

/* Right side stacked images */
.highlights-image-stack {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-img {
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  position: absolute;
  transition: all 0.5s ease;
  opacity: 0.6;
  margin-bottom: 135px;
}

/* Default stack */
.img1 {
  transform: rotate(-5deg) translateX(-20px);
  z-index: 1;
}

.img2 {
  transform: rotate(-29deg) translateY(15px);
  z-index: 1;
}

.img3 {
  transform: rotate(9deg) translateX(7px) translateY(30px);
  z-index: 1;
}

.img4 {
  transform: rotate(9deg) translateX(7px) translateY(30px);
  z-index: 1;
}

.img5 {
  transform: rotate(9deg) translateX(7px) translateY(30px);
  z-index: 1;
}

.img6 {
  transform: rotate(9deg) translateX(7px) translateY(30px);
  z-index: 1;
}




/* Active image logic */
#h1:checked~.highlights-image-stack .img1,
#h2:checked~.highlights-image-stack .img2,
#h3:checked~.highlights-image-stack .img3,
#h4:checked~.highlights-image-stack .img4,
#h5:checked~.highlights-image-stack .img5,
#h6:checked~.highlights-image-stack .img6 {
  transform: rotate(-10deg) translate(10px, 10px) scale(1.05);
  opacity: 1;
  z-index: 5;
}


/* ---------------- SCOOP OF PRAISE SECTION ---------------- */

/* Waves */
.Scoop-of-praise .wave-wrapper_3 {
  position: absolute;
  top: -1245px;
  left: 0;
  width: 100%;
  height: 42px;
  display: flex;
  z-index: 3;
  transform: rotate(180deg);
  overflow: hidden;
  margin-top: 1230px;
}

.Scoop-of-praise .wave-item {
  flex: none;
  width: 100%;
  height: 42px;
  animation: waveSlide 10s linear infinite, wavePulse 4s ease-in-out infinite;
}

/* Wave slide animation */
@keyframes waveSlide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Wave pulse effect */
@keyframes wavePulse {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.9;
  }

  50% {
    transform: scaleY(1.2);
    opacity: 1;
  }
}


.Scoop-of-praise {
  background: url("images/sky_bg.png") no-repeat center top;
  background-size: cover;
  width: 100%;
  min-height: 200vh;
  /* taller so sticky effect is visible */
  position: relative;
  padding: 0 20px;
  z-index: 2;
  bottom: 95rem;
}

/* Sticky title with fade-in animation */
.Scoop-title {
  font-family: "Oswald", sans-serif;
  color: var(--_color---blue);
  text-align: center;
  letter-spacing: -4px;
  text-transform: uppercase;
  max-width: 577px;
  margin: 0 auto;
  font-size: 200px;
  line-height: 210px;
  position: sticky;
  top: 20vh;
  /* stays fixed */
  height: auto;
  opacity: 0;
  transform: translateY(-50px) scale(0.95);
  animation: fadeInTitle 1.5s ease forwards;
}

@keyframes fadeInTitle {
  0% {
    opacity: 0;
    transform: translateY(-50px) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Cards container */
.Scoop-cards {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

/* Individual cards with slide-up animation */
.Scoop-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 280px;
  max-width: 320px;
  text-align: center;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  animation: cardFadeIn 1s ease forwards;
}

/* Individual card positions + animation */

/* Card 1 */
#Scoop-card-1 {
  position: relative;
  left: 35px;
  bottom: 240px;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  animation: cardFadeIn 1s ease forwards;
  animation-delay: 0.2s;
}


/* Card 2 */
#Scoop-card-2 {
  position: relative;
  left: 270px;
  top: 120px;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  animation: cardFadeIn 1s ease forwards;
  animation-delay: 0.4s;
}


/* Card 3 */
#Scoop-card-3 {
  position: relative;
  left: 800px;
  top: 180px;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  animation: cardFadeIn 1s ease forwards;
  animation-delay: 0.6s;
}


/* Card 4 */
#Scoop-card-4 {
  position: relative;
  left: 97px;
  top: 380px;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  animation: cardFadeIn 1s ease forwards;
  animation-delay: 0.8s;
}


/* Card 5 */
#Scoop-card-5 {
  position: relative;
  left: 800px;
  bottom: 1950px;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  animation: cardFadeIn 1s ease forwards;
  animation-delay: 1s;
}


/* Card 6 */
#Scoop-card-6 {
  position: relative;
  left: 800px;
  bottom: 100px;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  animation: cardFadeIn 1s ease forwards;
  animation-delay: 1.2s;
}


/* Card 7 */
#Scoop-card-7 {
  position: relative;
  left: 114px;
  bottom: 200px;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  animation: cardFadeIn 1s ease forwards;
  animation-delay: 1.4s;
}


/* Card 8 */
#Scoop-card-8 {
  position: relative;
  left: 800px;
  bottom: 85px;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  animation: cardFadeIn 1s ease forwards;
  animation-delay: 1.6s;
}


/* Card 9 */
#Scoop-card-9 {
  position: relative;
  left: 800px;
  top: 305px;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  animation: cardFadeIn 1s ease forwards;
  animation-delay: 1.8s;
}


/* Card 10 */
#Scoop-card-10 {
  position: relative;
  left: 50px;
  bottom: 565px;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  animation: cardFadeIn 1s ease forwards;
  animation-delay: 2s;
}

/* Animation keyframes (same as before) */
@keyframes cardFadeIn {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Scoop card text */
.Scoop-text {
  font-family: oswald, sans-serif;
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 20px;
  color: var(--_color---blue);
  position: relative;
  top: 355px;
}

/* Images inside cards with fade-in */
.scoop-img {
  width: 100%;
  height: 327px;
  border-radius: 10px;
  margin-bottom: 10px;
  object-fit: cover;
  position: relative;
  top: -75px;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  animation: imgFadeIn 1s ease forwards;
}

.Scoop-card:nth-child(1) .scoop-img {
  animation-delay: 0.3s;
}

.Scoop-card:nth-child(2) .scoop-img {
  animation-delay: 0.5s;
}

.Scoop-card:nth-child(3) .scoop-img {
  animation-delay: 0.7s;
}

.Scoop-card:nth-child(4) .scoop-img {
  animation-delay: 0.9s;
}

.Scoop-card:nth-child(5) .scoop-img {
  animation-delay: 1.1s;
}

.Scoop-card:nth-child(6) .scoop-img {
  animation-delay: 1.3s;
}

.Scoop-card:nth-child(7) .scoop-img {
  animation-delay: 1.5s;
}

.Scoop-card:nth-child(8) .scoop-img {
  animation-delay: 1.7s;
}

.Scoop-card:nth-child(9) .scoop-img {
  animation-delay: 1.9s;
}

.Scoop-card:nth-child(10) .scoop-img {
  animation-delay: 2.1s;
}

@keyframes imgFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Scoop names */
.scoop-name {
  color: var(--_color---pink);
  text-align: right;
  max-width: 102px;
  margin-top: 16px;
  margin-left: auto;
  font-family: "Caveat", sans-serif;
  font-size: 28px;
  line-height: 1;
  transform: rotate(-5deg);
}



/* Animation delay for each card */
#Scoop-card-1 {
  animation-delay: 0.2s;
}

#Scoop-card-2 {
  animation-delay: 0.4s;
}

#Scoop-card-3 {
  animation-delay: 0.6s;
}

#Scoop-card-4 {
  animation-delay: 0.8s;
}

#Scoop-card-5 {
  animation-delay: 1s;
}

#Scoop-card-6 {
  animation-delay: 1.2s;
}

#Scoop-card-7 {
  animation-delay: 1.4s;
}

#Scoop-card-8 {
  animation-delay: 1.6s;
}

#Scoop-card-9 {
  animation-delay: 1.8s;
}

#Scoop-card-10 {
  animation-delay: 2s;
}

@keyframes cardFadeIn {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


/* ---------- Stores sectio ---------- */
.stores-section {
  padding: 90px 0;
  position: relative;
  bottom: 95rem;
  background-color: #e1eefd;

}

.wave-wrapper_3 {
  position: absolute;
  top: -1265px;
  left: 0;
  width: 100%;
  height: 42px;
  display: flex;
  z-index: 3;
  overflow: hidden;
  margin-top: 1230px;
}



.stores-heading {
  text-align: center;
  color: var(--_color---neon-green);
  font-size: 96px;
  font-family: Oswald, sans-serif;
  font-weight: 700;
  margin-bottom: 40px;
}


.stores-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 36px;
  align-items: stretch;
  /* It forces both columns same height */
  min-height: 480px;
  position: relative;
}


/* To Hide the radio inputs */
.stores-container>input[type="radio"] {
  display: none;
}

/* LEFT: visuals stack */
.stores-visuals {
  position: relative;
  height: 480px;
  overflow: visible;
  /* allows tilt to show */
  display: block;

}

/* base style for each store image */
.store-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 720px;
  height: auto;
  transform-origin: center center;
  transition: transform 0.6s cubic-bezier(.2, .9, .2, 1), opacity 0.45s ease, filter 0.45s ease;
  transform: translate(-50%, -50%) scale(.92);
  border-radius: 35px;
  object-fit: cover;
  z-index: 1;
  will-change: transform, opacity;
}

/* To Match images height to accordion panel */
.stores-visuals,
.store-img {
  height: 100%;
}

.stores-container {
  align-items: stretch;
  /*To make both sides equal height */
}


/* subtle default positions to create a stacked peek (each slightly different) */
.stores-visuals .img1 {
  transform: translate(-62%, -50%) rotate(-6deg) scale(.98);
  z-index: 6;
  opacity: 0.95;
}

.stores-visuals .img2 {
  transform: translate(-44%, -46%) rotate(-2deg) scale(.92);
  z-index: 5;
  opacity: 0.5;
}

.stores-visuals .img3 {
  transform: translate(-20%, -40%) rotate(3deg) scale(.90);
  z-index: 4;
  opacity: 0.45;
}

.stores-visuals .img4 {
  transform: translate(4%, -36%) rotate(7deg) scale(.88);
  z-index: 3;
  opacity: 0.4;
}

.stores-visuals .img5 {
  transform: translate(26%, -32%) rotate(10deg) scale(.86);
  z-index: 2;
  opacity: 0.32;
}

.stores-visuals .img6 {
  transform: translate(48%, -28%) rotate(12deg) scale(.84);
  z-index: 1;
  opacity: 0.25;
}

.stores-visuals .img7 {
  transform: translate(70%, -24%) rotate(14deg) scale(.82);
  z-index: 0;
  opacity: 0.18;
}

.stores-visuals .img8 {
  transform: translate(92%, -20%) rotate(16deg) scale(.80);
  z-index: -1;
  opacity: 0.12;
}

/* ACTIVE image (when its radio is checked) - centered, un-tilted, on top */
#s1:checked~.stores-visuals .img1,
#s2:checked~.stores-visuals .img2,
#s3:checked~.stores-visuals .img3,
#s4:checked~.stores-visuals .img4,
#s5:checked~.stores-visuals .img5,
#s6:checked~.stores-visuals .img6,
#s7:checked~.stores-visuals .img7,
#s8:checked~.stores-visuals .img8 {
  transform: translate(-50%, -50%) rotate(0deg) scale(1.02);
  opacity: 1;
  z-index: 30;
  filter: saturate(1.05);
}

/* When a given image is active, slightly dim the others (keeps the stack illusion) */
#s1:checked~.stores-visuals .store-img:not(.img1),
#s2:checked~.stores-visuals .store-img:not(.img2),
#s3:checked~.stores-visuals .store-img:not(.img3),
#s4:checked~.stores-visuals .store-img:not(.img4),
#s5:checked~.stores-visuals .store-img:not(.img5),
#s6:checked~.stores-visuals .store-img:not(.img6),
#s7:checked~.stores-visuals .store-img:not(.img7),
#s8:checked~.stores-visuals .store-img:not(.img8) {
  opacity: 0.28;
  transform: translate(-50%, -50%) scale(.88);
  filter: grayscale(.08) brightness(.9);
  z-index: 5;
}

/* RIGHT: accordion */
.stores-accordion {
  background: var(--_color---blue);
  color: #fff;
  padding: 28px 34px;
  font-family: Oswald, sans-serif;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: flex-start;
  position: relative;
  border-radius: 10px;
}

/* each store item */
.store-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* Store label / title */
.store-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 12px;
  user-select: none;
  padding-right: 8px;
}

/* City Names */
.store-title .city {
  font-size: 20px;
  letter-spacing: 0.6px;
  opacity: 0.45;
  color: rgba(255, 255, 255, 0.95);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: color .25s, opacity .25s, transform .25s;
  font-weight: 700;
  font-family: oswald, sans-serif;
}

/* star image before active city (hidden until selected) */
.store-title .city::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url('images/marquee_Star.png') no-repeat center/contain;
  margin-right: 12px;
  opacity: 0;
  transform: translateY(0);
  transition: opacity .25s, transform .25s;
}

/* plus/minus symbol */
.store-title .symbol::after {
  content: "+";
  font-size: 20px;
  opacity: 0.95;
  transition: transform .25s;
}

/* details (collapsible) */
.store-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .45s ease, opacity .35s ease;
  font-family: oswald, sans-serif;
  font-size: 1rem;
  font-weight: 550;
  margin-top: 10px;
  color: rgb(198, 220, 227);
  line-height: 1.4;
}

/* When radio checked -> change styles on corresponding store-item */
#s1:checked~.stores-accordion .store-item[data-id="s1"] .city,
#s2:checked~.stores-accordion .store-item[data-id="s2"] .city,
#s3:checked~.stores-accordion .store-item[data-id="s3"] .city,
#s4:checked~.stores-accordion .store-item[data-id="s4"] .city,
#s5:checked~.stores-accordion .store-item[data-id="s5"] .city,
#s6:checked~.stores-accordion .store-item[data-id="s6"] .city,
#s7:checked~.stores-accordion .store-item[data-id="s7"] .city,
#s8:checked~.stores-accordion .store-item[data-id="s8"] .city {
  color: var(--_color---neon-green);
  opacity: 1;
}

/* show the star for the active city */
#s1:checked~.stores-accordion .store-item[data-id="s1"] .city::before,
#s2:checked~.stores-accordion .store-item[data-id="s2"] .city::before,
#s3:checked~.stores-accordion .store-item[data-id="s3"] .city::before,
#s4:checked~.stores-accordion .store-item[data-id="s4"] .city::before,
#s5:checked~.stores-accordion .store-item[data-id="s5"] .city::before,
#s6:checked~.stores-accordion .store-item[data-id="s6"] .city::before,
#s7:checked~.stores-accordion .store-item[data-id="s7"] .city::before,
#s8:checked~.stores-accordion .store-item[data-id="s8"] .city::before {
  opacity: 1;
}

/* symbol -> minus when active */
#s1:checked~.stores-accordion .store-item[data-id="s1"] .symbol::after {
  content: "-";
}

#s2:checked~.stores-accordion .store-item[data-id="s2"] .symbol::after {
  content: "-";
}

#s3:checked~.stores-accordion .store-item[data-id="s3"] .symbol::after {
  content: "-";
}

#s4:checked~.stores-accordion .store-item[data-id="s4"] .symbol::after {
  content: "-";
}

#s5:checked~.stores-accordion .store-item[data-id="s5"] .symbol::after {
  content: "-";
}

#s6:checked~.stores-accordion .store-item[data-id="s6"] .symbol::after {
  content: "-";
}

#s7:checked~.stores-accordion .store-item[data-id="s7"] .symbol::after {
  content: "-";
}

#s8:checked~.stores-accordion .store-item[data-id="s8"] .symbol::after {
  content: "-";
}

/* open details for the active item */
#s1:checked~.stores-accordion .store-item[data-id="s1"] .store-details {
  max-height: 260px;
  opacity: 1;
}

#s2:checked~.stores-accordion .store-item[data-id="s2"] .store-details {
  max-height: 260px;
  opacity: 1;
}

#s3:checked~.stores-accordion .store-item[data-id="s3"] .store-details {
  max-height: 260px;
  opacity: 1;
}

#s4:checked~.stores-accordion .store-item[data-id="s4"] .store-details {
  max-height: 260px;
  opacity: 1;
}

#s5:checked~.stores-accordion .store-item[data-id="s5"] .store-details {
  max-height: 260px;
  opacity: 1;
}

#s6:checked~.stores-accordion .store-item[data-id="s6"] .store-details {
  max-height: 260px;
  opacity: 1;
}

#s7:checked~.stores-accordion .store-item[data-id="s7"] .store-details {
  max-height: 260px;
  opacity: 1;
}

#s8:checked~.stores-accordion .store-item[data-id="s8"] .store-details {
  max-height: 260px;
  opacity: 1;
}

/* left side visuals */
.stores-visuals {
  position: relative;
  flex: 1 1 0%;
  min-width: 0;
  height: auto;
  /* flex stretch decides height */
  overflow: hidden;

}


/* right side accordion */
.stores-accordion {
  flex: 0 0 520px;
  display: flex;
  flex-direction: column;
}




/* <----Our Stores Animations----> */

.store-img {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.store-item input:checked~.store-img {
  opacity: 1;
  transform: translateY(0);
}

.store-details {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-10px);
  transition: max-height 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
}

.store-item input:checked~.store-details {
  max-height: 200px;
  /* To adjust based on content */
  opacity: 1;
  transform: translateY(0);
}

.store-title .symbol {
  display: inline-block;
  transition: transform 0.4s ease;
}

.store-item input:checked~.store-title .symbol {
  transform: rotate(180deg);
}

.stores-heading {
  font-size: 96px;
  color: var(--_color---neon-green);
  text-align: center;
  animation: neon-flicker 2s infinite alternate;
}

@keyframes neon-flicker {

  0%,
  19%,
  21%,
  23%,
  25%,
  54%,
  56%,
  100% {
    text-shadow: 0 0 5px #b2d67c, 0 0 20px #3c5f08, 0 0 40px #d3e992;
  }

  20%,
  24%,
  55% {
    text-shadow: none;
  }
}



/* Blog / Press Section */
.press-section {
  padding: 60px 20px;
  text-align: center;
  background: url(images/scoop_of_happiness_bg_Vector.png) repeat-x;
  background-size: cover;
  width: 100%;
  height: 850px;
  position: relative;
  top: -97rem;
  left: 0;
  z-index: 1;
  background-color: #cce5f2;
  animation: bgScroll 15s linear infinite;

}


/* Title*/
.section-title {
  letter-spacing: -1.96px;
  font-family: Oswald, Arial, sans-serif;
  font-size: 96px;
  line-height: 1;
  color: var(--_color---blue);
  font-weight: 700;
  margin-bottom: 60px;
  text-transform: uppercase;
  animation: blue-flicker 2s infinite alternate;
}

@keyframes blue-flicker {

  0%,
  19%,
  21%,
  23%,
  25%,
  54%,
  56%,
  100% {
    text-shadow: 0 0 5px #7f88dc, 0 0 20px #8875cb, 0 0 40px #9b92e9;
  }

  20%,
  24%,
  55% {
    text-shadow: none;
  }
}

.cards-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.blog-card {
  position: relative;
  width: 350px;
  height: 450px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.blog-card:hover img {
  filter: blur(4px) brightness(70%);
  transform: scale(1.05);
}


.card-content {
  font-family: oswald, sans-serif;
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 14px;
  color: #fff;
  opacity: 0;
  transform: translateY(40px);
  /* To start lower */
  transition: opacity 0.5s ease, transform 0.5s ease;
}


.blog-card:hover .card-content {
  opacity: 1;
  transform: translateY(0);
  /* To slide up smoothly */
}

.card-content h3 {
  font-family: oswald, sans-serif;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.card-content .line {
  width: 50px;
  height: 2px;
  background: var(--_color---neon-green);
  margin: 8px 0;
  transition: width 0.4s ease;
}

.blog-card:hover .line {
  width: 250px;
  /* To expand line smoothly */
}

.card-content .category {
  font-family: oswald, sans-serif;
  color: var(--_color---light-blue);
  font-style: italic;
  font-size: 14px;
  margin-bottom: 12px;
}

.card-content p {
  font-family: oswald, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.date {
  font-family: oswald, sans-serif;
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.6);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  color: #fff;
}

.read-btn {
  font-family: oswald, sans-serif;
  padding: 8px 16px;
  font-size: 0.9rem;
}



/* Scoop Us Out Online Section */
.scoop-online {
  position: relative;
  background: var(--_color---pink) url("images/scoop_us_out_online_bg_Vector.png") repeat-x center center/cover;
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
  animation: bgScroll 15s linear infinite;
  bottom: 97rem;
}

.scoop-title-2 {
  font-family: oswald, sans-serif;
  font-size: 8rem;
  font-weight: 800;
  color: var(--_color---neon-green);
  text-transform: uppercase;
  margin-bottom: 50px;
  position: relative;
  z-index: 0;
  top: 165px;
  margin: 0 auto;
}

/* Slider container */
.scoop-slider {
  width: 100%;
  position: relative;
}

/* Scrolling track */
.scoop-track {
  display: flex;
  gap: 10rem;
  width: calc(300px * 8 + 30px * 8);
  /* 8 images + gaps */
  animation: scroll-left 30s linear infinite;
}

/* Images */
.scoop-track img {
  width: 300px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

/* Tilt angles */
.tilt-1 {
  transform: rotate(10deg);
  position: relative;
  bottom: 12rem;
}

.tilt-2 {
  transform: rotate(-15deg);
  position: relative;
  top: 3rem;
}

.tilt-3 {
  transform: rotate(8deg);
  position: relative;
  bottom: 12rem;
}

.tilt-4 {
  transform: rotate(-13deg);
}

.scoop-track img:hover {
  transform: scale(1.05) rotate(0deg);
}

/* Animation For images*/
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}



/* Animated follow button  */

.scoop-online .follow-btn {
  position: absolute;
  top: 40%;
  left: 0;
  bottom: 530px;
  background: var(--_color---neon-green);
  color: var(--_color---blue);
  padding: 12px 28px;
  border-radius: 50px;
  transform: translateX(-50%);
  font-size: 16px;
  font-weight: 600;
  font-family: oswald, sans-serif;
  padding: 12px 28px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  z-index: 10;
  animation: slideX 6s ease-in-out infinite alternate;

}

@keyframes slideX {
  0% {
    left: 10%;
  }

  100% {
    left: 80%;
  }
}

.follow-btn:hover {
  background: var(--_color---blue);
  color: var(--_color---neon-green);
}



/* Footer Section */
.footer {
  background-color: var(--_color---blue);
  padding: 60px 40px;
  color: var(--_color---neon-green);
  font-family: oswald, sans-serif;
  margin-top: -1552px;
  height: 600px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

/* Newsletter */
.footer-newsletter {
  flex: 1;
  min-width: 260px;
}

.footer-newsletter h3 {
  font-family: oswald, sans-serif;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  margin-left: 20px;
}

.newsletter-form {
  display: flex;
  max-width: 300px;
  margin-bottom: 20px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 20px 0 0 20px;
  outline: none;
}

input[type="email"] {
  font-family: oswald, sans-serif;
  background-color: var(--_color---light-blue);
}


.newsletter-form button {
  background: #2b1367;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 0 20px 20px 0;
  cursor: pointer;
  font-weight: bold;
  font-family: oswald, sans-serif;
}

.newsletter-form button:hover {
  color: var(--_color---blue);
  background: var(--_color---neon-green);
}

/* <----  Message Box  ----> */

.thank-you-msg {
  display: none;
  margin-top: 1rem;
  padding: 12px 20px;
  background: var(--_color---neon-green);
  color: var(--_color---blue);
  font-weight: bold;
  font-family: oswald, sans-serif;
  border-radius: 6px;
  text-align: center;
}

:target.thank-you-msg {
  display: block;
  animation: fadeIn 0.6s ease;
}

.material-symbols-outlined {
  vertical-align: middle;
  margin-right: 8px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* Socials */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 2rem;
  margin-left: 20px;
}


.footer-socials a {
  margin: 0 8px;
  animation: float 3s ease-in-out infinite;
}

.footer-socials img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--_color---neon-green);
  padding: 6px;
  transition: transform 0.3s ease;
}

.footer-socials img:hover {
  background-color: var(--_color---light-blue);
  transform: scale(1.1);
}

/* Footer Links */
.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 90px;
}


.footer-links a {
  position: relative;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}


.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--_color---pink);
  /* underline color */
  transition: width 0.3s ease;
}


.footer-column h4 {
  font-family: oswald, sans-serif;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  font-family: oswald, sans-serif;
}


.footer-links a:hover {
  letter-spacing: 2px;
  color: var(--_color---pink);
  text-shadow: 0 0 8px var(--_color---pink),
    0 0 16px var(--_color---pink);
}

.footer-links a:hover::after {
  width: 100%;
  /* underline grows smoothly */
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}


/* Bottom Logo + Credits */
.footer-bottom {
  text-align: center;
  margin-top: 150px;
}

.footer-logo {
  max-width: 500px;
  height: auto;
  margin-bottom: -10px;
}

.footer-bottom p {
  font-family: oswald, sans-serif;
  font-size: 12px;
  color: #fff;
}

.footer-bottom a {
  color: #fff;
  text-decoration: underline;
}


/* Footer video container */
.footer-video {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 2rem auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  left: 27rem;
  bottom: 35rem;
}

/* Video styling */
.footer-video video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}


/* <------- Hamburger Menu --------> */

/* Hide hamburger by default */
.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
  position: relative;
  margin-left: 5rem;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: var(--blue);
  margin: 2px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 78%;
  height: 58vh;
  background: var(--_color---light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
  left: 50%;
  position: relative;
}

.mobile-nav-link {
  color: var(--_color---pink);
  font-family: oswald, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--blue);
  transform: translateY(30px) scale(1.1) rotate(-3deg);
}

.mobile-nav-link.active {
  color: var(--blue);
}

/* Menu toggle states */
.menu-toggle:checked~.mobile-menu {
  opacity: 1;
  visibility: visible;
}

.menu-toggle:checked~.mobile-menu .mobile-nav-link {
  opacity: 1;
  transform: translateY(0);
  margin-right: 32rem;
}

/* Stagger animation for menu items */
.menu-toggle:checked~.mobile-menu .mobile-nav-link:nth-child(1) {
  transition-delay: 0.1s;
}

.menu-toggle:checked~.mobile-menu .mobile-nav-link:nth-child(2) {
  transition-delay: 0.2s;
}

.menu-toggle:checked~.mobile-menu .mobile-nav-link:nth-child(3) {
  transition-delay: 0.3s;
}

.menu-toggle:checked~.mobile-menu .mobile-nav-link:nth-child(4) {
  transition-delay: 0.4s;
}

.menu-toggle:checked~.mobile-menu .mobile-nav-link:nth-child(5) {
  transition-delay: 0.5s;
}

.menu-toggle:checked~.mobile-menu .mobile-nav-link:nth-child(6) {
  transition-delay: 0.6s;
}

/* Hamburger animation when menu is open */
.menu-toggle:checked~.hamburger .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
  background-color: var(--_color---blue);
}

.menu-toggle:checked~.hamburger .hamburger-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle:checked~.hamburger .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  background-color: var(--_color---blue);
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1200px) {
  .hamburger {
    display: flex;
    margin-left: 1rem;
  }

  .nav-left,
  .nav-right {
    display: none;
  }


  .logo-wrapper {
    position: static;
    transform: none;
  }

  .logo-wrapper img {
    height: 50px;
    position: static;
  }

  .pink-ball {
    display: none;
  }
}

/* Tablet specific adjustments */
@media (min-width: 481px) and (max-width: 768px) {
  .mobile-nav-link {
    font-size: 2.5rem;
  }

  .logo-wrapper img {
    height: 60px;
  }
}

/* Large mobile phones */
@media (max-width: 480px) {
  .mobile-nav-link {
    font-size: 1.8rem;
  }

  .logo-wrapper img {
    height: 45px;
  }

  .hamburger-line {
    width: 22px;
    height: 2px;
  }
}

/* Small mobile phones */
@media (max-width: 375px) {
  .mobile-nav-link {
    font-size: 1.5rem;
    gap: 1.5rem;
  }

  .mobile-menu-content {
    gap: 1.5rem;
  }
}

/* Landscape mode adjustments */
@media (orientation: landscape) and (max-height: 500px) {
  .mobile-menu-content {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 90%;
  }

  .mobile-nav-link {
    font-size: 1.2rem;
  }
}

/* To Ensure menu works with existing navbar z-index */
.menu-toggle:checked~.hamburger {
  z-index: 1002;
}

/* To Prevent body scroll when menu is open */
.menu-toggle:checked~body {
  overflow: hidden;
}
