/* ============================================================
   Mario Come Oaxaca - Main Stylesheet
   Oaxacan Cultural Premium Design
   ============================================================ */

/* ---- CSS VARIABLES ---- */
:root {
  /* Brand Colors - Oaxacan Palette */
  --teal: #00b4a6;
  --teal-dark: #008a80;
  --teal-light: #e0f7f5;
  --coral: #e85d26;
  --coral-light: #fff0ea;
  --gold: #e8a623;
  --gold-light: #fef9ed;
  --wine: #8b1a1a;
  --brown: #5d2e0c;
  --cream: #fdf6e3;
  --dark-green: #1a3d2b;

  /* Text */
  --text-dark: #1a1a1a;
  --text-medium: #4a4a4a;
  --text-light: #7a7a7a;
  --text-white: #ffffff;

  /* Backgrounds */
  --bg-white: #ffffff;
  --bg-cream: #fdf6e3;
  --bg-dark: #1a1a1a;
  --bg-pattern: #f9f0e0;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #1a3d2b 0%, #00b4a6 50%, #e8a623 100%);
  --gradient-warm: linear-gradient(135deg, #e85d26 0%, #e8a623 100%);
  --gradient-teal: linear-gradient(135deg, #00b4a6 0%, #1a3d2b 100%);
  --gradient-card: linear-gradient(180deg, transparent 0%, rgba(26,26,26,0.8) 100%);

  /* Spacing */
  --section-padding: 100px 0;
  --container-max: 1200px;
  --gap: 30px;
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-teal: 0 8px 30px rgba(0,180,166,0.25);
  --shadow-gold: 0 8px 30px rgba(232,166,35,0.25);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito', sans-serif;
  --font-accent: 'Fraunces', serif;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
ul { list-style: none; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-cream); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 4px; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--brown);
  margin: 12px 0 20px;
  line-height: 1.15;
}
.text-accent { color: var(--teal); font-style: italic; }
.section-badge {
  display: inline-block;
  background: var(--gold-light);
  color: var(--brown);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid var(--gold);
}
.section-subtitle {
  color: var(--text-medium);
  font-size: 1.1rem;
  max-width: 600px;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-subtitle { margin: 0 auto; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,180,166,0.4);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--teal);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid var(--teal);
  transition: var(--transition);
}
.btn-secondary:hover {
  background: var(--teal);
  color: white;
  transform: translateY(-2px);
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
}
.btn-whatsapp:hover { background: #128c7e; transform: translateY(-2px); }
.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  transition: var(--transition);
}
.btn-instagram:hover { transform: translateY(-2px); opacity: 0.9; }
.btn-full { width: 100%; justify-content: center; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}
.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo .logo-img {
  height: 50px;
  width: auto;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: white;
  transition: var(--transition);
  position: relative;
}
.navbar.scrolled .nav-links a { color: var(--text-dark); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--teal) !important;
  color: white !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--teal-dark) !important; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .nav-burger span { background: var(--text-dark); }

/* ---- SECTION CONTAINER ---- */
.section-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 30px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 30px 60px;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(232,166,35,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0,180,166,0.15) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  background: rgba(232,166,35,0.2);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  border: 1px solid rgba(232,166,35,0.4);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease both;
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s 0.1s ease both;
}
.hero-title-line { display: block; }
.hero-title-accent {
  display: block;
  color: var(--gold);
  font-style: italic;
  font-size: 1.2em;
}
.hero-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 1.2rem;
  margin-bottom: 35px;
  animation: fadeInUp 0.8s 0.2s ease both;
}
.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s 0.3s ease both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: fadeInUp 0.8s 0.4s ease both;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  font-family: var(--font-display);
}
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.hero-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

/* Hero Image */
.hero-image-wrapper {
  display: flex;
  justify-content: center;
  animation: fadeInRight 1s 0.3s ease both;
}
.hero-image-frame {
  position: relative;
  width: 420px;
  max-width: 100%;
}
.hero-image-placeholder {
  background: rgba(255,255,255,0.1);
  border: 3px solid rgba(255,255,255,0.2);
  border-radius: 30px;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  overflow: hidden;
  position: relative;
}
.hero-logo-big {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 27px;
  margin: 0;
}
.hero-image-overlay-text { display: none; }

.hero-image-overlay-text span { display: block; font-size: 0.9rem; opacity: 0.8; }
.hero-image-overlay-text strong { display: block; font-size: 2.5rem; font-family: var(--font-display); }
.hero-image-decoration {
  position: absolute;
  font-size: 2.5rem;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}
.deco-1 { top: -20px; left: -20px; animation-delay: 0s; }
.deco-2 { top: -20px; right: -20px; animation-delay: 0.7s; }
.deco-3 { bottom: -20px; left: -20px; animation-delay: 1.4s; }
.deco-4 { bottom: -20px; right: -20px; animation-delay: 2.1s; }
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  z-index: 2;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.6);
  border-bottom: 2px solid rgba(255,255,255,0.6);
  transform: rotate(45deg);
  margin: 8px auto 0;
  animation: bounce 1.5s infinite;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  padding: var(--section-padding);
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}
.about-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.about-shape-1 {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--teal-light);
  border-radius: 50%;
  opacity: 0.5;
}
.about-shape-2 {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: var(--gold-light);
  border-radius: 50%;
  opacity: 0.5;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-image-card { position: relative; }
.about-image-main {
  background: var(--gradient-teal);
  border-radius: 30px;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  padding: 0;
}
.about-badge-float {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: white;
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  z-index: 2;
}
.about-badge-float span { font-size: 1.2rem; display: block; }
.about-badge-float small { font-size: 0.75rem; color: var(--text-light); }
.about-image-accent {
  margin-top: 30px;
}
.about-pattern-card {
  background: var(--bg-pattern);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(232,166,35,0.2);
}
.pattern-emoji { font-size: 2rem; }
.about-pattern-card strong { display: block; color: var(--brown); font-weight: 700; }
.about-pattern-card p { font-size: 0.85rem; color: var(--text-medium); margin: 0; }

.about-text p { color: var(--text-medium); margin-bottom: 15px; font-size: 1.05rem; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 30px 0;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-cream);
  border-radius: var(--radius-sm);
  padding: 14px;
}
.feature-icon { font-size: 1.5rem; }
.about-feature strong { display: block; font-weight: 700; color: var(--brown); font-size: 0.9rem; }
.about-feature p { font-size: 0.8rem; color: var(--text-light); margin: 0; }
.about-cta { display: flex; gap: 15px; flex-wrap: wrap; margin-top: 10px; }

/* ============================================================
   TOURS SECTION
   ============================================================ */
.tours-section {
  padding: var(--section-padding);
  background: var(--bg-pattern);
  position: relative;
  overflow: hidden;
}
.tours-bg { position: absolute; inset: 0; }
.tours-bg-pattern {
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23e8a623' fill-opacity='0.05'%3E%3Cpath d='M20 0L0 20L20 40L40 20L20 0z'/%3E%3C/g%3E%3C/svg%3E");
}
.tours-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.filter-btn {
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  background: white;
  color: var(--text-medium);
  border: 2px solid transparent;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
  box-shadow: var(--shadow-teal);
}
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  position: relative;
  z-index: 1;
}
.tour-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-slow);
}
.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.tour-card-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.tour-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.tour-emoji { font-size: 4rem; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2)); }
.tour-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tour-badge-featured {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gold);
  color: var(--brown);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}
.tour-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,61,43,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.tour-card:hover .tour-overlay { opacity: 1; }
.btn-tour-details {
  background: white;
  color: var(--brown);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}
.btn-tour-details:hover { background: var(--gold); }
.tour-card-body { padding: 24px; }
.tour-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.tour-category {
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tour-duration { font-size: 0.85rem; color: var(--text-light); }
.tour-title {
  font-size: 1.2rem;
  color: var(--brown);
  margin-bottom: 10px;
  font-family: var(--font-display);
}
.tour-description { font-size: 0.9rem; color: var(--text-medium); margin-bottom: 15px; line-height: 1.5; }
.tour-includes-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 15px;
}
.include-tag {
  background: var(--bg-pattern);
  color: var(--dark-green);
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 600;
}
.include-more { font-size: 0.75rem; color: var(--text-light); padding: 3px 0; }
.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid var(--bg-pattern);
}
.tour-price { line-height: 1.3; }
.price-label { display: block; font-size: 0.75rem; color: var(--text-light); }
.price-amount { display: block; font-size: 1.5rem; font-weight: 900; color: var(--teal); font-family: var(--font-display); }
.price-per { font-size: 0.75rem; color: var(--text-light); }
.btn-reserve {
  background: var(--coral);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(232,93,38,0.3);
}
.btn-reserve:hover { background: #c94e1e; transform: translateY(-2px); }

/* ============================================================
   MERCADITO SECTION
   ============================================================ */
.mercadito-section {
  padding: var(--section-padding);
  background: var(--dark-green);
  color: white;
  position: relative;
  overflow: hidden;
}
.mercadito-bg { position: absolute; inset: 0; }
.mercadito-pattern {
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 10% 50%, rgba(232,166,35,0.1) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(0,180,166,0.1) 0%, transparent 50%);
}
.mercadito-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.mercadito-badge { background: rgba(232,166,35,0.15); border-color: rgba(232,166,35,0.3); color: var(--gold); }
.mercadito-section .section-title { color: white; }
.mercadito-desc { color: rgba(255,255,255,0.75); margin-bottom: 30px; font-size: 1.05rem; }
.mercadito-event-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}
.event-badge {
  display: inline-block;
  background: var(--coral);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.mercadito-event-card h4 { color: var(--gold); font-size: 1.1rem; margin-bottom: 5px; }
.event-edition { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 10px; }
.event-date, .event-location { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin: 5px 0; }
.mercadito-ctas { display: flex; gap: 15px; flex-wrap: wrap; }
.mercadito-ctas .btn-secondary { border-color: rgba(255,255,255,0.4); color: white; }
.mercadito-ctas .btn-secondary:hover { background: white; color: var(--dark-green); }

.mercadito-showcase { display: flex; flex-direction: column; gap: 20px; }
.showcase-main {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 30px;
}
.showcase-emoji-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.showcase-item {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  transition: var(--transition);
}
.showcase-item:hover { background: rgba(232,166,35,0.2); color: var(--gold); }
.showcase-instagram-preview {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid rgba(225,48,108,0.3);
}
.ig-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.ig-header strong { color: white; }
.showcase-instagram-preview p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 15px; }
.ig-follow-btn {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-block;
  transition: var(--transition);
}
.ig-follow-btn:hover { opacity: 0.9; transform: translateY(-1px); }

/* ============================================================
   SHOP SECTION
   ============================================================ */
.shop-section {
  padding: var(--section-padding);
  background: var(--bg-white);
  position: relative;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  margin-bottom: 50px;
}
.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition-slow);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.product-image {
  position: relative;
  aspect-ratio: 1;
  background: var(--bg-pattern);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  overflow: hidden;
}
.product-badge-sale {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--coral);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}
.product-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,61,43,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-hover-overlay { opacity: 1; }
.btn-add-cart {
  background: white;
  color: var(--brown);
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--transition);
}
.btn-add-cart:hover { background: var(--gold); }
.product-info { padding: 18px; }
.product-category {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.product-name {
  font-size: 1rem;
  color: var(--brown);
  margin-bottom: 6px;
  font-family: var(--font-display);
  line-height: 1.3;
}
.product-short-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 10px;
  line-height: 1.4;
}
.product-edition {
  display: block;
  font-size: 0.75rem;
  color: var(--coral);
  font-weight: 600;
  margin-bottom: 10px;
}
.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price-main, .price-sale {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--teal);
  font-family: var(--font-display);
}
.price-original {
  font-size: 0.9rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-right: 5px;
}
.btn-cart-small {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.btn-cart-small:hover { background: var(--teal-dark); transform: scale(1.1); }
.shop-more { text-align: center; }

/* Cart Widget */
.cart-widget { position: fixed; bottom: 100px; right: 30px; z-index: 100; }
.cart-btn {
  background: var(--brown);
  color: white;
  padding: 14px 20px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-btn:hover { background: var(--teal); transform: translateY(-2px); }
.cart-count {
  background: var(--coral);
  color: white;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding: var(--section-padding);
  background: var(--bg-pattern);
  position: relative;
  overflow: hidden;
}
.testimonials-slider {
  position: relative;
  overflow: hidden;
  padding: 10px 0 30px;
  max-width: 720px;
  margin: 0 auto;
}
.testimonials-track {
  display: flex;
  gap: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  align-items: stretch;
}
.testimonial-card {
  min-width: 720px;
  max-width: 720px;
  background: white;
  border-radius: 16px;
  padding: 40px 48px;
  box-shadow: 0 2px 16px rgba(0,180,166,0.10);
  border: 1.5px solid rgba(0,180,166,0.35);
  flex-shrink: 0;
  position: relative;
  box-sizing: border-box;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 6rem;
  color: var(--teal-light);
  font-family: var(--font-display);
  line-height: 1;
}
.testimonial-stars { font-size: 1.2rem; margin-bottom: 15px; }
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--bg-pattern);
  padding-top: 15px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-teal);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.testimonial-author-info strong { display: block; font-weight: 700; color: var(--brown); }
.testimonial-author-info span { display: block; font-size: 0.8rem; color: var(--text-light); }
.testimonial-tour { color: var(--teal) !important; font-size: 0.78rem !important; font-weight: 600 !important; }
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.slider-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,180,166,0.4);
  background: transparent;
  color: #00b4a6;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  opacity: 0.7;
}
.slider-btn:hover {
  background: rgba(0,180,166,0.08);
  opacity: 1;
  border-color: #00b4a6;
}
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0,180,166,0.25);
  border: none;
  cursor: pointer;
  transition: all .3s;
  padding: 0;
}
.slider-dot.active {
  background: #00b4a6;
  width: 20px;
  border-radius: 4px;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  padding: var(--section-padding);
  background: var(--bg-white);
}
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
  color: var(--brown);
  transition: var(--transition);
  gap: 15px;
}
.faq-question:hover { color: var(--teal); }
.faq-question.open { color: var(--teal); background: var(--teal-light); }
.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  transition: var(--transition);
  line-height: 1;
}
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open {
  max-height: 500px;
  padding: 0 24px 20px;
}
.faq-answer p { color: var(--text-medium); font-size: 0.95rem; line-height: 1.7; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  padding: var(--section-padding);
  background: var(--bg-cream);
  position: relative;
  overflow: hidden;
}
.contact-bg { position: absolute; inset: 0; }
.contact-pattern {
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 80% 20%, rgba(0,180,166,0.08) 0%, transparent 50%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact-text .section-title { margin-bottom: 15px; }
.contact-text > p { color: var(--text-medium); margin-bottom: 30px; font-size: 1.05rem; }
.contact-channels { display: flex; flex-direction: column; gap: 15px; }
.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid transparent;
}
.contact-channel:hover { transform: translateX(8px); border-color: var(--teal); }
.contact-channel.whatsapp:hover { border-color: #25d366; }
.contact-channel.instagram:hover { border-color: #e1306c; }
.channel-icon { font-size: 1.8rem; flex-shrink: 0; }
.contact-channel strong { display: block; font-weight: 700; color: var(--brown); }
.contact-channel span { font-size: 0.85rem; color: var(--text-light); }
.contact-form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form-card h3 {
  font-family: var(--font-display);
  color: var(--brown);
  margin-bottom: 25px;
  font-size: 1.5rem;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--bg-cream);
  color: var(--text-dark);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: white;
}
.form-group textarea { resize: vertical; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--brown); color: rgba(255,255,255,0.8); }
.footer-top { padding: 70px 0 40px; }
.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}
.footer-logo {
  height: 60px;
  width: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(255,255,255,0.7);
}
.footer-social a:hover { background: var(--teal); color: white; }
.footer-links h4 { color: var(--gold); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { font-size: 0.9rem; color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-links ul li a:hover { color: var(--gold); padding-left: 5px; }
.footer-contact h4 { color: var(--gold); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.footer-contact p { font-size: 0.9rem; margin-bottom: 10px; color: rgba(255,255,255,0.7); }
.footer-contact a { color: var(--teal); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 25px 30px;
  text-align: center;
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 10px;
}

/* ============================================================
   MODALS
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: white;
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.3s ease;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.modal-overlay.active .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
  color: var(--text-dark);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
}
.modal-close:hover { background: var(--coral); color: white; }
.modal-header {
  background: var(--gradient-teal);
  color: white;
  padding: 35px;
  text-align: center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.modal-logo { font-size: 3rem; margin-bottom: 10px; }
.modal-header h3 { font-size: 1.6rem; margin-bottom: 5px; }
.modal-header p { opacity: 0.85; }
.modal-body { padding: 30px; }
.modal-cart { max-width: 500px; padding: 30px; }
.modal-cart h3 { font-size: 1.4rem; color: var(--brown); margin-bottom: 20px; }
.modal-checkout { max-width: 650px; padding: 35px; }
.modal-checkout h3 { font-size: 1.4rem; color: var(--brown); margin-bottom: 25px; }

/* Reservation Layout */
.reservation-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
/* Calendar */
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-weight: 700;
  color: var(--brown);
}
.cal-nav {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.cal-nav:hover { background: var(--teal); color: white; }
.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
}
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}
.cal-day:hover:not(.cal-disabled):not(.cal-past) { background: var(--teal-light); color: var(--teal); }
.cal-day.cal-today { background: var(--gold-light); color: var(--gold); }
.cal-day.cal-selected { background: var(--teal) !important; color: white !important; }
.cal-day.cal-disabled, .cal-day.cal-past {
  opacity: 0.3;
  cursor: not-allowed;
}
.time-slots { margin-top: 20px; }
.time-slots h4 { font-size: 0.9rem; color: var(--brown); margin-bottom: 10px; }
.time-slots-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.time-slot {
  padding: 8px 14px;
  border-radius: 50px;
  border: 2px solid var(--teal);
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.time-slot:hover, .time-slot.selected { background: var(--teal); color: white; }
.time-slot.unavailable { border-color: #ccc; color: #ccc; cursor: not-allowed; }

/* Price Summary */
.price-summary {
  background: var(--bg-pattern);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 15px;
}
.price-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-bottom: 6px;
}
.price-summary-total {
  display: flex;
  justify-content: space-between;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--brown);
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 10px;
  margin-top: 8px;
}
.payment-secure {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 10px;
}

/* Number input */
.number-input {
  display: flex;
  align-items: center;
  gap: 0;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: white;
}
.number-input button {
  width: 36px;
  height: 40px;
  background: var(--bg-pattern);
  color: var(--brown);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.number-input button:hover { background: var(--teal); color: white; }
.number-input input {
  flex: 1;
  border: none;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  background: white;
  padding: 0;
  min-width: 0;
}
.selected-date-display {
  background: var(--teal-light);
  border-radius: var(--radius-sm);
  padding: 12px;
  font-size: 0.9rem;
  color: var(--teal-dark);
  margin-bottom: 15px;
  font-weight: 600;
  text-align: center;
}

/* Cart Items */
.cart-items { max-height: 350px; overflow-y: auto; margin-bottom: 15px; }
.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--bg-pattern);
}
.cart-item-emoji { font-size: 2rem; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-info strong { display: block; font-weight: 700; color: var(--brown); font-size: 0.95rem; }
.cart-item-info span { font-size: 0.85rem; color: var(--text-light); }
.cart-item-controls { display: flex; align-items: center; gap: 8px; }
.cart-item-qty { font-weight: 700; min-width: 20px; text-align: center; }
.btn-qty { width: 28px; height: 28px; border-radius: 50%; background: var(--bg-pattern); font-size: 1rem; display: flex; align-items: center; justify-content: center; }
.btn-qty:hover { background: var(--teal); color: white; }
.cart-item-price { font-weight: 900; color: var(--teal); font-size: 1rem; min-width: 70px; text-align: right; }
.btn-remove-item { color: var(--coral); font-size: 0.8rem; background: none; cursor: pointer; }
.cart-empty { text-align: center; padding: 40px 20px; }
.cart-empty span { font-size: 3rem; display: block; margin-bottom: 15px; }
.cart-empty p { color: var(--text-light); margin-bottom: 20px; }
.cart-footer { border-top: 2px solid var(--bg-pattern); padding-top: 20px; }
.cart-total { display: flex; justify-content: space-between; font-weight: 900; font-size: 1.2rem; margin-bottom: 15px; color: var(--brown); }
.order-summary { background: var(--bg-pattern); border-radius: var(--radius-sm); padding: 16px; margin-bottom: 20px; }
.order-summary h4 { font-size: 0.95rem; color: var(--brown); margin-bottom: 10px; }
.checkout-total { display: flex; justify-content: space-between; font-weight: 900; color: var(--teal); font-size: 1.1rem; border-top: 1px solid rgba(0,0,0,0.1); padding-top: 10px; margin-top: 8px; }

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse-green 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37,211,102,0.5);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--brown);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  z-index: 9999;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(5px); }
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 8px 25px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 40px rgba(37,211,102,0.7); }
}

/* AOS-like scroll animations */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-left"] { transform: translateX(40px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  :root { --section-padding: 70px 0; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; right: -100%; width: 80%; height: 100vh; background: white; padding: 100px 30px 30px; box-shadow: var(--shadow-lg); transition: right 0.4s ease; z-index: 999; gap: 5px; }
  .nav-links.open { right: 0; display: flex; }
  .nav-links a { color: var(--text-dark) !important; padding: 12px 0; border-bottom: 1px solid var(--bg-pattern); font-size: 1.1rem; }
  .nav-burger { display: flex; z-index: 1001; position: relative; }
  .hero-container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-image-wrapper { order: -1; }
  .hero-frame { width: 280px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; flex-wrap: wrap; gap: 15px; }
  .about-grid, .mercadito-grid, .contact-grid, .reservation-layout { grid-template-columns: 1fr; gap: 40px; }
  .tours-grid, .products-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-width: calc(100vw - 40px); max-width: calc(100vw - 40px); padding: 28px 24px; }
  .about-features { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .modal { border-radius: var(--radius); max-height: 95vh; }
  .modal-body { padding: 20px; }
}

@media (max-width: 480px) {
  .section-container { padding: 0 20px; }
  .hero { padding: 90px 20px 50px; }
  .hero-title { font-size: 2.2rem; }
  .filter-btn { font-size: 0.8rem; padding: 8px 14px; }
  .cart-widget { bottom: 80px; right: 15px; }
  .whatsapp-float { bottom: 15px; right: 15px; }
}
