/* =============================================
   AVES REINALDO - Modern Design System
   ============================================= */

:root {
  /* Color Palette */
  --bg-primary: #0a0a0b;
  --bg-secondary: #111113;
  --bg-tertiary: #18181b;
  --bg-card: rgba(24, 24, 27, 0.6);
  
  --text-primary: #fafafa;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  
  --accent-primary: #94a3b8;
  --accent-secondary: #cbd5e1;
  --accent-glow: rgba(148, 163, 184, 0.25);
  
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.1);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
  --gradient-text: linear-gradient(135deg, #e2e8f0 0%, #94a3b8 50%, #cbd5e1 100%);
  --gradient-dark: linear-gradient(180deg, #0a0a0b 0%, #111113 100%);
  --gradient-radial: radial-gradient(ellipse at 50% 0%, rgba(148, 163, 184, 0.1) 0%, transparent 50%);
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 8rem;
  
  /* Typography */
  --font-display: 'Sora', sans-serif;
  --font-body: 'Outfit', sans-serif;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px var(--accent-glow);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

/* Container */
.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* =============================================
   NAVIGATION
   ============================================= */

.glass-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-sm) 0;
  transition: var(--transition-base);
  background: rgba(10, 10, 11, 0.7);
  backdrop-filter: blur(12px) saturate(150%);
  border-bottom: 1px solid var(--border-subtle);
}

.glass-nav.scrolled {
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
  transition: var(--transition-base);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 60%, transparent 100%);
  border-radius: 50%;
  padding: 6px;
}

.brand:hover .logo {
  transform: scale(1.05);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: var(--space-xs);
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-base);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav-link {
  padding: var(--space-xs) var(--space-md);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-full);
  transition: var(--transition-base);
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.nav-link.cta-nav {
  background: var(--gradient-primary);
  color: var(--bg-primary);
  font-weight: 600;
}

.nav-link.cta-nav:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, rgba(10, 10, 11, 0.3) 0%, rgba(10, 10, 11, 0.5) 40%, rgba(10, 10, 11, 0.95) 100%),
    var(--gradient-radial);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: var(--space-lg);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-md);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-lg);
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto var(--space-xl);
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-lg);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  transition: var(--transition-base);
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--bg-primary);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.btn-primary svg {
  transition: var(--transition-base);
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.scroll-indicator {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--border-light);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 2px;
  animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.3; transform: translateY(6px); }
}

/* =============================================
   SECTIONS - COMMON
   ============================================= */

.section {
  position: relative;
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
}

.section-badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =============================================
   ANIMALS SECTION
   ============================================= */

.animals-section {
  background: var(--gradient-radial), var(--bg-primary);
}

.section-bg-shape {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1000px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.animals-gallery {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.spotlight-wrapper {
  display: flex;
  justify-content: center;
}

.spotlight-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: inline-block;
  line-height: 0;
}

.spotlight-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0;
  transition: var(--transition-base);
}

.spotlight-frame:hover::before {
  opacity: 1;
}

.spotlight-frame img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(450px, 85vw);
  max-height: clamp(400px, 65vh, 550px);
  object-fit: contain;
  border-radius: var(--radius-xl);
  cursor: zoom-in;
  transition: var(--transition-slow);
}

.spotlight-frame img.is-transitioning {
  opacity: 0;
  transform: scale(0.96);
}

.spotlight-glow {
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100%;
  background: var(--accent-glow);
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.5;
}

.thumbs-carousel {
  width: 100%;
  overflow-x: auto;
  padding: var(--space-sm) var(--space-md);
  scrollbar-width: thin;
  scrollbar-color: var(--border-light) transparent;
  -webkit-overflow-scrolling: touch;
}

.thumbs-carousel::-webkit-scrollbar {
  height: 6px;
}

.thumbs-carousel::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 3px;
}

.thumbs-track {
  display: flex;
  gap: var(--space-sm);
  justify-content: flex-start;
  flex-wrap: nowrap;
  width: max-content;
  margin: 0 auto;
}

.thumb-card {
  position: relative;
  width: 100px;
  height: 80px;
  min-width: 100px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid transparent;
  background: none;
  padding: 0;
  transition: var(--transition-base);
}

.thumb-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-base);
}

.thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  transition: var(--transition-base);
}

.thumb-card:hover .thumb-overlay,
.thumb-card.is-active .thumb-overlay {
  background: transparent;
}

.thumb-card.is-active {
  border-color: var(--accent-primary);
  box-shadow: 0 0 20px var(--accent-glow);
}

.thumb-card:hover {
  transform: translateY(-4px);
}

/* =============================================
   STORE SECTION
   ============================================= */

.store-section {
  background: var(--bg-secondary);
}

.store-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-2xl);
  align-items: start;
}

.store-info {
  position: sticky;
  top: 120px;
}

.store-info .section-title {
  text-align: left;
  margin-bottom: var(--space-md);
}

.store-info .section-badge {
  display: inline-block;
}

.store-description {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.info-card {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: var(--transition-base);
}

.info-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-md);
  color: var(--accent-primary);
}

.info-content h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.info-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-xs) var(--space-md);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.hours-grid span:nth-child(odd) {
  font-weight: 500;
  color: var(--text-primary);
}

.hours-grid span:nth-child(even) {
  text-align: right;
}

.hours-grid .closed {
  color: #ef4444;
}

.store-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item.large {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition-slow);
  cursor: zoom-in;
}

.gallery-item.large img {
  height: 320px;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 11, 0.6);
  color: var(--text-primary);
  opacity: 0;
  transition: var(--transition-base);
  pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* =============================================
   CONTACT SECTION
   ============================================= */

.contact-section {
  position: relative;
  background: var(--bg-primary);
}

.contact-bg-gradient {
  position: absolute;
  inset: 0;
  background: var(--gradient-radial);
  pointer-events: none;
}

.contact-wrapper {
  position: relative;
  z-index: 1;
}

.contact-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: var(--transition-base);
}

.contact-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
}

.contact-icon.phone {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.contact-icon.email {
  background: rgba(168, 85, 247, 0.1);
  color: #a855f7;
}

.contact-icon.whatsapp-icon {
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-primary);
}

.contact-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-info .contact-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-info .contact-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
}

.contact-card.email-card .contact-info .contact-value {
  font-size: 0.85rem;
  word-break: break-all;
}

.contact-arrow {
  font-size: 1.5rem;
  color: var(--text-muted);
  transition: var(--transition-base);
}

.contact-card:hover .contact-arrow {
  color: var(--accent-primary);
  transform: translateX(4px);
}

.contact-card.whatsapp {
  border-color: rgba(16, 185, 129, 0.2);
}

.contact-card.whatsapp:hover {
  border-color: var(--accent-primary);
  box-shadow: 0 8px 30px var(--accent-glow);
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* =============================================
   LIGHTBOX
   ============================================= */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  z-index: 2;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  color: var(--text-primary);
  transition: var(--transition-base);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  color: var(--text-primary);
  transition: var(--transition-base);
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav.prev {
  left: var(--space-lg);
}

.lightbox-nav.next {
  right: var(--space-lg);
}

/* =============================================
   REVEAL ANIMATIONS
   ============================================= */

.reveal-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   FLOATING WHATSAPP BUTTON
   ============================================= */

.fab-whatsapp {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 90;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition-base);
  animation: fab-pulse 2s ease-in-out infinite;
}

.fab-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* =============================================
   MOBILE BOTTOM NAVIGATION
   ============================================= */

.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  background: rgba(10, 10, 11, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-xs) 0;
  padding-bottom: calc(var(--space-xs) + env(safe-area-inset-bottom, 0px));
}

.mobile-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: var(--space-xs) var(--space-sm);
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 500;
  transition: var(--transition-base);
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-item svg {
  transition: var(--transition-base);
}

.mobile-nav-item.active,
.mobile-nav-item:active {
  color: var(--accent-primary);
}

.mobile-nav-item.active svg,
.mobile-nav-item:active svg {
  stroke: var(--accent-primary);
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 968px) {
  .store-layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .store-info {
    position: static;
  }
  
  .store-info .section-title,
  .store-info .section-badge {
    text-align: center;
  }
  
  .store-info .section-badge {
    display: block;
  }
  
  .store-description {
    text-align: center;
  }
}

@media (max-width: 768px) {
  /* Show mobile nav, hide desktop nav toggle */
  .mobile-nav {
    display: flex;
  }
  
  .fab-whatsapp {
    bottom: 90px;
    right: 16px;
    width: 56px;
    height: 56px;
  }
  
  .fab-whatsapp svg {
    width: 26px;
    height: 26px;
  }
  
  /* Add padding to footer for mobile nav */
  .footer {
    padding-bottom: calc(var(--space-xl) + 70px);
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: var(--space-md);
    background: rgba(10, 10, 11, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-subtle);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-base);
  }
  
  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .nav-link {
    padding: var(--space-sm) var(--space-md);
    text-align: center;
    font-size: 1rem;
  }
  
  /* Hero optimizations for mobile */
  .hero {
    min-height: 100svh;
  }
  
  .hero-content {
    padding: var(--space-md);
  }
  
  .hero-title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
    line-height: 1.15;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 12px;
  }
  
  .hero-buttons {
    gap: var(--space-sm);
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 0.95rem;
  }
  
  /* Section optimizations */
  .section {
    padding: var(--space-xl) 0;
  }
  
  .section-header {
    margin-bottom: var(--space-lg);
  }
  
  .section-title {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }
  
  .section-subtitle {
    font-size: 0.9rem;
  }
  
  .section-badge {
    font-size: 0.65rem;
    padding: 6px 12px;
  }
  
  /* Animals gallery mobile */
  .spotlight-frame img {
    max-width: 85vw;
    max-height: clamp(300px, 55vh, 450px);
    border-radius: var(--radius-lg);
  }
  
  .thumbs-carousel {
    padding: var(--space-sm) 0;
    margin: 0 -4%;
    width: calc(100% + 8%);
  }
  
  .thumbs-track {
    padding: 0 var(--space-md);
    gap: 10px;
    justify-content: flex-start;
  }
  
  .thumb-card {
    width: 72px;
    height: 56px;
    min-width: 72px;
    border-radius: var(--radius-sm);
  }
  
  /* Store section mobile */
  .gallery-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }
  
  .gallery-item.large {
    grid-column: span 2;
  }
  
  .gallery-item img {
    height: 140px;
    border-radius: var(--radius-md);
  }
  
  .gallery-item.large img {
    height: 180px;
  }
  
  .info-cards {
    gap: var(--space-sm);
  }
  
  .info-card {
    padding: var(--space-md);
    border-radius: var(--radius-md);
  }
  
  .info-icon {
    width: 40px;
    height: 40px;
  }
  
  .info-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .info-content h4 {
    font-size: 0.9rem;
  }
  
  .hours-grid {
    font-size: 0.75rem;
    gap: 6px var(--space-sm);
  }
  
  /* Contact section mobile */
  .contact-header {
    margin-bottom: var(--space-lg);
  }
  
  .contact-cards {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  
  .contact-card {
    padding: var(--space-md);
    border-radius: var(--radius-md);
  }
  
  .contact-icon {
    width: 48px;
    height: 48px;
  }
  
  /* Lightbox mobile */
  .lightbox-close {
    top: var(--space-md);
    right: var(--space-md);
    width: 44px;
    height: 44px;
  }
  
  .lightbox-nav {
    width: 44px;
    height: 44px;
  }
  
  .lightbox-nav.prev {
    left: var(--space-sm);
  }
  
  .lightbox-nav.next {
    right: var(--space-sm);
  }
  
  .lightbox-content img {
    border-radius: var(--radius-md);
  }
  
  /* Hide scroll indicator on mobile */
  .scroll-indicator {
    display: none;
  }
  
  /* Footer mobile */
  .footer-content {
    gap: var(--space-sm);
  }
  
  .footer-brand {
    font-size: 1rem;
  }
  
  .footer-logo {
    width: 32px;
    height: 32px;
  }
  
  .footer-copy {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .brand-text {
    display: flex;
  }
  
  .brand-name {
    font-size: 1rem;
  }
  
  .brand-tagline {
    display: none;
  }
  
  .logo {
    width: 56px;
    height: 56px;
  }
  
  .hero-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    padding: 0;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }
  
  .section {
    padding: var(--space-lg) 0;
  }
  
  .container {
    width: 94%;
  }
  
  .thumb-card {
    width: 64px;
    height: 50px;
    min-width: 64px;
  }
  
  .gallery-grid {
    gap: 8px !important;
  }
  
  .gallery-item img {
    height: 120px;
  }
  
  .gallery-item.large img {
    height: 160px;
  }
  
  .contact-card {
    padding: var(--space-sm) var(--space-md);
  }
  
  .contact-icon {
    width: 44px;
    height: 44px;
  }
  
  .contact-icon svg {
    width: 22px;
    height: 22px;
  }
  
  .contact-info .contact-value {
    font-size: 0.85rem;
  }
  
  .contact-card.email-card .contact-info .contact-value {
    font-size: 0.75rem;
  }
  
  .contact-arrow {
    display: none;
  }
  
  .info-card {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
  }
  
  .info-icon {
    margin: 0 auto;
  }
  
  .hours-grid {
    text-align: left;
    width: 100%;
  }
  
  .info-content p {
    text-align: center;
  }
  
  .fab-whatsapp {
    width: 52px;
    height: 52px;
    bottom: 85px;
    right: 12px;
  }
  
  .fab-whatsapp svg {
    width: 24px;
    height: 24px;
  }
  
  .mobile-nav-item {
    padding: 8px 12px;
    font-size: 0.65rem;
  }
  
  .mobile-nav-item svg {
    width: 20px;
    height: 20px;
  }
}

/* Hide mobile nav on desktop */
@media (min-width: 769px) {
  .mobile-nav {
    display: none;
  }
  
  .fab-whatsapp {
    display: none;
  }
}
