/* =============================================
   KOOL KID LEMONADE - Main Stylesheet
   Themes: Original | Cherry-Mango | Tropical Storm
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&family=Quicksand:wght@400;500;600;700&family=Fredoka+One&display=swap');

/* ---- THEME VARIABLES ---- */
:root,
[data-theme="original"] {
  --primary: #FFD700;
  --primary-dark: #E6A800;
  --primary-light: #FFF3B0;
  --secondary: #FF8C00;
  --accent: #FF6B35;
  --bg-main: #FFFDE7;
  --bg-card: #FFFFFF;
  --bg-footer: #2D2D2D;
  --text-main: #333333;
  --text-light: #666666;
  --text-on-primary: #333333;
  --text-on-dark: #FFFFFF;
  --gradient-hero: linear-gradient(135deg, #FFD700 0%, #FF8C00 50%, #FF6B35 100%);
  --gradient-soft: linear-gradient(135deg, #FFF9C4 0%, #FFE082 100%);
  --gradient-card: linear-gradient(180deg, #FFFDE7 0%, #FFF8E1 100%);
  --shadow-color: rgba(255, 165, 0, 0.2);
  --nav-bg: rgba(255, 253, 231, 0.95);
  --bubble-color: rgba(255, 215, 0, 0.15);
  --theme-emoji: '🍋';
}

[data-theme="cherry-mango"] {
  --primary: #FF4757;
  --primary-dark: #E63946;
  --primary-light: #FFD3D8;
  --secondary: #FF9F43;
  --accent: #EE5A24;
  --bg-main: #FFF5F5;
  --bg-card: #FFFFFF;
  --bg-footer: #2D1F1F;
  --text-main: #2D1F1F;
  --text-light: #6B4444;
  --text-on-primary: #FFFFFF;
  --text-on-dark: #FFFFFF;
  --gradient-hero: linear-gradient(135deg, #FF4757 0%, #FF9F43 50%, #EE5A24 100%);
  --gradient-soft: linear-gradient(135deg, #FFE0E3 0%, #FFD3C4 100%);
  --gradient-card: linear-gradient(180deg, #FFF5F5 0%, #FFE8E8 100%);
  --shadow-color: rgba(255, 71, 87, 0.2);
  --nav-bg: rgba(255, 245, 245, 0.95);
  --bubble-color: rgba(255, 71, 87, 0.1);
  --theme-emoji: '🍒';
}

[data-theme="tropical"] {
  --primary: #00BFA5;
  --primary-dark: #009688;
  --primary-light: #B2DFDB;
  --secondary: #26C6DA;
  --accent: #FF8A65;
  --bg-main: #E0F7FA;
  --bg-card: #FFFFFF;
  --bg-footer: #1A2E35;
  --text-main: #1A2E35;
  --text-light: #4A6E7A;
  --text-on-primary: #FFFFFF;
  --text-on-dark: #FFFFFF;
  --gradient-hero: linear-gradient(135deg, #00BFA5 0%, #26C6DA 50%, #4DD0E1 100%);
  --gradient-soft: linear-gradient(135deg, #E0F7FA 0%, #B2EBF2 100%);
  --gradient-card: linear-gradient(180deg, #E0F7FA 0%, #B2DFDB 100%);
  --shadow-color: rgba(0, 191, 165, 0.2);
  --nav-bg: rgba(224, 247, 250, 0.95);
  --bubble-color: rgba(0, 191, 165, 0.1);
  --theme-emoji: '🥥';
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Quicksand', sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.5s ease, color 0.5s ease;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

/* ---- ANIMATED BACKGROUND BUBBLES ---- */
.bubbles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bubble {
  position: absolute;
  bottom: -100px;
  background: var(--bubble-color);
  border-radius: 50%;
  animation: float-up linear infinite;
}

@keyframes float-up {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.6;
  }
  100% {
    transform: translateY(-110vh) rotate(720deg);
    opacity: 0;
  }
}

/* ---- NAVIGATION ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 3px solid var(--primary);
  padding: 0 2rem;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 30px var(--shadow-color);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: 2px solid var(--primary);
}

.nav-logo span {
  font-family: 'Fredoka One', cursive;
  font-size: 1.3rem;
  color: var(--primary-dark);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
}

.nav-links a {
  font-family: 'Baloo 2', cursive;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  color: var(--text-main);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--primary);
  color: var(--text-on-primary);
  transform: translateY(-2px);
}

.nav-links a.order-btn {
  background: var(--accent);
  color: white;
  padding: 0.5rem 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.nav-links a.order-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Theme Switcher */
.theme-switcher {
  display: flex;
  gap: 6px;
  margin-left: 1rem;
  align-items: center;
}

.theme-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}

.theme-btn:hover {
  transform: scale(1.2);
  border-color: var(--primary);
}

.theme-btn.active {
  border-color: var(--primary-dark);
  box-shadow: 0 0 10px var(--shadow-color);
  transform: scale(1.15);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--text-main);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ---- HERO SECTION ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--gradient-hero);
  padding: 100px 2rem 3rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
  animation: hero-glow 8s ease-in-out infinite;
}

@keyframes hero-glow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(5%, 5%); }
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-logo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 2rem;
  border: 5px solid white;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  animation: bounce-in 1s ease;
}

@keyframes bounce-in {
  0% { transform: scale(0) rotate(-10deg); opacity: 0; }
  60% { transform: scale(1.1) rotate(3deg); }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.hero h1 {
  font-family: 'Fredoka One', cursive;
  font-size: 3.5rem;
  color: white;
  text-shadow: 3px 3px 0px rgba(0,0,0,0.2);
  margin-bottom: 1rem;
  animation: slide-up 0.8s ease 0.3s both;
}

.hero p {
  font-family: 'Baloo 2', cursive;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.95);
  margin-bottom: 2rem;
  animation: slide-up 0.8s ease 0.5s both;
}

@keyframes slide-up {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: slide-up 0.8s ease 0.7s both;
}

.btn {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-primary {
  background: white;
  color: var(--primary-dark);
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.btn-secondary {
  background: rgba(255,255,255,0.2);
  color: white;
  border: 2px solid white;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: white;
  color: var(--primary-dark);
  transform: translateY(-3px);
}

.btn-accent {
  background: var(--accent);
  color: white;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  filter: brightness(1.1);
}

/* ---- SLIDESHOW ---- */
.slideshow-section {
  position: relative;
  z-index: 1;
  padding: 4rem 2rem;
  background: var(--bg-main);
}

.slideshow-section h2 {
  text-align: center;
  font-family: 'Fredoka One', cursive;
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 2rem;
}

.slideshow {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px var(--shadow-color);
}

.slide-container {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  aspect-ratio: 2/1;
  object-fit: cover;
}

.slide-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.slide-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 2px solid white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slide-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.8);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.slide-arrow:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.slide-arrow.prev { left: 15px; }
.slide-arrow.next { right: 15px; }

/* ---- SECTIONS GENERAL ---- */
.section {
  position: relative;
  z-index: 1;
  padding: 5rem 2rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Fredoka One', cursive;
  font-size: 2.5rem;
  color: var(--primary-dark);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-family: 'Baloo 2', cursive;
  font-size: 1.2rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 3rem;
}

/* ---- FEATURED / HIGHLIGHTS ---- */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.highlight-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 8px 30px var(--shadow-color);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.highlight-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 15px 40px var(--shadow-color);
}

.highlight-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.highlight-card h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-bottom: 0.8rem;
}

.highlight-card p {
  color: var(--text-light);
  font-size: 1rem;
}

/* ---- MENU PAGE ---- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.menu-card {
  background: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px var(--shadow-color);
  transition: all 0.4s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.menu-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 15px 50px var(--shadow-color);
}

.menu-card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.menu-card:hover .menu-card-img {
  transform: scale(1.05);
}

.menu-card-img-wrap {
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.menu-card-body {
  padding: 1.5rem;
}

.menu-card-body h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 0.3rem;
}

.menu-card-body .description {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
}

.menu-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem;
  color: var(--accent);
}

.nutrition-badge {
  background: var(--gradient-soft);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.3s ease;
}

.nutrition-badge:hover {
  background: var(--primary);
  color: var(--text-on-primary);
}

/* Gummy add-on badge */
.gummy-badge {
  display: inline-block;
  background: linear-gradient(135deg, #FF6B6B, #FFD93D, #6BCB77, #4D96FF);
  color: white;
  padding: 0.2rem 0.7rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 0.4rem;
}

/* ---- NUTRITION MODAL ---- */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fade-in 0.3s ease;
}

.modal-overlay.active {
  display: flex;
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal {
  background: var(--bg-card);
  border-radius: 24px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: modal-pop 0.3s ease;
  position: relative;
}

@keyframes modal-pop {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--primary-light);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--primary);
  transform: rotate(90deg);
}

.modal h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.modal .modal-price {
  font-family: 'Fredoka One', cursive;
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.nutrition-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.nutrition-table th {
  text-align: left;
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  color: var(--primary-dark);
  padding: 0.8rem 0;
  border-bottom: 3px solid var(--primary);
}

.nutrition-table td {
  padding: 0.6rem 0;
  border-bottom: 1px solid #eee;
  font-weight: 500;
}

.nutrition-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--text-main);
}

.ingredients-list {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--gradient-soft);
  border-radius: 12px;
  font-size: 0.95rem;
  color: var(--text-light);
}

.ingredients-list strong {
  color: var(--text-main);
}

/* ---- ABOUT PAGE ---- */
.about-hero {
  background: var(--gradient-hero);
  padding: 120px 2rem 4rem;
  text-align: center;
  color: white;
}

.about-hero h1 {
  font-family: 'Fredoka One', cursive;
  font-size: 3rem;
  text-shadow: 3px 3px 0px rgba(0,0,0,0.2);
  margin-bottom: 1rem;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.value-card {
  text-align: center;
  padding: 2rem;
  background: var(--bg-card);
  border-radius: 20px;
  box-shadow: 0 8px 30px var(--shadow-color);
}

.value-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-family: 'Fredoka One', cursive;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 30px var(--shadow-color);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: 'Fredoka One', cursive;
  font-size: 4rem;
  color: var(--primary-light);
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.testimonial-card p {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  padding-top: 1rem;
}

.testimonial-author {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  color: var(--primary-dark);
}

.stars {
  color: #FFD700;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

/* ---- PHOTO REVIEW PAGE ---- */
.review-hero {
  background: var(--gradient-hero);
  padding: 120px 2rem 4rem;
  text-align: center;
  color: white;
}

.review-hero h1 {
  font-family: 'Fredoka One', cursive;
  font-size: 3rem;
  text-shadow: 3px 3px 0px rgba(0,0,0,0.2);
}

.review-hero p {
  font-size: 1.3rem;
  margin-top: 1rem;
  opacity: 0.95;
}

.review-form-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.upload-zone {
  border: 3px dashed var(--primary);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--gradient-soft);
  margin-bottom: 2rem;
}

.upload-zone:hover {
  border-color: var(--accent);
  background: var(--primary-light);
  transform: scale(1.01);
}

.upload-zone .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.upload-zone h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.3rem;
  color: var(--primary-dark);
}

.upload-zone p {
  color: var(--text-light);
  margin-top: 0.5rem;
}

.upload-preview {
  display: none;
  margin: 1rem auto;
  max-width: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px var(--shadow-color);
}

.upload-preview img {
  width: 100%;
}

.rating-section {
  margin-bottom: 2rem;
}

.rating-section h3 {
  font-family: 'Fredoka One', cursive;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.star-rating {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.star-rating .star {
  font-size: 2.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #ddd;
}

.star-rating .star:hover,
.star-rating .star.active {
  color: #FFD700;
  transform: scale(1.2);
}

.review-textarea {
  width: 100%;
  min-height: 120px;
  padding: 1rem;
  border: 2px solid var(--primary-light);
  border-radius: 15px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  resize: vertical;
  transition: border-color 0.3s ease;
  margin-bottom: 1.5rem;
}

.review-textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.discount-banner {
  background: var(--gradient-hero);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 2rem;
}

.discount-banner h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.8rem;
}

.discount-banner p {
  font-size: 1.1rem;
  opacity: 0.95;
}

/* ---- ORDER PAGE ---- */
.order-hero {
  background: var(--gradient-hero);
  padding: 120px 2rem 4rem;
  text-align: center;
  color: white;
}

.order-hero h1 {
  font-family: 'Fredoka One', cursive;
  font-size: 3rem;
  text-shadow: 3px 3px 0px rgba(0,0,0,0.2);
}

.order-form-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--primary-light);
  border-radius: 12px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 15px var(--shadow-color);
}

.drink-select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.drink-select-card {
  background: var(--bg-card);
  border: 2px solid var(--primary-light);
  border-radius: 15px;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.drink-select-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.drink-select-card.selected {
  border-color: var(--accent);
  background: var(--gradient-soft);
  box-shadow: 0 5px 20px var(--shadow-color);
}

.drink-select-card h4 {
  font-family: 'Fredoka One', cursive;
  color: var(--primary-dark);
  font-size: 1rem;
}

.drink-select-card .price {
  font-size: 1.1rem;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: white;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
}

.qty-btn:hover {
  background: var(--primary);
  color: var(--text-on-primary);
}

.qty-display {
  font-family: 'Fredoka One', cursive;
  font-size: 1.2rem;
  min-width: 30px;
  text-align: center;
}

/* ---- INSTAGRAM SECTION ---- */
.instagram-section {
  background: var(--gradient-soft);
  padding: 4rem 2rem;
  text-align: center;
}

.instagram-section h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.instagram-feed {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  max-width: 1000px;
  margin: 2rem auto 0;
}

.insta-placeholder {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.insta-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insta-placeholder:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px var(--shadow-color);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
  font-family: 'Baloo 2', cursive;
  font-size: 1.2rem;
}

.insta-placeholder:hover .insta-overlay {
  opacity: 1;
}

.insta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(200, 50, 100, 0.3);
}

.insta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(200, 50, 100, 0.4);
}

.insta-btn svg {
  width: 24px;
  height: 24px;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--bg-footer);
  color: var(--text-on-dark);
  padding: 3rem 2rem 1.5rem;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer h3 {
  font-family: 'Fredoka One', cursive;
  color: var(--primary);
  margin-bottom: 1rem;
}

.footer p, .footer a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

/* ---- PAGE HEADER (for inner pages) ---- */
.page-hero {
  background: var(--gradient-hero);
  padding: 120px 2rem 3rem;
  text-align: center;
  color: white;
}

.page-hero h1 {
  font-family: 'Fredoka One', cursive;
  font-size: 3rem;
  text-shadow: 3px 3px 0px rgba(0,0,0,0.2);
}

.page-hero p {
  font-size: 1.2rem;
  margin-top: 0.8rem;
  opacity: 0.95;
}

/* ---- SUCCESS MESSAGE ---- */
.success-message {
  display: none;
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  margin: 2rem 0;
  animation: modal-pop 0.4s ease;
}

.success-message h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.success-message.show {
  display: block;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--nav-bg);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 3rem;
    gap: 0.5rem;
  }

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

  .hamburger {
    display: flex;
  }

  .theme-switcher {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--primary-light);
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .hero-logo {
    width: 150px;
    height: 150px;
  }

  .section-title {
    font-size: 2rem;
  }

  .page-hero h1,
  .about-hero h1,
  .review-hero h1,
  .order-hero h1 {
    font-size: 2.2rem;
  }

  .slide-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.8rem;
  }

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

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .nav-logo span {
    font-size: 1rem;
  }

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

  .drink-select-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---- UTILITY CLASSES ---- */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* Sun decoration */
.sun-deco {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,215,0,0.3), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Wavy divider */
.wave-divider {
  position: relative;
  z-index: 1;
  margin-top: -2px;
}

.wave-divider svg {
  display: block;
  width: 100%;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}
