* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.container {
  width: 100%;
  max-width: 1200px;  /* This is your content limit */
  margin: 0 auto;      /* Center the box */
  padding: 0 1.5rem;   /* Side padding to avoid edge-crash on small screens */
  box-sizing: border-box;
}
	  
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
}

    body {
      font-family: 'Poppins', sans-serif;
      color: #333;
      background-color: #fff3e1;
    }
    header {
      background-color: #fff3e1;
      padding: 1rem 2rem;
      display: flex;
      align-items: center;
      z-index: 1000;
    }
	.nooch-marquee {
  width: 100vw;
  background-color: #cb2877;
  overflow: hidden;
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.nooch-marquee-track {
  display: flex;
  width: fit-content;
  animation: nooch-scroll 20s linear infinite;
}

.nooch-marquee-track span {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 760;
  font-family: 'Fredoka', sans-serif;
  color: #fff3e1;
  letter-spacing: 2px;
  white-space: nowrap;
  padding-right: 2rem;
}

@keyframes nooch-scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
	  @media (max-width: 768px) {
  .nooch-marquee-track span {
    font-size: 1.1rem;
  }
}
.custom-banner-slider {
  width: 100vw;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  height: auto;
}

.custom-slider-wrapper {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 100%;
}

.custom-slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.custom-slider-dots {
  position: absolute;
  bottom: 1rem;
  right: 50%;
  transform: translateX(50%);
  display: flex;
  gap: 0.8rem;
}

.custom-slider-dots .dot {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background-color: #fff3e1;
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.3s;
}

.custom-slider-dots .dot.active {
  opacity: 1;
}

@media (max-width: 768px) {
  .custom-banner-slider {
    aspect-ratio: 4 / 3;
  }
  .custom-slide img {
    height: auto;
    object-fit: contain;
  }
}

    .hero {
      padding-top: 60px; /* Adjust based on marquee height */
	  position: relative;
      height: 100vh;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      background-image: url("../img/para.png");
      background-attachment: fixed;
      background-size: cover;
      background-position: center;
    }
    .hero h1 {
      font-family: 'Fredoka', sans-serif;
      font-size: 6rem;
		font-weight: bolder;
      color: white;
		margin-top: 2rem;
      margin-bottom: 1rem;
    }
   .cta-button {
  background-color: #e08a2d;
  color: white;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 40px;
  font-size: 1.5rem;
  font-family: 'Fredoka', sans-serif;
  text-decoration: none;
  box-shadow: 0 6px 0 #9e601b;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 0 #844e17;
}

.cta-button:active {
  transform: translateY(1px);
  box-shadow: 0 3px 0 #6c3e13;
}

 .section-heading {
  font-family: 'Fredoka', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: #cb2877;
  text-align: center;
  margin-bottom: 6rem; /* Adjusts space below heading */
  padding-top: 90px;    /* Adds breathing room from banner above */
  line-height: 1.2;
  letter-spacing: 1px;
}


@media (max-width: 768px) {
  .section-heading {
    font-size: 2rem; /* Smaller on mobile */
    margin-bottom: 2rem;
  }
}
 .products-grid-v2 {
  display: grid;
  margin-top: 5rem; 
  grid-template-columns: repeat(2, 1fr);
  gap: 8rem 8rem;
  justify-items: center;
  margin-top: 9rem;
}

.product-card-v2 {
  background-color: #eee;
  border-radius: 24px;
  padding: 0.01rem 2rem 1.5rem ;
  text-align: center;
  position: relative;
  width: 100%;
  max-width: 390px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.product-card-v2 img {
  width: 180px;
  position: relative;
  top: -90px;
  margin-bottom: -60px;
  z-index: 2;
}

.card-content {
  padding-top: 1rem;
}

.card-content h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: white;
  margin-bottom: 0.5rem;
}

.card-content p {
  font-size: 1rem;
  color: white;
  margin-bottom: 1.5rem;
}

.buy-button-v2 {
  background-color: #fff3e1;
  color: #333;
  font-weight: bolder;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-family: 'Fredoka', sans-serif;
  box-shadow: 0 4px 0 rgba(0,0,0,0.3);
  transition: all 0.2s ease;
  display: inline-block;
}

.buy-button-v2:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 0 rgba(0,0,0,0.3);
}

/* Flavor color themes */
.product-card-v2.mocha { background-color: #cb2877; }
.product-card-v2.darkchoco { background-color: #549bb4; }
.product-card-v2.banana { background-color: #52437a; }
.product-card-v2.chocochip { background-color: #e08a2d; }
	  
	  @keyframes floaty {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.product-card-v2.mocha img,
.product-card-v2.banana img,
.product-card-v2.darkchoco img,
.product-card-v2.chocochip img {
  animation: floaty 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.product-card-v2 img:hover {
  transform: scale(1.1);
  z-index: 3;
}

/* Responsive */
@media (max-width: 768px) {
  .products-grid-v2 {
    grid-template-columns: 1fr;
  }
  .product-card-v2 img {
    top: -60px;
  }
}

.buy-button-v2 {
  background-color: #fff3e1;
  color: #333;
  font-weight: bold;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-family: 'Fredoka', sans-serif;
  box-shadow: 0 4px 0 rgba(0,0,0,0.2);
  transition: all 0.2s ease;
}

.buy-button-v2:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 0 rgba(0,0,0,0.2);
}

/* Unique background colors */
.product-card-v2.mocha { background-color: #cb2877; }
.product-card-v2.darkchoco { background-color: #549bb4; }
.product-card-v2.banana { background-color: #52437a; }
.product-card-v2.chocochip { background-color: #e08a2d; }


 .buy-button {
      background-color: #fff3e1;
      padding: 1rem 2rem;
      border: none;
      border-radius: 40px;
      font-weight: bold;
      font-family: 'Poppins', sans-serif;
      font-size: 2rem;
      box-shadow: 0 6px 0 #555;
      transition: all 0.2s ease, transform 0.2s ease;
      margin-top: 1rem;
      cursor: pointer;
    }

    .buy-button:hover {
      transform: scale(1.05) translateY(-3px);
      box-shadow: 0 8px 0 #444;
    }

    .buy-button:active {
      transform: scale(0.98) translateY(1px);
      box-shadow: 0 3px 0 #333;
    }

    .section h2 {
      font-family: Fredoka;
      font-size: 4rem;
      color: #cb2877;
      margin-bottom: 2rem;
      font-weight: 800;
      font-stretch: ultra-expanded;
    }

   .review-card {
  width: 380px;
  height: 400px;
  background-color: #4BA8B3;
  color: white;
  font-family: 'Poppins', sans-serif;
  border-radius: 48px 48px 80px 48px;
  padding: 3.5rem;
  box-shadow: 12px 12px 0 #E5C49B;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
  text-align: left;
  margin: 2rem 2rem;
	   padding-bottom: 6rem;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 16px 16px 0 #d6ae84;
}

.review-card p {
  margin-bottom: 1rem;
  line-height: 1.5;
}

.review-card p:first-child {
  font-size: 1.2rem;
  font-weight: 700;
}

.review-card p:nth-child(2) {
  font-size: 2.5rem;
  color: #FFD700;
  font-weight: bold;
}

.review-card p:nth-child(3) {
  font-size: 1.4rem;
  font-weight: 900;
}

.review-card p:last-child {
  font-size: 1.1rem;
}

    .faq {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
    background-color: #cb2877;
    background-position: center;
    padding: 3rem 2rem 4rem 2rem;
    border-radius: 24px;
  }

  .faq + section.about-section {
    margin-top: -20px;
  }
    .faq h3 {
      font-family: 'Poppins', sans-serif;
      color: #fad552;
      font-size: 1.5rem;
      margin-top: 1.5rem;
		margin-bottom: 1.5rem;
      cursor: pointer;
      transition: color 0.3s ease;
    }
    .faq p {
      margin: 0.5rem 0 1.5rem;
      color: white;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height 0.5s ease, opacity 0.5s ease;
    }
    .faq .faq-item.active p {
      max-height: 200px;
      opacity: 1;
    }
    .faq .faq-item:not(:last-child) {
      border-bottom: 1px solid white;
      padding-bottom: 1rem;
      margin-bottom: 1rem;
    }


    .section h2 {
      font-family: Fredoka;
      font-size: 4rem;
      color: #cb2877;
      margin-bottom: 2rem;
      font-weight: 800;
      font-stretch: ultra-expanded;
    }

    .about-section {
      background-position: center;
      padding: 6rem 2rem;
	background-color: #cb2877;
    }
    .about-section h2 {
      font-family: 'Fredoka', sans-serif;
      font-size: 4rem;
		font-weight: bold;
      margin-bottom: 1rem;
	padding-left: 5rem;
		color:  #fff3e1 ; 
    }
    .about-section p {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 2.5rem;
    font-family: 'Fredoka',sans-serif;
	color: #fff3e1 ; 
	padding-left: 450px;
		text-align: center;
    }
	  
	  .about-section img
      width: 100%;
      border-radius: 8px;
    }

  .custom-footer {
  background-color: #fff3e1;
  position: sticky;
  bottom: 0;
  padding: 2rem 1rem 1rem;
  font-family: 'Poppins', sans-serif;
  z-index: 100;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 1200px;
  margin: auto;
}

.footer-left img.brownie-img {
  width: 500px;
  height: 500px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease, box-shadow 0.4s ease;
  margin-top: 20px;
  border-radius: 24px;
}


.footer-center .footer-info a,
.footer-center .footer-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #cb2877;
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
padding-left: -10rem;
}

.footer-center .footer-info a:hover {
  text-decoration: underline;
}

.footer-icon {
  width: 40px;
  height: 40px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-socials img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: transform 0.3s ease;
	padding-left: -10px;
}

.footer-socials img:hover {
  transform: scale(1.1);
	  }

	
.footer-logo 
  display: flex;
  justify-content: center;
		flex: 1;}

.footer-logo img {
  height: 50px;
  object-fit: contain;
}

  .footer-partners {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}

.footer-partners img {
  height: 50px;
  width: auto;
  object-fit: contain;
	padding-left: 10px;
}

  .footer-partners span {
  font-weight: bold;
  color: #cb2877;
  font-size: 2rem;
}


.back-to-top {
  display: inline-block;
  margin-top: 1.5rem;
  color: #cb2877;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.2s ease;
}

.back-to-top :hover {
  color: #e08a2d;
}

@media (max-width: 768px) {
  .footer-container {
    padding: 1rem;
    text-align: center;
  }
  .footer-center .footer-info a {
    justify-content: center;
  }
}
    .adjustable-footer-img {
      height: 400px;
	 width: 400px;
      transition: all 0.3s ease;
    }

    @media (max-width: 768px) {
      .adjustable-footer-img {
        max-width: 80px;
      }
    }
/* --- Mobile Responsiveness Enhancements (Added by ChatGPT) --- */

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
    margin-top: 3rem;
  }

  .cta-button {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }

  .section-heading {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .product-card-v2 img {
    width: 140px;
    top: -40px;
    margin-bottom: -40px;
  }

  .review-card {
    width: 90%;
    height: auto;
    padding: 2rem;
    margin: 1rem auto;
  }

  .footer-left img.brownie-img {
    width: 250px;
    height: auto;
  }

  .footer-center .footer-info a,
  .footer-center .footer-location {
    font-size: 1rem;
    justify-content: center;
  }

  .footer-partners span {
    font-size: 1rem;
  }

  .footer-partners img,
  .footer-logo img,
  .footer-socials img {
    height: 30px;
    width: auto;
  }

  .about-section {
    flex-direction: column !important;
    padding: 3rem 1rem;
  }

  .about-section img {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    margin: 1rem 0;
  }

  .about-section h2 {
    font-size: 2rem;
    text-align: center;
    padding-left: 0;
  }

  .about-section p {
    font-size: 1.2rem;
    padding-left: 0;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-socials {
    padding-right: 0;
    margin-bottom: 1rem;
  }

  .footer-logo {
    margin-bottom: 1rem;
  }

  .footer-partners {
    justify-content: center;
    flex-wrap: wrap;
  }

  .faq {
    padding: 1.5rem;
  }

  .faq h3 {
    font-size: 1.2rem;
  }

  .faq p {
    font-size: 1rem;
  }

  .custom-banner-slider {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .custom-slide img {
    width: 100%;
    object-fit: contain;
  }

  .nooch-marquee-track span {
    font-size: 1rem;
  }

  #reviews > .container > div {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .review-card {
    flex: 0 0 80%;
    scroll-snap-align: center;
  }
}
