@import url('https://fonts.googleapis.com/css2?family=Passion+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sour+Gummy:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800;900&display=swap');

/* ===========================
   GLOBAL RESET & BASE
=========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;   /* kill horizontal scroll at root */
  max-width: 100%;
}

body {
  font-family: 'Sour Gummy', sans-serif;
  overflow-x: hidden;
  max-width: 100%;
}

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

/* ===========================
   HEADER / NAV
=========================== */
header {
  position: fixed;
  z-index: 9999;
  width: 100%;
  top: 0;
  left: 0;
  transition: background 0.4s, box-shadow 0.4s;
  background: transparent;
}

header.sticky {
  background: #00AEEF;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

.hero-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
  position: relative;
  z-index: 10;
}

/* Logo */
.nav-logo { display: flex; align-items: center; cursor: pointer; }
.logo-icon { width: 180px; display: flex; align-items: center; justify-content: center; }
.logo-icon img { width: 100%; height: auto; }

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 8px;
  cursor: pointer;
  padding: 6px;
  z-index: 20;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav collapse wrapper */
.nav-collapse {
  display: flex;
  align-items: center;
  gap: 36px;
}

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: opacity 0.2s;
}

.nav-links li a:hover { opacity: 0.75; }

/* Contact Button */
.btn-contact.hedrBtn,
button.btn-contact.hedrBtn {
  background-color: #FBB03D;
  color: #ffffff;
  border: none;
  border-radius: 16px;
  padding: 11px 26px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.15s;
  font-family: 'Sour Gummy', sans-serif;
  white-space: nowrap;
}

.btn-contact.hedrBtn:hover { background-color: #e89d28; transform: translateY(-1px); }

/* ===========================
   MOBILE NAV — ≤ 768px
=========================== */
@media (max-width: 768px) {
  .hero-nav { padding: 12px 20px; }
  .logo-icon { width: 130px; }

  .nav-hamburger { display: flex; }

  .nav-collapse {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00AEEF;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 9998;
    overflow: hidden;
  }

  .nav-collapse.open { display: flex; }

  /* Close (X) button inside the open menu */
  .nav-close-btn {
    display: flex;
    position: absolute;
    top: 18px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    font-size: 22px;
    line-height: 1;
    z-index: 10;
  }

  .nav-links {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .nav-links li a { font-size: 22px; font-weight: 700; }

  .nav-cta-wrap { margin-top: 8px; }

  .btn-contact.hedrBtn { font-size: 18px; padding: 14px 36px; }
}

/* Hide close button on desktop */
@media (min-width: 769px) {
  .nav-close-btn { display: none; }
}

/* ===========================
   HERO SECTION
=========================== */
.hero-section {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ── Slider shell ── */
.crushley-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 52rem;
  overflow: hidden;
}

/* ── Individual slide ── */
.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.slide.active { opacity: 1; pointer-events: auto; }

/* Per-slide fallback colours */
.slide-1 { background: linear-gradient(135deg, #29b6f6 0%, #0288d1 100%); }
.slide-2 { background: linear-gradient(135deg, #8bc34a 0%, #558b2f 100%); }
.slide-3 { background: linear-gradient(135deg, #fdd835 0%, #f9a825 100%); }

/* Background image */
.slide-bg { position: absolute; inset: 0; z-index: 0; }
.bg-img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Wave at bottom */
.wave-bottom {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 11rem;
  z-index: 2; pointer-events: none;
}
.wave-bottom svg { width: 100%; height: 100%; }

/* Slide content */
.slide-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  padding: 0 5rem;
  display: flex;
  align-items: center;
}

.slide-inner {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 100%;
}

/* Left */
.slide-left { flex: 0 0 28%; max-width: 28%; padding-bottom: 4rem; }
.slide-headline {
  font-size: 96px;
  font-weight: 900;
  line-height: 1.05;
  color: #ffffff;
  letter-spacing: 0.03em;
  font-family: 'Passion One', sans-serif;
}

/* Center */
.slide-center {
  flex: 0 0 40%;
  max-width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  position: relative;
}

.product-img {
  max-height: 30rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  margin-bottom: 4.5rem;
  filter: drop-shadow(0 1.5rem 2rem rgba(0,0,0,0.18));
  animation: floatProduct 3.6s ease-in-out infinite;
}

.product-img--tall { max-height: 27rem; }

@keyframes floatProduct {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-1rem); }
}

/* Right */
.slide-right { flex: 0 0 22%; max-width: 22%; padding-bottom: 5rem; }
.slide-desc {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.7;
  color: #ffffff;
  letter-spacing: 0.02em;
  font-family: 'Sour Gummy', sans-serif;
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 1.2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.dot {
  width: 0.6rem; height: 0.6rem;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.dot.active { background: #ffffff; transform: scale(1.4); }

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 42%; transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.25);
  border: none; border-radius: 50%;
  width: 2.75rem; height: 2.75rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #ffffff;
  transition: background 0.25s;
  backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: rgba(255,255,255,0.45); }
.slider-arrow--prev { left: 1.5rem; }
.slider-arrow--next { right: 1.5rem; }

/* Progress bar */
.slider-progress {
  position: absolute;
  top: 0; left: 0;
  height: 3px;
  background: rgba(255,255,255,0.6);
  z-index: 20;
  width: 0%;
  transition: width 0.1s linear;
}

/* ── Marquee ── */
.marquee-strip {
  background: white;
  overflow: hidden;
  padding: 12px 0;
  position: relative;
  z-index: 7;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: marquee-scroll 18s linear infinite;
}

.marquee-track span {
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 700;
  color: #c8e8f8;
  white-space: nowrap;
}

.marquee-dot { color: #b0daf5 !important; font-size: 14px !important; font-weight: 400 !important; }

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


.grecaptcha-badge {
    visibility: hidden;
}
/* ===========================
   HERO RESPONSIVE
=========================== */
@media (max-width: 1799px) {
    .crushley-slider {
    height: 46rem;
}
  .slide-headline {
    font-size: 3.75rem;
}
.slide-desc {
    font-size: 18px;
}
.slide-center {
    align-items: center;
    justify-content: center;
}
}
@media (max-width: 992px) {
  .crushley-slider { height: 36rem; }
  .slide-content { padding: 0 2.5rem; }
  .slide-headline { font-size: 64px; letter-spacing: 0.02em; }
  .product-img { max-height: 16rem; margin-bottom: 4rem; }
  .slide-left  { flex: 0 0 30%; max-width: 30%; }
  .slide-center{ flex: 0 0 38%; max-width: 38%; }
  .slide-right { flex: 0 0 28%; max-width: 28%; }
  .slide-desc  { font-size: 18px; letter-spacing: 0.015em; }
}

@media (max-width: 576px) {
  /* Slider becomes auto-height, driven by content */
  .crushley-slider {
    /*height: auto;*/
    min-height: unset;
    height: 34rem;
  }

  /* Each slide: relative so it can grow with content */
  .slide {
    position: relative;
    inset: unset;
    width: 100%;
    height: auto;
    min-height:auto; /* fill screen on mobile */
    display: none;
    flex-direction: column;
  }

  .slide.active {
    display: flex;
  }

  /* Background image fills the slide absolutely */
  .slide-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  /* Wave stays at bottom */
  .wave-bottom {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 7rem;
    z-index: 2;
    pointer-events: none;
  }

  /* Content: column layout, centred, with nav padding at top */
  .slide-content {
    position: relative;
    inset: unset;
    z-index: 3;
    padding: 90px 20px 160px; /* top: clears fixed header; bottom: clears wave + extra */
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 100%;
  }

  .slide-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    height: auto;
    width: 100%;
  }

  /* Reorder: headline → desc → product image on mobile */
  .slide-left  { order: 1; }
  .slide-right { order: 2; }
  .slide-center { order: 3; }

  .slide-left, .slide-center, .slide-right {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
    text-align: center;
    padding-bottom: 0;
  }

  .slide-headline {
    font-size: clamp(2.5rem, 8vw, 2.8rem);
    letter-spacing: 0.02em;
    text-align: center;
  }

  .slide-desc {
    font-size: 16px;
    letter-spacing: 0.01em;
    text-align: center;
    line-height: 1.65;
  }

  .product-img {
    max-height: 10rem;
    width: auto;
    margin-bottom: 0;
    animation: none;
    /* Override the desktop margin-bottom that pushes into wave */
    margin-bottom: 0 !important;
  }

  /* Dots sit in normal flow since slide is now flex column */
  .slider-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }

  .slider-arrow { display: none; }
}

@media (max-width: 1799px) {
  .bg-img {
    height: 100%;
}
}

/* Medium mobile (577–768) — two-col is cramped, use stacked too */
@media (min-width: 577px) and (max-width: 768px) {
  .crushley-slider { height: 30rem; }
  .slide-content { padding: 0 2rem; }
  .slide-headline { font-size: 42px; letter-spacing: 0.02em; }
  .product-img { max-height: 14rem; margin-bottom: 3rem; }
  .slide-left  { flex: 0 0 32%; max-width: 32%; }
  .slide-center{ flex: 0 0 36%; max-width: 36%; }
  .slide-right { flex: 0 0 28%; max-width: 28%; padding-bottom: 3rem; }
  .slide-desc  { font-size: 15px; letter-spacing: 0.01em; }
}

/* ===========================
   STORY SECTION
=========================== */
.story-section {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  padding: 90px 24px 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-splash {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70%; max-width: 860px;
  pointer-events: none; z-index: 0;
}

.splash-bg-img { width: 100%; height: auto; display: block; }

.story-content {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.story-heading {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900; color: #1e1e1e;
  line-height: 1.15; margin-bottom: 24px;
  font-family: 'Passion One', sans-serif;
}

.story-description {
  font-size: 1.25rem;
  color: #555555; line-height: 1.85;
  font-weight: 400; margin-bottom: 40px;
  font-family: 'Sour Gummy', sans-serif;
}

.btn-know-more {
  display: inline-block;
  background-color: #ffffff; color: #1e1e1e;
  border: 2px solid #1e1e1e; border-radius: 16px;
  padding: 13px 40px; font-size: 16px; font-weight: 700;
  cursor: pointer; transition: background-color 0.2s, color 0.2s, transform 0.15s;
  font-family: 'Sour Gummy', sans-serif;
}
.btn-know-more:hover { background-color: #1e1e1e; color: #ffffff; transform: translateY(-2px); }

@media (max-width: 768px) {
  .story-section { padding: 70px 20px 20px; }
  .story-splash { width: 100%; }
}

@media (max-width: 480px) {
  .story-section { padding: 50px 16px 50px; }
  .story-splash { width: 130%; }
}

/* ===========================
   DAIRY COLLECTION SECTION
=========================== */
.collection-section { width: 100%; background: #ffffff; padding: 60px 0 70px; overflow: hidden; }

.collection-container { max-width: 1400px; margin: 0 auto; padding: 0 48px; }

.collection-header {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 36px;
  gap: 16px;
}

.collection-heading {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900; color: #1e1e1e;
  line-height: 1.1;
  font-family: 'Passion One', sans-serif; margin: 0;
}

.btn-view-all {
  display: inline-block;
  background: #ffffff; color: #1e1e1e;
  border: 2px solid #1e1e1e; border-radius: 10px;
  padding: 10px 26px; font-size: 15px; font-weight: 700;
  cursor: pointer; white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  font-family: 'Sour Gummy', sans-serif;
}
.btn-view-all:hover { background: #1e1e1e; color: #ffffff; transform: translateY(-1px); }

.collection-slider-outer { overflow: hidden; width: 100%; }

.collection-slider {
  display: flex; gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}

.collection-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}

.card-img-wrap {
  width: 100%; aspect-ratio: 1/1;
  border-radius: 28px; position: relative;
  overflow: hidden; display: flex;
  align-items: center; justify-content: center;
}

.card-bg-pattern {
  position: absolute; inset: 0;
  background-repeat: no-repeat; background-size: cover;
  opacity: 0.35; pointer-events: none;
}

.card-bg-yellow { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cpath d='M0,100 Q100,50 200,100 Q300,150 400,100 L400,0 L0,0Z' fill='%23e8c800' opacity='0.4'/%3E%3Ccircle cx='320' cy='80' r='60' fill='%23e8c800' opacity='0.25'/%3E%3C/svg%3E"); }
.card-bg-green  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cpath d='M0,100 Q100,50 200,100 Q300,150 400,100 L400,0 L0,0Z' fill='%2370c000' opacity='0.4'/%3E%3Ccircle cx='320' cy='80' r='60' fill='%2370c000' opacity='0.25'/%3E%3C/svg%3E"); }
.card-bg-teal   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cpath d='M0,100 Q100,50 200,100 Q300,150 400,100 L400,0 L0,0Z' fill='%2300a8a6' opacity='0.4'/%3E%3Ccircle cx='320' cy='80' r='60' fill='%2300a8a6' opacity='0.25'/%3E%3C/svg%3E"); }
.card-bg-purple { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cpath d='M0,100 Q100,50 200,100 Q300,150 400,100 L400,0 L0,0Z' fill='%238844cc' opacity='0.4'/%3E%3Ccircle cx='320' cy='80' r='60' fill='%238844cc' opacity='0.25'/%3E%3C/svg%3E"); }

.card-product-img {
  position: relative; z-index: 1;
  width: 78%; height: 78%; object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.15));
  transition: transform 0.3s ease;
}
.collection-card:hover .card-product-img { transform: translateY(-8px) scale(1.04); }

.card-title {
  font-size: 1.5rem;
  font-weight: 800; color: #1e1e1e; text-align: center; margin: 0;
  font-family: 'Passion One', sans-serif;
  letter-spacing: .5px;
}

.collection-nav {
  display: flex; justify-content: center;
  align-items: center; gap: 14px; margin-top: 36px;
}

.nav-arrow {
  width: 52px; height: 52px; border-radius: 50%;
  border: 2px solid #1e1e1e; background: #ffffff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s, transform 0.15s; padding: 0;
}
.nav-arrow:hover { background: #f0f0f0; transform: scale(1.08); }

@media (max-width: 992px) {
  .collection-container { padding: 0 24px; }
  .collection-card { flex: 0 0 calc(50% - 12px); }
}

@media (max-width: 576px) {
  .collection-section { padding: 40px 0 50px; }
  .collection-container { padding: 0 16px; }
  .collection-card { flex: 0 0 calc(80% - 12px); }
  .card-img-wrap { border-radius: 20px; }
}

/* ===========================
   WHY CHOOSE CRUSHLEY
=========================== */
.why-section {
  position: relative; width: 100%; max-width: 100%;
  background-image: url('../images/whychoose.png');
  background-size: 100% 100%;
  background-position: center; background-repeat: no-repeat;
  padding: 110px 48px 120px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background-color: #ffffff;
}

.why-edge { position: relative; z-index: 1; line-height: 0; }
.why-edge svg { width: 100%; display: block; }
.why-edge-top  { margin-bottom: -2px; }
.why-edge-bottom { margin-top: -2px; }

.why-bg { width: 100%; }

.why-content {
  position: relative; z-index: 1;
  max-width: 1100px; width: 100%;
  margin: 0 auto; text-align: center;
}

.why-heading {
  font-size: clamp(26px, 3.8vw, 52px);
  font-weight: 900; color: #ffffff;
  font-family: 'Passion One', sans-serif;
  margin-bottom: 52px; font-style: italic;
}

.why-grid {
  display: flex; align-items: flex-start;
  justify-content: center; gap: 0;
}

.why-card {
  flex: 1; padding: 0 40px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}

.why-icon-wrap {
  width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}

.why-card-title {
  font-size:1.5rem;
  font-weight: 900; color: #ffffff;
  font-family: 'Passion One', sans-serif; margin-bottom: 14px;
  letter-spacing: 1px;
}

.why-card-desc {
  font-size: clamp(20px, 1.1vw, 15px);
  color: rgba(255,255,255,0.88); line-height: 1.75;
  font-family: 'Sour Gummy', sans-serif; margin: 0; max-width: 280px;
}

.why-divider {
  width: 1px; background: rgba(255,255,255,0.25);
  align-self: stretch; min-height: 180px; flex-shrink: 0;
}

@media (max-width: 992px) {
  .why-section { padding: 80px 24px 90px; background-size: 100% 100%; }
  .why-card { padding: 0 24px; }
  .why-heading { font-size: 28px; margin-bottom: 36px; }
}

@media (max-width: 700px) {
  .why-section { padding: 70px 20px 80px; background-size: cover; }
  .why-grid { flex-direction: column; align-items: center; gap: 36px; }
  .why-divider { width: 60%; height: 1px; min-height: unset; align-self: center; }
  .why-card { padding: 0 16px; width: 100%; }
}

/* ===========================
   PICK YOUR FAVORITES
=========================== */
.favorites-section { background-color: #ffffff; padding: 90px 0 20px; }

.favorites-heading {
  text-align: center; font-size: clamp(24px, 3vw, 38px);
  font-weight: 800; color: #1a1a1a;
  margin-bottom: 80px; font-family: 'Passion One', sans-serif;
}

.favorites-row { margin-bottom: 44px; }

.favorites-col { display: flex; justify-content: center; margin-bottom: 28px; }

.product-card {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  width: 100%; max-width: 260px;
}

.product-image-wrapper {
  width: 200px; height: 200px;
  border-radius: 50%;
  background-color: #fef3e2;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  overflow: visible; position: relative;
}

.fav-img {
  width: 190px; height: 190px;
  object-fit: contain; position: relative; z-index: 1;
  transition: transform 0.3s ease;
}

.product-card:hover .fav-img { transform: translateY(-6px); }

.product-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a; margin: 0; line-height: 1.3;
  font-family: 'Sour Gummy', sans-serif;
}

.favorites-btn-wrapper { text-align: center; }

@media (max-width: 992px) {
    .favorites-row {
    margin-bottom: 0px;
}
    .product-name {
    font-size: 1.125rem;
}
     .favorites-section {
    padding: 60px 0 20px;
}
  .product-image-wrapper { width: 170px; height: 170px; }
  .fav-img { width: 160px; height: 160px; }
}

@media (max-width: 576px) {
    .favorites-row {
    margin-bottom: 10px;
}
  .favorites-section { padding: 40px 0 0px; }
  .favorites-heading { font-size: 28px; margin-bottom: 32px; }
  .product-image-wrapper { width: 140px; height: 140px; }
  .fav-img { width: 130px; height: 130px; }
  .product-name { font-size: 16px; }
}

@media (max-width: 360px) {
  .product-image-wrapper { width: 120px; height: 120px; }
  .fav-img { width: 110px; height: 110px; }
}

/* ===========================
   PURITY BANNER
=========================== */
.purity-section { background-color: #ffffff; padding: 40px 0 40px; }

.purity-banner {
  background-color: #f9a825;
  background-image: radial-gradient(circle at 70% 50%, #f9b23a 0%, #f9a020 100%);
  border-radius: 28px;
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 50px 60px 0 60px;
  position: relative; overflow: hidden; min-height: 380px;
}

.purity-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1' opacity='0.12'%3E%3Cellipse cx='60' cy='60' rx='40' ry='20' transform='rotate(30 60 60)'/%3E%3Cellipse cx='60' cy='60' rx='40' ry='20' transform='rotate(90 60 60)'/%3E%3Cellipse cx='60' cy='60' rx='40' ry='20' transform='rotate(150 60 60)'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 130px 130px; background-repeat: repeat;
  pointer-events: none; z-index: 0;
}

.purity-content {
  position: relative; z-index: 1;
  max-width: 480px; padding-bottom: 50px; flex: 1;
}

.purity-heading {
  font-size: clamp(24px, 3.2vw, 42px);
  font-weight: 900; color: #1e1e1e;
  line-height: 1.15; margin-bottom: 18px;
  font-family: 'Passion One', sans-serif;
}

.purity-desc {
  font-size: clamp(20px, 1.2vw, 16px);
  font-weight: 400; color: #2e2e2e;
  line-height: 1.7; margin-bottom: 28px; max-width: 400px;
  font-family: 'Sour Gummy', sans-serif;
}

.btn-contact {
  display: inline-block; padding: 13px 28px;
  font-size: 16px; font-weight: 700; color: #1a1a1a;
  background-color: #ffffff; border: 2px solid #1a1a1a;
  border-radius: 16px; text-decoration: none;
  transition: background-color 0.25s, color 0.25s;
  font-family: 'Sour Gummy', sans-serif;
}
.btn-contact:hover { background-color: #1a1a1a; color: #ffffff; }

.purity-image-wrapper {
  position: relative; z-index: 1;
  display: flex; align-items: flex-end; justify-content: center;
  flex-shrink: 0; width: 380px; min-height: 380px;
}

.purity-circle {
  position: absolute; width: 100%; height: 100%;
  border-radius: 50%; background-color: #f0960e;
  bottom: 0; right: 20px; z-index: 0;
}

.purity-girl-img {
  position: relative; z-index: 1;
  width: 100%; max-width: 100%;
  object-fit: contain; object-position: bottom;
  align-self: flex-end;
}

@media (max-width: 1100px) {
  .purity-banner { padding: 44px 40px 0 40px; }
  .purity-image-wrapper { width: 300px; min-height: 320px; }
  .purity-girl-img { width: 270px; }
  .purity-circle { width: 240px; height: 240px; right: 10px; }
}

@media (max-width: 768px) {
  .purity-banner {
    flex-direction: column; align-items: center;
    padding: 40px 28px 0; text-align: center; min-height: unset;
  }
  .purity-content { max-width: 100%; padding-bottom: 24px; }
  .purity-desc { max-width: 100%; }
  .purity-image-wrapper { width: 100%; min-height: 260px; }
  .purity-circle { width: 200px; height: 200px; right: 50%; transform: translateX(50%); }
  .purity-girl-img { width: 220px; }
}

@media (max-width: 480px) {
  .purity-heading { font-size: 28px; }
  .purity-girl-img { width: 180px; }
  .purity-circle { width: 170px; height: 170px; }
}

/* ===========================
   FRESHNESS SECTION
=========================== */
.freshness-section {
  background-color: #ffffff;
  padding-top: 70px; overflow: hidden; position: relative;
  max-width: 100%;
}

.freshness-text {
  text-align: center; max-width: 720px;
  margin: 0 auto 50px;
  padding: 0 20px;
}

.freshness-heading {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 900; color: #1a1a1a;
  margin-bottom: 20px; font-family: 'Passion One', sans-serif;
}

.freshness-desc {
  font-size: clamp(20px, 1.2vw, 16px);
  color: #3a3a3a; line-height: 1.75; margin-bottom: 30px;
  font-family: 'Sour Gummy', sans-serif;
}

.btn-gallery {
  display: inline-block; padding: 13px 34px;
  font-size: 16px; font-weight: 700; color: #1a1a1a;
  background-color: #ffffff; border: 2px solid #1a1a1a;
  border-radius: 16px; text-decoration: none;
  font-family: 'Sour Gummy', sans-serif;
  transition: background-color 0.25s, color 0.25s;
}
.btn-gallery:hover { background-color: #FBB040; color: #ffffff; border-color: #FBB040; }

.freshness-visual { position: relative; width: 100%; max-width: 100%; min-height: 320px; margin-top: -10px; overflow: hidden; }

.milk-splash-img {
  width: 100%; display: block; object-fit: cover;
  max-height: 520px; object-position: center;
}

@media (max-width: 768px) {
  
    .freshness-desc {
    font-size: 1rem;
}
    .purity-desc {
    font-size: 1rem;
}
    .why-card-desc {
    font-size: 1rem;
}
    .story-description {
    font-size: 1rem;
}
    .fc-support-label {
    font-size: 1.125rem;
}
    .fc-loc-name {
    font-size: 1.125rem;
}
    .freshness-visual {
    min-height: unset;
}
  .freshness-section { padding-top: 30px; }
  .milk-splash-img { max-height: 360px; }
}

@media (max-width: 480px) {
  .freshness-section { padding-top: 40px; }
  .freshness-text { margin-bottom: 36px; }
  .milk-splash-img { max-height: 260px; }
}

/* ===========================
   CONTACT SECTION
=========================== */
.contact-section {
  background-color: #ffffff; padding: 50px 0 60px;
}

.contact-banner {
  background-image: url(../images/reach-out-to-our-team.png);
  background-size: cover; background-position: center;
  background-repeat: no-repeat; background-color: #2d3fd4;
  border-radius: 28px;
  padding: 48px 44px 44px 48px;
  display: flex; align-items: flex-start; gap: 28px;
  min-height: 280px; position: relative; overflow: hidden;
  flex-wrap: wrap;
}

.contact-left {
  display: flex; flex-direction: column; 
}

input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
    padding: .75rem;
    margin-bottom: 1rem;
    border-radius: 1rem;
    border: 0;
    width: 100%;
    font-size: 1.25rem;
    position: relative;
}
textarea {
    width: 100%;
    height: 12.125rem;
    padding: .5rem;
    border-radius: 1rem;
    font-size:1.25rem;
}
input::placeholder{
    font-size:1.25rem;
}
textarea::placeholder{
    font-size:1.25rem;
}
.contactBtn{
    text-align:right;
}
.wpcf7-not-valid-tip {
    position: absolute;
    top: -9px;
    left: 0;
    background: #fff;
    border-radius: 1rem;
    padding: .5rem;
    color: #dc3232;
    font-size: 1em;
    font-weight: normal;
    display: block;
}
.contact-heading {
  font-size: clamp(28px, 2.5vw, 36px);
  font-weight: 900; color: #ffffff; line-height: 1.15;
  margin-bottom: 16px; font-family: 'Passion One', sans-serif;
}

.contact-subtext {
  font-size:1.25rem; color: rgba(255,255,255,0.88);
  line-height: 1.6; margin: 0; font-family: 'Sour Gummy', sans-serif;
}

.contact-fields { flex: 1; display: flex; flex-direction: column; gap: 14px; min-width: 200px; }

.contact-input {
  width: 100%; padding: 14px 20px; font-size: 16px;
  color: #444444; background-color: #ffffff;
  border: none; border-radius: 12px; outline: none;
  font-family: 'Sour Gummy', sans-serif;
  transition: box-shadow 0.2s;
}
.contact-input::placeholder { color: #aaaaaa; }
.contact-input:focus { box-shadow: 0 0 0 2px rgba(255,255,255,0.6); }

.contact-right { flex: 1; display: flex; flex-direction: column; gap: 14px; min-width: 200px; }

.contact-textarea {
  width: 100%; height: 172px; padding: 14px 20px;
  font-size: 16px; color: #444444; background-color: #ffffff;
  border: none; border-radius: 12px; outline: none; resize: none;
  font-family: 'Sour Gummy', sans-serif;
  transition: box-shadow 0.2s;
}
.contact-textarea::placeholder { color: #aaaaaa; }
.contact-textarea:focus { box-shadow: 0 0 0 2px rgba(255,255,255,0.6); }

.contact-submit-row { display: flex; justify-content: flex-end; }

.btn-submit {
  padding: 12px 36px; font-size: 16px; font-weight: 700;
  color: #ffffff; background: transparent;
  border: 1.5px solid #ffffff; border-radius: 16px;
  cursor: pointer; font-family: 'Sour Gummy', sans-serif;
  transition: background-color 0.2s;
}
.btn-submit:hover { background-color: #FBB03D; border-color: #FBB03D; }

@media (max-width: 900px) {
  .contact-banner { gap: 20px; padding: 36px 28px 32px; }
  .contact-left { flex: 0 0 100%; }
}

@media (max-width: 600px) {
  .contact-banner {
    flex-direction: column; gap: 20px;
    padding: 28px 20px 24px; border-radius: 20px;
  }
  .contact-left, .contact-fields, .contact-right { flex: 0 0 100%; min-width: 0; width: 100%; }
  .contact-textarea { height: 130px; }
  .contact-submit-row { justify-content: stretch; }
  .btn-submit { width: auto; }
}

/* ===========================
   FOOTER
=========================== */
.site-footer {
  padding-top: 58px; overflow: hidden;
  background-image: url(../images/footerimg.png);
  background-position: bottom; background-size: 100%;
  background-repeat: no-repeat;
}

.footer-top-row {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 24px;
  padding-bottom: 600px; flex-wrap: wrap;
}

.footer-col { display: flex; flex-direction: column; }
.fc-menu      { flex: 0 0 140px; }
.fc-locations { flex: 0 0 340px; }
.fc-support   { flex: 0 0 200px; }
.fc-social    { flex: 0 0 140px; }

.fc-title {
  font-size: 1.5rem; 
  font-weight: 800; color: #00b0d8;
  margin: 0 0 16px 0; font-family: 'Passion One', sans-serif; line-height: 1.2;
}

.fc-nav-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.fc-nav-list li a {
  font-size: 18px; font-weight: 500; color: #1e1e1e;
  text-decoration: none; font-family: 'Sour Gummy', sans-serif; transition: color 0.2s;
}
.fc-nav-list li a:hover { color: #00b0d8; }

.fc-loc-item { margin-bottom: 18px; }
.fc-loc-item:last-child { margin-bottom: 0; }
.fc-loc-label-row { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; }
.fc-icon-pin { width: 18px; height: 18px; flex-shrink: 0; color: #b0b0b0; }
.fc-loc-name { font-size: 1.25rem; font-weight: 600; color: #b0b0b0; font-family: 'Sour Gummy', sans-serif; }
.fc-loc-addr {
  font-size: 18px; color: #1e1e1e; line-height: 1.65;
  margin: 0; padding-left: 24px; font-family: 'Sour Gummy', sans-serif;
}

.fc-support-item { margin-bottom: 20px; }
.fc-support-item:last-child { margin-bottom: 0; }
.fc-support-label-row { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; }
.fc-support-item a{
    text-decoration:none;
}
.fc-icon-support { width: 16px; height: 16px; flex-shrink: 0; color: #b0b0b0; }
.fc-support-label { font-size: 1.25rem; font-weight: 600; color: #b0b0b0; font-family: 'Sour Gummy', sans-serif; }
.fc-support-value { font-size: 18px; font-weight: 500; color: #1e1e1e; margin: 0; padding-left: 22px; font-family: 'Sour Gummy', sans-serif; }

.fc-social-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.fc-social-link {
  display: flex; align-items: center; gap: 10px;
  font-size: 18px; font-weight: 500; color: #1e1e1e;
  text-decoration: none; font-family: 'Sour Gummy', sans-serif; transition: color 0.2s;
}
.fc-social-link:hover { color: #00b0d8; }

.fc-social-badge {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.fc-social-badge svg { width: 14px; height: 14px; fill: #ffffff; }

.fc-badge-insta { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.fc-badge-fb   { background-color: #1877f2; }
.fc-badge-yt   { background-color: #ff0000; }

.footer-copyright { text-align: center; padding: 16px 20px; }
.footer-copyright p { font-size: 16px; color: #fff; margin: 0; font-family: 'Sour Gummy', sans-serif; }

/* Footer responsive */
section.sec0-thanku {
    text-align: center;
    padding: 3rem 0rem;
}
section.rooms-inBnr {
    position: relative;
}
section.rooms-inBnr .tnkCvr {
    text-align:center;
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.tnkCvr h1{
    color:#fff;
}
.tnkCvr div{
    font-size:1.5rem;
}
.wpcf7-spinner {
    display: none;
    margin: 0;
}

.wpcf7 form.submitting .wpcf7-spinner {
    display: inline-block;
}
.wpcf7-response-output {
    display: none;
}
@media (max-width: 768px) {
    .roomsinnerbanner img {
    height: 31.25rem;
    object-fit: cover;
}
      .contact-subtext {
    font-size: 1rem;
}
    .fc-loc-name {
    font-size: 1.125rem;
}
    .fc-support-label {
    font-size: 1.125rem;
}
}
@media (max-width: 1799px) {
 .footer-top-row {
    padding-bottom: 430px;
}
}
@media (max-width: 1390px) {
input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
    width: 100%;
}
textarea {
    width: 100%;
}
}
@media (max-width: 1200px) {
  .fc-locations { flex: 0 0 280px; }
  .fc-support   { flex: 0 0 180px; }
}

@media (max-width: 992px) {
    .fc-social-link {
    font-size: 16px;
}
    .fc-support-value {
    font-size: 16px;
}
    .fc-loc-addr {
    font-size: 16px;
}
    .fc-nav-list li a {
    font-size: 16px;
}
.fc-loc-addr {
    padding-left: 0px;
}
    .tnkCvr div{
    font-size:1rem;
}
    input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
    font-size:1rem;
}
textarea {
    font-size:1rem;
}
input::placeholder{
    font-size:1rem;
}
textarea::placeholder{
    font-size:1rem;
}
    .contact-Frm p{
        margin-bottom: 0rem;
    }
   .contactBtn {
    text-align: center;
    margin-top: 0.625rem;
}
    textarea {
    width: 100%;
    height: 7.5rem;
}
    input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
    width: 100%;
}
    .contact-left {
    align-items: center;
    text-align: center;
}
  .site-footer {
    background-size: contain;
}
  .fc-social-list {
    align-items: center;
    justify-content: center;
}
  .footer-top-row {
    justify-content: center;
}
  .fc-support-label-row {
    justify-content: center;
}
  .fc-loc-label-row {
    justify-content: center;
}
  footer.site-footer {
    text-align: center;
}
  .footer-top-row { flex-wrap: wrap; gap: 28px 20px; padding-bottom: 280px; }
  .fc-menu   { flex: 0 0 calc(50% - 10px); }
  .fc-social { flex: 0 0 calc(50% - 10px); }
  .fc-locations { flex: 0 0 100%; }
  .fc-support   { flex: 0 0 100%; }
}

@media (max-width: 767px) {
  .site-footer { padding-top: 0px; background-size: cover; }
  .footer-top-row { flex-direction: column; gap: 28px; padding-bottom: 220px; }
  .fc-menu, .fc-social, .fc-locations, .fc-support { flex: 0 0 100%; width: 100%; }
}

@media (max-width: 480px) {
  .footer-top-row { padding-bottom: 160px; }
  .site-footer { background-size: contain; background-position: bottom center; }
}

/* ===========================
   REDUCED MOTION
=========================== */
@media (prefers-reduced-motion: reduce) {
  .product-img { animation: none; }
  .slide { transition: opacity 0.3s ease; }
  .marquee-track { animation: none; }
}
