/* ============================================
   VV2 STONE COLD ICE CREAMS - Main Stylesheet
   Built for VV2 x Baskin Robbins x Mercely's
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ── CSS VARIABLES (Color Palette) ── */
:root {
  --pink:        #E8177A;   /* Baskin Robbins hot pink */
  --pink-light:  #FF6EB4;
  --pink-pale:   #FFF0F7;
  --brown:       #5C2E0E;   /* BR chocolate brown */
  --brown-mid:   #8B4513;
  --purple:      #6B1FA0;   /* Mercely's purple */
  --purple-light:#A855D8;
  --orange:      #FF7B00;   /* accent warm */
  --yellow:      #F5C842;
  --cream:       #FBF7F2;
  --white:       #FFFFFF;
  --dark:        #1C1209;
  --gray-text:   #5C5348;
  --gray-muted:  #8A8178;

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-script:  'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  --shadow-card:  0 10px 40px rgba(28, 18, 9, 0.06);
  --shadow-hover: 0 20px 50px rgba(232, 23, 122, 0.14);
  --radius-card:  16px;
  --radius-pill:  50px;
  --transition:   0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.65;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  cursor: default;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--pink-pale); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--pink), var(--orange));
  background-size: 100% 200%;
  border-radius: 4px;
  animation: thumbShift 4s ease infinite;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--orange), var(--pink));
}

@keyframes thumbShift {
  0%, 100% { background-position: 0% 0%; }
  50%      { background-position: 0% 100%; }
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid rgba(232,23,122,0.12);
  transition: var(--transition);
}

.navbar.scrolled {
  height: 60px;
  box-shadow: 0 4px 24px rgba(232,23,122,0.12);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.nav-logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--gray-muted);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  letter-spacing: 0.04em;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%; height: 2px;
  background: var(--pink);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links a:hover { color: var(--pink); }
.nav-links a:hover::after { transform: translateX(-50%) scaleX(1); }
.nav-links a.active { color: var(--pink); background: var(--pink-pale); }

.nav-cta {
  background: var(--pink) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 800 !important;
  transition: var(--transition) !important;
  box-shadow: 0 4px 16px rgba(232,23,122,0.35);
}

.nav-cta:hover {
  background: var(--brown) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,23,122,0.4) !important;
}

.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: var(--transition);
}

.hamburger span {
  display: block;
  width: 26px; height: 2.5px;
  background: var(--pink);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  padding: 24px 5% 32px;
  flex-direction: column;
  gap: 6px;
  border-bottom: 2px solid var(--pink-pale);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  z-index: 999;
  transform: translateY(-110%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.mobile-nav.open {
  transform: translateY(0);
}

.mobile-nav a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
  padding: 14px 20px;
  border-radius: 12px;
  transition: var(--transition);
}

.mobile-nav a:hover, .mobile-nav a.active {
  background: var(--pink-pale);
  color: var(--pink);
  padding-left: 28px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(1.2);
}

.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    140deg,
    rgba(0,0,0,0.42) 0%,
    rgba(0,0,0,0.28) 35%,
    rgba(0,0,0,0.62) 80%
  );
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(255,255,255,0.08), transparent 25%),
              linear-gradient(180deg, rgba(0,0,0,0.22), rgba(0,0,0,0.68));
  z-index: 1;
}

/* Fallback gradient if no video */
.hero-bg-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #E8177A 0%, #6B1FA0 50%, #1A0A00 100%);
  z-index: 0;
}

.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: heroSlideFade 20s ease-in-out infinite;
}

.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 2s; }
.hero-slide:nth-child(3) { animation-delay: 4s; }
.hero-slide:nth-child(4) { animation-delay: 6s; }
.hero-slide:nth-child(5) { animation-delay: 8s; }
.hero-slide:nth-child(6) { animation-delay: 10s; }
.hero-slide:nth-child(7) { animation-delay: 12s; }
.hero-slide:nth-child(8) { animation-delay: 14s; }
.hero-slide:nth-child(9) { animation-delay: 16s; }
.hero-slide:nth-child(10) { animation-delay: 18s; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(1.15);
}

@keyframes heroSlideFade {
  0%, 9%, 100% { opacity: 0; }
  10%, 18% { opacity: 1; }
}

.hero-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110px;
  height: 110px;
  border-radius: 28px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%) scale(1.05);
  opacity: 0;
  z-index: 2;
  animation-duration: 1.8s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-logo img {
  width: 82%;
  height: auto;
  display: block;
}

.hero-logo-left {
  animation-name: logoFlyLeft;
  animation-delay: 2s;
}

.hero-logo-right {
  animation-name: logoFlyRight;
  animation-delay: 2.1s;
}

@keyframes logoFlyLeft {
  0% {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0;
  }
  22% {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
  }
  55% {
    left: 47%;
    top: 38%;
    transform: translate(-50%, -50%) scale(1.05);
  }
  80% {
    left: 6rem;
    top: 4.2rem;
    transform: translate(0, 0) scale(1.02);
  }
  100% {
    left: 4rem;
    top: 4rem;
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}

.hero-slider {
  pointer-events: none;
}

.hero-logo,
.hero-content {
  pointer-events: auto;
}

@media (max-width: 700px) {
  .hero {
    align-items: flex-start;
    padding-top: 6.5rem;
  }

  .hero-content {
    z-index: 4;
  }

  .hero-logo {
    width: 76px;
    height: 76px;
    border-radius: 20px;
    animation-duration: 1.4s;
  }
  .hero-logo-left {
    animation-name: logoFlyLeftMobile;
    left: 1.25rem;
    top: 5.5rem;
  }
  .hero-logo-right {
    animation-name: logoFlyRightMobile;
    left: auto;
    right: 1.25rem;
    top: 5.5rem;
  }
  .hero-logo img {
    width: 78%;
  }

  .hero-content {
    margin-top: 6rem;
    padding: 0 16px;
  }
}

@keyframes logoFlyRight {
  0% {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0;
  }
  22% {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
  }
  55% {
    left: 53%;
    top: 38%;
    transform: translate(-50%, -50%) scale(1.05);
  }
  80% {
    left: calc(100% - 6rem);
    top: 4.2rem;
    transform: translate(-100%, 0) scale(1.02);
  }
  100% {
    left: calc(100% - 4rem);
    top: 4rem;
    transform: translate(-100%, 0) scale(1);
    opacity: 1;
  }
}

@keyframes logoFlyLeftMobile {
  0% {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0;
  }
  25% {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
  100% {
    left: 1.25rem;
    top: 5.5rem;
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}

@keyframes logoFlyRightMobile {
  0% {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0;
  }
  25% {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
  100% {
    left: auto;
    right: 1.25rem;
    top: 5.5rem;
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}
  0% {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0;
  }
  100% {
    left: calc(100% - 4rem);
    top: 4rem;
    transform: translate(-100%, 0) scale(0.55);
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
  animation: heroFadeUp 1.2s ease both;
  animation-delay: 2s;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.95);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  animation: heroFadeUp 1.2s 0.2s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.02;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  text-shadow: 0 14px 40px rgba(0,0,0,0.35);
  animation: heroFadeUp 1.2s 2.15s ease both;
}

.hero-title .highlight {
  color: var(--yellow);
  display: block;
  font-style: italic;
  font-weight: 500;
  text-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.96);
  text-shadow: 0 10px 26px rgba(0,0,0,0.24);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 36px;
  animation: heroFadeUp 1.2s 2.25s ease both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
  z-index: 10;
  pointer-events: auto;
  animation: heroFadeUp 1.2s 2.35s ease both;
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(232,23,122,0.5);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--white);
  color: var(--pink);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(232,23,122,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-3px);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

@keyframes scrollIcon {
  0%, 100% { transform: translateY(0); opacity: 0.9; }
  50%       { transform: translateY(4px); opacity: 0.65; }
}

/* ========================================
   SECTION COMMONS
   ======================================== */
.section {
  padding: 100px 5%;
}

.section-alt {
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--pink);
  background: transparent;
  border: 1px solid rgba(232, 23, 122, 0.25);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.08;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.section-title span {
  color: var(--pink);
  font-style: italic;
  font-weight: 500;
}

.section-desc {
  font-size: 1.02rem;
  color: var(--gray-text);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 400;
}

/* ========================================
   FEATURES / WHY US (Home)
   ======================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.partner-logo-box {
  text-align: center;
}

.partner-logo-box .logo-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  box-shadow: var(--shadow-card);
}

.partner-logo-box .logo-icon img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.partner-logo-box p {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--dark);
}

.partner-logo-box span {
  font-size: 0.75rem;
  color: var(--gray-text);
}

.feature-card {
  background: transparent;
  border-radius: var(--radius-card);
  padding: 0;
  text-align: left;
  border: none;
  box-shadow: 0 18px 48px rgba(28, 18, 9, 0.12);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.feature-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  margin: 0;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
  background: #111;
}

.feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}

.feature-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.74));
  pointer-events: none;
}

.feature-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 20px 18px;
  display: grid;
  gap: 10px;
  color: var(--white);
  z-index: 1;
}

.feature-caption h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.2;
  margin: 0;
  color: var(--white);
}

.feature-caption p {
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
  color: rgba(255,255,255,0.86);
}

.feature-ascii {
  font-family: var(--font-mono, 'Courier New', Courier, monospace);
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
  padding: 0;
  white-space: pre-wrap;
}

.feature-photo svg {
  width: 44px;
  height: 44px;
}

.feature-icon {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--gray-text);
  line-height: 1.7;
}

/* ========================================
   GALLERY CAROUSEL (Home)
   ======================================== */
.gallery-wrap {
  overflow: hidden;
  position: relative;
  border-radius: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-track {
  display: flex;
  gap: 18px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.gallery-slide {
  min-width: calc(33.333% - 14px);
  max-width: 320px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  flex-shrink: 0;
}

.gallery-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-slide:hover img { transform: scale(1.07); }

.gallery-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(232,23,122,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-slide:hover .gallery-slide-overlay { opacity: 1; }

.gallery-slide-overlay span {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.gallery-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.gallery-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--pink);
  background: transparent;
  color: var(--pink);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-btn:hover {
  background: var(--pink);
  color: var(--white);
  transform: scale(1.1);
}

.gallery-btn .icon svg {
  fill: currentColor;
  stroke: currentColor;
}

.title-accent {
  fill: var(--pink);
  vertical-align: middle;
  margin-left: 6px;
  transform: translateY(-2px);
}

.gallery-dots {
  display: flex;
  gap: 8px;
}

.gallery-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink-pale);
  border: 2px solid var(--pink);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-dot.active {
  background: var(--pink);
  width: 24px;
  border-radius: 4px;
}

/* ========================================
   PRODUCTS PAGE
   ======================================== */
.products-hero {
  padding-top: 120px;
  padding-bottom: 60px;
  background: linear-gradient(135deg, var(--pink-pale) 0%, #f0d8ff 100%);
  text-align: center;
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.tab-btn {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--pink);
  background: transparent;
  color: var(--pink);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tab-btn:hover, .tab-btn.active {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(232,23,122,0.35);
  transform: translateY(-2px);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Sub-tabs (for Scoops: Fruit / Signature) */
.sub-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.sub-tab-btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--purple);
  background: transparent;
  color: var(--purple);
  cursor: pointer;
  transition: var(--transition);
}

.sub-tab-btn:hover, .sub-tab-btn.active {
  background: var(--purple);
  color: var(--white);
  transform: translateY(-2px);
}

.sub-panel { display: none; }
.sub-panel.active { display: block; }

/* Product Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  border: 2px solid transparent;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--pink-pale);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--pink-pale);
}

.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.08);
}

.floating-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.floating-card {
  animation: floatAround 10s ease-in-out infinite;
}
.floating-card:nth-child(2) { animation-duration: 11s; animation-direction: reverse; }
.floating-card:nth-child(3) { animation-duration: 9s; animation-delay: 0.8s; }
.floating-card:nth-child(4) { animation-duration: 12s; animation-delay: 0.4s; }
.floating-card:nth-child(5) { animation-duration: 10.5s; animation-delay: 0.3s; }

@keyframes floatAround {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(5px, -8px) rotate(1deg); }
  50% { transform: translate(-6px, 6px) rotate(-1deg); }
  75% { transform: translate(3px, 9px) rotate(0.5deg); }
}

.milkshake-only {
  padding: 28px 0;
  border-radius: var(--radius-card);
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow-card);
}

.milkshake-copy {
  max-width: 880px;
  margin: 0 auto 24px;
  text-align: center;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.75;
}

.milkshake-copy {
  max-width: 880px;
  margin: 0 auto 24px;
  text-align: center;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.75;
}

.milkshake-headline p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  color: var(--dark);
  font-weight: 500;
  text-transform: capitalize;
  animation: pulseCopy 6s ease-in-out infinite;
}

.milkshake-tagline {
  font-family: var(--font-script);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-style: italic;
  color: var(--gray-dark);
  letter-spacing: 0.04em;
  animation: swayText 8s ease-in-out infinite;
}

@keyframes pulseCopy {
  0%, 100% { transform: scale(1); opacity: 0.88; }
  50% { transform: scale(1.02); opacity: 1; }
}

@keyframes swayText {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  50% { transform: translateX(6px); }
  75% { transform: translateX(-4px); }
}

/* Placeholder while image loads */
.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f8eef4 0%, #efe8f8 100%);
}

.product-img-placeholder .icon {
  opacity: 0.35;
}

.product-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--pink);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-badge.veg {
  background: #2d8a2d;
}

.product-info {
  padding: 20px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.65;
  margin-bottom: 14px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--pink);
  letter-spacing: 0.02em;
}

.product-price small {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--gray-text);
  display: block;
  font-weight: 600;
}

.product-order-btn {
  background: var(--pink-pale);
  color: var(--pink);
  border: none;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
}

.product-order-btn:hover {
  background: var(--pink);
  color: var(--white);
  transform: scale(1.05);
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-hero {
  padding-top: 120px;
  padding-bottom: 60px;
  background: linear-gradient(135deg, var(--pink-pale) 0%, #f0d8ff 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-hover);
}

.about-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-img-placeholder {
  width: 100%; height: 100%;
  min-height: 400px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}

.about-img-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.about-img-badge .num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--pink);
  line-height: 1;
}

.about-img-badge .label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content .section-tag { text-align: left; }
.about-content .section-title { text-align: left; }

.about-content p {
  font-size: 1rem;
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.stat-box {
  background: var(--pink-pale);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  border: 2px solid rgba(232,23,122,0.15);
}

.stat-box .num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--pink);
}

.stat-box .label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Partners strip */
.partners-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 40px 5%;
  background: var(--dark);
}

.partners-strip img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: var(--transition);
}

.partners-strip img:hover {
  opacity: 1;
  transform: scale(1.08);
}

/* ========================================
   REVIEWS PAGE
   ======================================== */
.reviews-hero {
  padding-top: 120px;
  padding-bottom: 60px;
  background: linear-gradient(135deg, var(--pink-pale) 0%, #f0d8ff 100%);
  text-align: center;
}

.stars-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.star-big {
  text-align: center;
}

.star-big .num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--pink);
  line-height: 1;
}

.star-big .stars {
  color: var(--orange);
  font-size: 1.4rem;
  letter-spacing: 4px;
}

.star-big .count {
  font-size: 0.85rem;
  color: var(--gray-text);
  font-weight: 600;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  border: 2px solid transparent;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--font-script);
  font-size: 5rem;
  color: var(--pink-pale);
  line-height: 1;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--pink-pale);
}

.review-stars {
  color: var(--orange);
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.98rem;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 20px;
  font-weight: 400;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.review-author-info .name {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--dark);
}

.review-author-info .event {
  font-size: 0.78rem;
  color: var(--pink);
  font-weight: 600;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-hero {
  padding-top: 120px;
  padding-bottom: 60px;
  background: linear-gradient(135deg, var(--pink-pale) 0%, #f0d8ff 100%);
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--pink-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--pink);
}

.contact-item-text .label {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.contact-item-text p, .contact-item-text a {
  font-size: 0.95rem;
  color: var(--gray-text);
  font-weight: 600;
  transition: var(--transition);
}

.contact-item-text a:hover { color: var(--pink); }

/* Map */
.map-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-top: 28px;
}

.map-wrap iframe {
  width: 100%;
  height: 280px;
  border: none;
  display: block;
}

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--pink-pale);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(232,23,122,0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
  box-shadow: 0 6px 20px rgba(232,23,122,0.4);
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(232,23,122,0.5);
}

.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  background: #e8f8e8;
  border-radius: 14px;
  margin-top: 16px;
}

.form-success.show { display: block; }

.form-success .success-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  display: block;
}
.form-success p { font-weight: 600; color: #2d7a2d; margin-top: 8px; line-height: 1.6; }

/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.whatsapp-btn {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: var(--transition);
  animation: waPulse 2.5s infinite;
  cursor: pointer;
  border: none;
}

.whatsapp-btn svg {
  width: 32px; height: 32px;
  fill: var(--white);
}

.whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 36px rgba(37,211,102,0.6);
  animation: none;
}

.whatsapp-tooltip {
  background: var(--dark);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 6px 36px rgba(37,211,102,0.8), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* ========================================
   FOOTER
   ======================================== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 5% 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .nav-logo-text {
  font-size: 1.6rem;
  margin-bottom: 12px;
  display: block;
}

.footer-brand .nav-logo-text span { color: rgba(255,255,255,0.5); }

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  color: var(--white);
  text-decoration: none;
}

.social-btn:hover {
  background: var(--pink);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--pink);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a { color: var(--pink); }

/* ========================================
   PAGE TRANSITIONS & ANIMATIONS
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ========================================
   RESPONSIVE (Mobile First)
   ======================================== */

/* Tablet */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .gallery-slide { min-width: calc(50% - 10px); }
}

/* Mobile */
@media (max-width: 600px) {
  .section { padding: 70px 5%; }

  .hero-title { font-size: 2.4rem; }

  .gallery-slide { min-width: calc(100% - 0px); }

  .products-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }

  .footer-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .about-stats { grid-template-columns: 1fr 1fr; }

  /* Ensure gallery images are always visible on mobile */
  .moments-grid .moment-card.fade-in {
    opacity: 1;
    transform: none;
  }

  .whatsapp-float { bottom: 20px; right: 20px; }
  .whatsapp-btn { width: 54px; height: 54px; }

  .stars-summary { flex-direction: column; gap: 24px; }

  .nav-logo-text { font-size: 1.1rem; }
}

/* Very small */
@media (max-width: 380px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .category-tabs { flex-direction: column; align-items: center; }
}
