/**
 * Zoo Zürich - Premium Ticket Booking
 * Swiss Zoo Theme with 40% Discount
 */

/* ============================
   CSS Variables
   ============================ */
:root {
  /* Zoo Zürich brand colors */
  --zoo-primary: #e30613;        /* Zoo red */
  --zoo-primary-dark: #b8050f;
  --zoo-primary-light: #ff1a27;
  --zoo-secondary: #00a651;      /* Nature green */
  --zoo-secondary-dark: #008c44;
  --zoo-accent: #f7b800;         /* Warm yellow */
  --zoo-dark: #1a1a1a;
  --zoo-darker: #0d0d0d;
  --zoo-text: #333333;
  --zoo-text-muted: #666666;
  --zoo-text-light: #999999;
  --zoo-light: #f5f5f5;
  --zoo-lighter: #fafafa;
  --zoo-white: #ffffff;
  
  /* Typography */
  --zoo-font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --zoo-font-secondary: 'Open Sans', sans-serif;
  
  /* Spacing */
  --zoo-space-xs: 0.25rem;
  --zoo-space-sm: 0.5rem;
  --zoo-space-md: 1rem;
  --zoo-space-lg: 1.5rem;
  --zoo-space-xl: 2rem;
  --zoo-space-2xl: 3rem;
  --zoo-space-3xl: 4rem;
  
  /* Borders */
  --zoo-radius-sm: 6px;
  --zoo-radius-md: 12px;
  --zoo-radius-lg: 20px;
  --zoo-radius-xl: 28px;
  --zoo-radius-full: 9999px;
  
  /* Shadows */
  --zoo-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --zoo-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --zoo-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --zoo-shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
  
  /* Transitions */
  --zoo-transition-fast: 0.15s ease;
  --zoo-transition-base: 0.3s ease;
}

/* ============================
   Reset & Base
   ============================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--zoo-font-secondary);
  color: var(--zoo-text);
  background-color: var(--zoo-lighter);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ============================
   Container
   ============================ */
.zoo-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--zoo-space-xl);
}

/* ============================
   Promo Banner
   ============================ */
.zoo-promo-banner {
  background: linear-gradient(90deg, var(--zoo-primary) 0%, #c30510 100%);
  color: var(--zoo-white);
  padding: var(--zoo-space-sm) var(--zoo-space-md);
  text-align: center;
  position: relative;
  z-index: 1000;
}

.zoo-promo-banner__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--zoo-space-md);
  flex-wrap: wrap;
  font-size: 0.9rem;
  font-weight: 500;
}

.zoo-promo-banner__icon {
  font-size: 1.2rem;
}

.zoo-promo-banner__discount {
  background: var(--zoo-accent);
  color: var(--zoo-dark);
  padding: 4px 12px;
  border-radius: var(--zoo-radius-full);
  font-weight: 700;
}

.zoo-promo-banner__timer {
  display: flex;
  align-items: center;
  gap: var(--zoo-space-sm);
  background: rgba(0, 0, 0, 0.2);
  padding: 4px 12px;
  border-radius: var(--zoo-radius-full);
}

.zoo-promo-banner__timer span:last-child {
  font-family: 'Courier New', monospace;
  font-weight: 700;
}

/* ============================
   Header
   ============================ */
.zoo-header {
  background: var(--zoo-white);
  box-shadow: var(--zoo-shadow-sm);
  position: sticky;
  top: 0;
  z-index: 999;
}

.zoo-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--zoo-space-md) 0;
  gap: var(--zoo-space-xl);
}

.zoo-header__logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.zoo-header__logo-icon {
  font-family: var(--zoo-font-primary);
  font-size: 2rem;
  font-weight: 800;
  color: var(--zoo-dark);
  letter-spacing: -2px;
}

.zoo-header__logo-icon span {
  color: var(--zoo-primary);
}

.zoo-header__logo-text {
  font-family: var(--zoo-font-primary);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--zoo-text-muted);
  margin-left: 4px;
}

.zoo-header__nav {
  display: flex;
  gap: var(--zoo-space-xl);
}

.zoo-header__nav a {
  font-family: var(--zoo-font-primary);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--zoo-text);
  transition: color var(--zoo-transition-fast);
  position: relative;
}

.zoo-header__nav a:hover {
  color: var(--zoo-primary);
}

.zoo-header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--zoo-primary);
  transition: width var(--zoo-transition-base);
}

.zoo-header__nav a:hover::after {
  width: 100%;
}

.zoo-header__actions {
  display: flex;
  align-items: center;
  gap: var(--zoo-space-lg);
}

.zoo-header__lang {
  display: flex;
  gap: 4px;
  background: var(--zoo-light);
  padding: 4px;
  border-radius: var(--zoo-radius-full);
}

.zoo-lang-btn {
  padding: 6px 12px;
  border-radius: var(--zoo-radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--zoo-text-muted);
  transition: all var(--zoo-transition-fast);
}

.zoo-lang-btn.active {
  background: var(--zoo-white);
  color: var(--zoo-primary);
  box-shadow: var(--zoo-shadow-sm);
}

.zoo-lang-btn:hover:not(.active) {
  color: var(--zoo-text);
}

.zoo-header__menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.zoo-header__menu span {
  width: 24px;
  height: 2px;
  background: var(--zoo-dark);
  border-radius: 2px;
}

/* ============================
   Buttons
   ============================ */
.zoo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--zoo-space-sm);
  padding: 12px 24px;
  font-family: var(--zoo-font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--zoo-radius-md);
  transition: all var(--zoo-transition-base);
  cursor: pointer;
}

.zoo-btn--primary {
  background: var(--zoo-primary);
  color: var(--zoo-white);
}

.zoo-btn--primary:hover {
  background: var(--zoo-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(227, 6, 19, 0.35);
}

.zoo-btn--outline {
  background: transparent;
  color: var(--zoo-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.zoo-btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--zoo-white);
}

.zoo-btn--lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.zoo-btn--block {
  width: 100%;
}

/* ============================
   Hero Section
   ============================ */
.zoo-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  color: var(--zoo-white);
  overflow: hidden;
}

.zoo-hero__bg {
  position: absolute;
  inset: 0;
  background: 
    url('../img/hero-lion.jpg') center/cover no-repeat;
}

.zoo-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
}

.zoo-hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: var(--zoo-space-3xl) 0;
}

.zoo-hero__badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: var(--zoo-radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: var(--zoo-space-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.zoo-hero__title {
  font-family: var(--zoo-font-primary);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--zoo-space-lg);
}

.zoo-hero__subtitle {
  display: block;
  color: var(--zoo-accent);
  font-style: italic;
}

.zoo-hero__desc {
  font-size: 1.15rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: var(--zoo-space-xl);
}

.zoo-hero__cta {
  display: flex;
  gap: var(--zoo-space-lg);
  margin-bottom: var(--zoo-space-2xl);
  flex-wrap: wrap;
}

.zoo-hero__trust {
  display: flex;
  gap: var(--zoo-space-xl);
  flex-wrap: wrap;
}

.zoo-hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--zoo-space-sm);
  font-size: 0.9rem;
  opacity: 0.85;
}

.zoo-hero__trust-item span:first-child {
  color: var(--zoo-secondary);
  font-weight: bold;
}

.zoo-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--zoo-space-sm);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================
   Sections
   ============================ */
.zoo-section {
  padding: var(--zoo-space-3xl) 0;
}

.zoo-section--light {
  background: var(--zoo-white);
}

.zoo-section--dark {
  background: var(--zoo-dark);
  color: var(--zoo-white);
}

.zoo-section__header {
  text-align: center;
  margin-bottom: var(--zoo-space-2xl);
}

.zoo-section__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--zoo-space-sm);
  background: rgba(227, 6, 19, 0.1);
  color: var(--zoo-primary);
  padding: 6px 16px;
  border-radius: var(--zoo-radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: var(--zoo-space-md);
}

.zoo-section--dark .zoo-section__tag {
  background: rgba(255, 255, 255, 0.1);
  color: var(--zoo-accent);
}

.zoo-section__title {
  font-family: var(--zoo-font-primary);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--zoo-space-sm);
}

.zoo-section__subtitle {
  font-size: 1.1rem;
  color: var(--zoo-text-muted);
}

.zoo-section--dark .zoo-section__subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================
   Ticket Cards
   ============================ */
.zoo-tickets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--zoo-space-xl);
}

.zoo-ticket-card {
  background: var(--zoo-white);
  border-radius: var(--zoo-radius-lg);
  padding: var(--zoo-space-xl);
  text-align: center;
  position: relative;
  box-shadow: var(--zoo-shadow-md);
  border: 2px solid transparent;
  transition: all var(--zoo-transition-base);
}

.zoo-ticket-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--zoo-shadow-xl);
}

.zoo-ticket-card--featured {
  border-color: var(--zoo-primary);
  background: linear-gradient(180deg, #fff5f5 0%, #fff 100%);
}

.zoo-ticket-card__badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--zoo-secondary);
  color: var(--zoo-white);
  padding: 4px 16px;
  border-radius: var(--zoo-radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.zoo-ticket-card__badge--family {
  background: #6366f1;
}

.zoo-ticket-card__badge--best {
  background: var(--zoo-accent);
  color: var(--zoo-dark);
}

.zoo-ticket-card__discount {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--zoo-primary);
  color: var(--zoo-white);
  padding: 4px 10px;
  border-radius: var(--zoo-radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
}

.zoo-ticket-card__icon {
  font-size: 3rem;
  margin-bottom: var(--zoo-space-md);
}

.zoo-ticket-card__title {
  font-family: var(--zoo-font-primary);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--zoo-space-xs);
}

.zoo-ticket-card__desc {
  font-size: 0.9rem;
  color: var(--zoo-text-muted);
  margin-bottom: var(--zoo-space-lg);
}

.zoo-ticket-card__prices {
  margin-bottom: var(--zoo-space-lg);
}

.zoo-ticket-card__original {
  font-size: 1rem;
  color: var(--zoo-text-light);
  text-decoration: line-through;
  display: block;
  margin-bottom: 4px;
}

.zoo-ticket-card__discounted {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--zoo-primary);
  font-family: var(--zoo-font-primary);
}

.zoo-tickets-note {
  text-align: center;
  margin-top: var(--zoo-space-xl);
  padding: var(--zoo-space-md) var(--zoo-space-xl);
  background: rgba(0, 166, 81, 0.1);
  border-radius: var(--zoo-radius-full);
  display: inline-flex;
  align-items: center;
  gap: var(--zoo-space-sm);
  color: var(--zoo-secondary-dark);
  font-weight: 500;
  margin-left: 50%;
  transform: translateX(-50%);
}

/* ============================
   Highlights Grid
   ============================ */
.zoo-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--zoo-space-lg);
}

.zoo-highlight {
  position: relative;
  border-radius: var(--zoo-radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
}

.zoo-highlight img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--zoo-transition-base);
}

.zoo-highlight:hover img {
  transform: scale(1.08);
}

.zoo-highlight__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--zoo-space-xl);
  background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.zoo-highlight__badge {
  display: inline-block;
  background: var(--zoo-secondary);
  color: var(--zoo-white);
  padding: 4px 12px;
  border-radius: var(--zoo-radius-sm);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: var(--zoo-space-sm);
}

.zoo-highlight__badge--new {
  background: var(--zoo-accent);
  color: var(--zoo-dark);
}

.zoo-highlight h3 {
  font-family: var(--zoo-font-primary);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: var(--zoo-space-xs);
}

.zoo-highlight p {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.5;
}

/* ============================
   Info Cards
   ============================ */
.zoo-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--zoo-space-xl);
}

.zoo-info-card {
  background: var(--zoo-white);
  border-radius: var(--zoo-radius-lg);
  padding: var(--zoo-space-xl);
  box-shadow: var(--zoo-shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.zoo-info-card__icon {
  font-size: 2.5rem;
  margin-bottom: var(--zoo-space-md);
}

.zoo-info-card h3 {
  font-family: var(--zoo-font-primary);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--zoo-space-md);
  color: var(--zoo-dark);
}

.zoo-info-card__content p {
  font-size: 0.95rem;
  color: var(--zoo-text-muted);
  margin-bottom: var(--zoo-space-xs);
}

.zoo-info-card__content strong {
  color: var(--zoo-text);
}

/* ============================
   CTA Section
   ============================ */
.zoo-cta-section {
  position: relative;
  padding: var(--zoo-space-3xl) 0;
  overflow: hidden;
}

.zoo-cta-section__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--zoo-primary) 0%, #a00510 100%);
}

.zoo-cta-section__overlay {
  position: absolute;
  inset: 0;
  background: url('../img/penguin.jpg') center/cover no-repeat;
  opacity: 0.15;
}

.zoo-cta-section__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--zoo-white);
}

.zoo-cta-section__content h2 {
  font-family: var(--zoo-font-primary);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--zoo-space-md);
}

.zoo-cta-section__content p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: var(--zoo-space-xl);
}

.zoo-cta-section__timer {
  display: inline-flex;
  align-items: center;
  gap: var(--zoo-space-md);
  background: rgba(0, 0, 0, 0.25);
  padding: var(--zoo-space-md) var(--zoo-space-xl);
  border-radius: var(--zoo-radius-full);
  margin-bottom: var(--zoo-space-xl);
  font-weight: 600;
}

.zoo-cta-section__timer span:last-child {
  font-family: 'Courier New', monospace;
  font-size: 1.2rem;
  font-weight: 700;
}

/* ============================
   Footer
   ============================ */
.zoo-footer {
  background: var(--zoo-darker);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--zoo-space-3xl) 0 var(--zoo-space-xl);
}

.zoo-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--zoo-space-2xl);
  margin-bottom: var(--zoo-space-2xl);
}

.zoo-footer__logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: var(--zoo-space-md);
}

.zoo-footer__col h4 {
  color: var(--zoo-white);
  font-family: var(--zoo-font-primary);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--zoo-space-lg);
}

.zoo-footer__col ul li {
  margin-bottom: var(--zoo-space-sm);
}

.zoo-footer__col a {
  font-size: 0.9rem;
  transition: color var(--zoo-transition-fast);
}

.zoo-footer__col a:hover {
  color: var(--zoo-white);
}

.zoo-footer__payments {
  display: flex;
  gap: var(--zoo-space-md);
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.zoo-footer__bottom {
  text-align: center;
  padding-top: var(--zoo-space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}

/* ============================
   Modal Styles
   ============================ */
.zoo-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 12px;
}

.zoo-modal-overlay.active {
  display: flex;
}

.zoo-modal {
  background: #1a1a1a;
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.3s ease;
  overflow: hidden;
  max-height: calc(100vh - 24px);
  max-height: calc(100dvh - 24px);
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.zoo-modal__header {
  background: var(--zoo-primary);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.zoo-modal__header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.zoo-modal__header-logo .logo-text {
  font-family: var(--zoo-font-primary);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.zoo-modal__header-logo .logo-text span {
  color: var(--zoo-accent);
}

.zoo-modal__header-logo .subtitle {
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.9;
}

.zoo-modal__close {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: 0.2s;
}

.zoo-modal__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.zoo-modal__timer-bar {
  background: linear-gradient(90deg, #e74c3c 0%, #c0392b 100%);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-size: 0.85rem;
}

.zoo-modal__timer-countdown {
  font-family: 'Courier New', monospace;
  font-weight: 700;
  background: rgba(0,0,0,0.2);
  padding: 2px 8px;
  border-radius: 4px;
}

.zoo-modal__timer-badge {
  background: var(--zoo-accent);
  color: var(--zoo-dark);
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
}

.zoo-modal__body {
  padding: 16px;
  color: #fff;
}

.zoo-modal__tickets {
  margin-bottom: 12px;
}

.zoo-ticket-selector {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 6px;
  border: 1px solid rgba(255,255,255,0.08);
}

.zoo-ticket-selector__info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.zoo-ticket-selector__name {
  font-weight: 600;
  font-size: 0.9rem;
  min-width: 100px;
}

.zoo-ticket-selector__prices {
  display: flex;
  align-items: center;
  gap: 8px;
}

.zoo-ticket-selector__original {
  font-size: 0.8rem;
  text-decoration: line-through;
  opacity: 0.5;
  color: #999;
}

.zoo-ticket-selector__discounted {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--zoo-secondary);
}

.zoo-ticket-selector__controls {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3px;
}

.zoo-ticket-selector__btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: 0.15s;
}

.zoo-ticket-selector__btn:hover {
  background: var(--zoo-primary);
}

.zoo-ticket-selector__qty {
  min-width: 20px;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.zoo-modal__free-note {
  text-align: center;
  font-size: 0.75rem;
  padding: 8px;
  background: rgba(0, 166, 81, 0.1);
  border: 1px dashed rgba(0, 166, 81, 0.3);
  border-radius: 6px;
  margin-top: 8px;
  color: var(--zoo-secondary);
}

.zoo-modal__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.zoo-modal__input {
  width: 100%;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #fff;
  font-size: 0.85rem;
  transition: 0.2s;
}

.zoo-modal__input:focus {
  outline: none;
  border-color: var(--zoo-primary);
  background: rgba(255, 255, 255, 0.12);
}

.zoo-modal__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.zoo-modal__input--date {
  color-scheme: dark;
}

.zoo-modal__checkout-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
  margin-bottom: 12px;
}

.zoo-modal__summary-inline {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.zoo-modal__summary-items {
  font-size: 0.8rem;
  opacity: 0.7;
}

.zoo-modal__summary-prices {
  display: flex;
  align-items: center;
  gap: 10px;
}

.zoo-modal__summary-original {
  font-size: 0.85rem;
  text-decoration: line-through;
  opacity: 0.5;
  color: #999;
}

.zoo-modal__summary-final {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--zoo-secondary);
}

.zoo-modal__checkout-btn {
  padding: 12px 24px;
  background: var(--zoo-secondary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
  white-space: nowrap;
}

.zoo-modal__checkout-btn:hover {
  background: var(--zoo-secondary-dark);
  transform: translateY(-1px);
}

.zoo-modal__checkout-btn:disabled {
  background: #444;
  cursor: not-allowed;
  transform: none;
}

.zoo-modal__trust {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 0.7rem;
  opacity: 0.6;
  flex-wrap: wrap;
}

/* ============================
   Responsive
   ============================ */
@media (max-width: 992px) {
  .zoo-header__nav {
    display: none;
  }
  
  .zoo-header__menu {
    display: flex;
  }
  
  .zoo-header__lang {
    display: none;
  }
}

@media (max-width: 768px) {
  .zoo-container {
    padding: 0 var(--zoo-space-md);
  }
  
  .zoo-hero {
    min-height: 75vh;
  }
  
  .zoo-hero__cta {
    flex-direction: column;
  }
  
  .zoo-hero__trust {
    flex-direction: column;
    gap: var(--zoo-space-md);
  }
  
  .zoo-btn--lg {
    width: 100%;
  }
  
  .zoo-highlights-grid {
    grid-template-columns: 1fr;
  }
  
  .zoo-promo-banner__text {
    display: none;
  }
  
  .zoo-header__actions .zoo-btn {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
  
  /* Mobile Modal */
  .zoo-modal-overlay {
    padding: 8px;
    align-items: flex-start;
  }
  
  .zoo-modal {
    border-radius: 12px;
  }
  
  .zoo-modal__header {
    padding: 10px 14px;
  }
  
  .zoo-modal__header-logo .logo-text {
    font-size: 1.1rem;
  }
  
  .zoo-modal__close {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }
  
  .zoo-modal__timer-bar {
    padding: 6px 12px;
    font-size: 0.75rem;
    gap: 6px;
  }
  
  .zoo-modal__body {
    padding: 12px;
  }
  
  .zoo-ticket-selector {
    padding: 8px 10px;
    margin-bottom: 5px;
  }
  
  .zoo-ticket-selector__info {
    gap: 8px;
    flex-wrap: wrap;
  }
  
  .zoo-ticket-selector__name {
    font-size: 0.8rem;
    min-width: auto;
  }
  
  .zoo-ticket-selector__original {
    font-size: 0.7rem;
  }
  
  .zoo-ticket-selector__discounted {
    font-size: 0.85rem;
  }
  
  .zoo-ticket-selector__controls {
    gap: 4px;
    padding: 2px;
  }
  
  .zoo-ticket-selector__btn {
    width: 24px;
    height: 24px;
    font-size: 0.95rem;
  }
  
  .zoo-modal__form-row {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 10px;
  }
  
  .zoo-modal__form-row .zoo-modal__input:last-child {
    grid-column: span 2;
  }
  
  .zoo-modal__input {
    padding: 8px 10px;
    font-size: 0.8rem;
  }
  
  .zoo-modal__checkout-row {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
  }
  
  .zoo-modal__summary-inline {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
  }
  
  .zoo-modal__summary-final {
    font-size: 1.1rem;
  }
  
  .zoo-modal__checkout-btn {
    padding: 12px;
    font-size: 0.95rem;
    width: 100%;
  }
  
  .zoo-modal__trust {
    gap: 10px;
    font-size: 0.65rem;
  }
}

