/* ==========================================================================
   WAI WAI INDIA - RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* --- Tablet / Mid Screens (< 1024px) --- */
@media screen and (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-description {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .feature-row {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }

  .founders-grid {
    grid-template-columns: 1fr;
  }

  .stats-banner {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .recipe-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

/* --- Mobile Landscape & Large Mobile (< 768px) --- */
@media screen and (max-width: 768px) {
  .nav-menu, .header-cta {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .section {
    padding: 4rem 0;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .stats-banner {
    grid-template-columns: 1fr 1fr;
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .recipe-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .address-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .modal-meta-row {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* 3D Carousel Mobile Adjustments */
  .carousel-3d-stage {
    height: 400px;
    perspective: 800px;
  }
  .carousel-3d-ring {
    width: 170px;
    height: 260px;
  }
  .carousel-3d-card {
    width: 165px;
    height: 255px;
    padding: 0.85rem 0.6rem;
  }
  .carousel-card-img-wrapper {
    height: 130px;
  }
  .carousel-card-title {
    font-size: 0.9rem;
  }
  .carousel-3d-card.card-1 { transform: rotateY(0deg) translateZ(170px); }
  .carousel-3d-card.card-2 { transform: rotateY(60deg) translateZ(170px); }
  .carousel-3d-card.card-3 { transform: rotateY(120deg) translateZ(170px); }
  .carousel-3d-card.card-4 { transform: rotateY(180deg) translateZ(170px); }
  .carousel-3d-card.card-5 { transform: rotateY(240deg) translateZ(170px); }
  .carousel-3d-card.card-6 { transform: rotateY(300deg) translateZ(170px); }
}

/* --- Small Mobile (< 480px) --- */
@media screen and (max-width: 480px) {
  .heading-xl {
    font-size: 2.25rem;
  }

  .heading-lg {
    font-size: 1.75rem;
  }

  .btn {
    width: 100%;
  }

  .floating-ingredient {
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
  }

  .ingredient-1 { top: 5%; left: -2%; }
  .ingredient-2 { bottom: 5%; right: -2%; }
  .ingredient-3 { display: none; }

  .stats-banner {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}
