@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --ivory: #FBF7F0;
  --deep-green: #1A3A2A;
  --forest: #2D5A3D;
  --gold: #C8922A;
  --gold-light: #E8B84B;
  --terracotta: #C4521A;
  --cream: #F5EDD8;
  --dark: #0F1E15;
  --text: #1C2B22;
  --text-muted: #6B7E72;
  --border: #DDD5C4;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(26,58,42,0.10);
  --shadow-lg: 0 16px 64px rgba(26,58,42,0.18);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ivory);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(251,247,240,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.navbar-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.navbar-logo {
  width: 42px; height: 42px;
  background: var(--deep-green);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900; color: var(--gold);
  font-size: 18px;
}
.navbar-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--deep-green);
  letter-spacing: -0.5px;
}
.navbar-name span { color: var(--gold); }

.navbar-nav {
  display: flex; align-items: center; gap: 0.25rem;
  list-style: none;
}
.navbar-nav a {
  font-size: 0.9rem; font-weight: 500;
  color: var(--text); text-decoration: none;
  padding: 8px 14px; border-radius: 8px;
  transition: var(--transition);
}
.navbar-nav a:hover { background: var(--cream); color: var(--deep-green); }
.navbar-nav a.active { color: var(--forest); font-weight: 600; }

.navbar-actions { display: flex; align-items: center; gap: 10px; }
.btn-outline-nav {
  border: 1.5px solid var(--deep-green); color: var(--deep-green);
  background: transparent; padding: 8px 18px; border-radius: 8px;
  font-size: 0.875rem; font-weight: 500; cursor: pointer;
  text-decoration: none; transition: var(--transition);
}
.btn-outline-nav:hover { background: var(--deep-green); color: var(--white); }
.btn-primary-nav {
  background: var(--gold); color: var(--white);
  border: none; padding: 8px 18px; border-radius: 8px;
  font-size: 0.875rem; font-weight: 600; cursor: pointer;
  text-decoration: none; transition: var(--transition);
}
.btn-primary-nav:hover { background: var(--gold-light); color: var(--dark); }

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--deep-green) 0%, var(--forest) 60%, #3d7a52 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding-top: 72px;
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(200,146,42,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(200,146,42,0.10) 0%, transparent 40%),
    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-content { position: relative; z-index: 2; text-align: center; padding: 2rem; max-width: 900px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,146,42,0.2); border: 1px solid rgba(200,146,42,0.4);
  color: var(--gold-light); padding: 6px 16px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-badge::before { content: '🇨🇮'; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900; color: var(--white);
  line-height: 1.1; margin-bottom: 1.5rem;
  letter-spacing: -1px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-subtitle {
  font-size: 1.15rem; color: rgba(255,255,255,0.75);
  max-width: 600px; margin: 0 auto 3rem;
  font-weight: 300;
}

/* Search Box */
.hero-search {
  background: var(--white);
  border-radius: 20px;
  padding: 1rem;
  max-width: 800px; margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.search-tabs {
  display: flex; gap: 0.5rem; margin-bottom: 1rem;
  border-bottom: 1px solid var(--border); padding-bottom: 0.75rem;
}
.search-tab {
  padding: 6px 16px; border-radius: 8px; border: none;
  background: transparent; cursor: pointer; font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem; font-weight: 500; color: var(--text-muted);
  display: flex; align-items: center; gap: 6px; transition: var(--transition);
}
.search-tab.active { background: var(--deep-green); color: var(--white); }
.search-tab:hover:not(.active) { background: var(--cream); color: var(--text); }
.search-fields { display: flex; gap: 0.75rem; align-items: flex-end; flex-wrap: wrap; }
.search-field { flex: 1; min-width: 140px; }
.search-field label {
  display: block; font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--text-muted); margin-bottom: 0.25rem;
}
.search-field input, .search-field select {
  width: 100%; padding: 10px 14px; border: 1.5px solid var(--border);
  border-radius: 10px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  color: var(--text); background: var(--ivory);
  transition: var(--transition); outline: none;
}
.search-field input:focus, .search-field select:focus { border-color: var(--forest); }
.btn-search {
  background: var(--gold); color: var(--white); border: none;
  padding: 12px 28px; border-radius: 12px; font-size: 1rem;
  font-weight: 600; cursor: pointer; white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
  transition: var(--transition); font-family: 'DM Sans', sans-serif;
}
.btn-search:hover { background: var(--terracotta); transform: translateY(-1px); }

/* Stats below hero */
.hero-stats {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 3rem; z-index: 2;
}
.hero-stat { text-align: center; }
.hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--gold-light);
  display: block;
}
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); font-weight: 300; }

/* ========== SECTIONS ========== */
.section { padding: 5rem 0; }
.section-alt { background: var(--cream); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700; color: var(--deep-green);
  line-height: 1.2; margin-bottom: 0.75rem;
}
.section-subtitle { color: var(--text-muted); max-width: 540px; margin: 0 auto; }

/* ========== CARDS ========== */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.cards-grid-4 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

.card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; transition: var(--transition);
  border: 1px solid var(--border); cursor: pointer;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

.card-img {
  width: 100%; height: 220px; object-fit: cover;
  background: linear-gradient(135deg, var(--forest), var(--deep-green));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 3rem; position: relative; overflow: hidden;
}
.card-img-placeholder { font-size: 3rem; }
.card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--white);
  padding: 4px 10px; border-radius: 6px;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
}
.card-fav {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; background: rgba(255,255,255,0.9);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--transition);
}
.card-fav:hover { background: var(--white); transform: scale(1.1); }
.card-body { padding: 1.25rem; }
.card-category { font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.card-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--deep-green); margin-bottom: 0.4rem; }
.card-location { font-size: 0.8rem; color: var(--text-muted); display: flex; align-items: center; gap: 4px; margin-bottom: 0.75rem; }
.card-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 0.75rem; }
.stars { color: var(--gold); font-size: 0.85rem; }
.rating-score { font-weight: 700; font-size: 0.85rem; color: var(--text); }
.rating-count { font-size: 0.75rem; color: var(--text-muted); }
.card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 0.75rem; border-top: 1px solid var(--border); }
.card-price { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--deep-green); }
.card-price small { font-size: 0.65rem; font-family: 'DM Sans', sans-serif; font-weight: 400; color: var(--text-muted); }
.btn-card {
  background: var(--deep-green); color: var(--white); border: none;
  padding: 8px 16px; border-radius: 8px; font-size: 0.8rem; font-weight: 600;
  cursor: pointer; transition: var(--transition); font-family: 'DM Sans', sans-serif;
}
.btn-card:hover { background: var(--gold); }

/* ========== DESTINATION CARD (big) ========== */
.dest-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 260px 260px; gap: 1rem; }
.dest-card {
  border-radius: var(--radius); overflow: hidden;
  position: relative; cursor: pointer;
  background: linear-gradient(135deg, var(--forest), var(--deep-green));
}
.dest-card:first-child { grid-row: 1 / 3; }
.dest-card-inner { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%); }
.dest-card-emoji { font-size: 4rem; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-70%); opacity: 0.4; }
.dest-card-name { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--white); }
.dest-card-count { font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.dest-card:hover .dest-card-inner { background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 70%); }
.dest-card { transition: var(--transition); }
.dest-card:hover { transform: scale(1.01); }

/* ========== VEHICLE CARDS ========== */
.vehicle-card { display: flex; gap: 1rem; background: var(--white); border-radius: var(--radius); padding: 1.25rem; border: 1px solid var(--border); transition: var(--transition); }
.vehicle-card:hover { box-shadow: var(--shadow); border-color: var(--border); }
.vehicle-img { width: 120px; height: 80px; border-radius: 10px; background: linear-gradient(135deg, #f0f4f0, #e0e8e0); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; flex-shrink: 0; }
.vehicle-info { flex: 1; }
.vehicle-name { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--deep-green); margin-bottom: 0.25rem; }
.vehicle-specs { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.vehicle-features { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.75rem; }
.feature-chip { background: var(--cream); color: var(--text); font-size: 0.7rem; padding: 3px 8px; border-radius: 4px; }
.vehicle-footer { display: flex; align-items: center; justify-content: space-between; }
.vehicle-price { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--deep-green); }

/* ========== PAYMENT SECTION ========== */
.payment-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; }
.payment-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem; text-align: center; transition: var(--transition);
}
.payment-card:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(200,146,42,0.15); }
.payment-logo { font-size: 2.5rem; margin-bottom: 0.75rem; }
.payment-name { font-weight: 700; color: var(--deep-green); font-size: 0.9rem; margin-bottom: 0.25rem; }
.payment-desc { font-size: 0.75rem; color: var(--text-muted); }

/* ========== FOOTER ========== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .navbar-name { color: var(--white); }
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.5); margin-top: 0.75rem; line-height: 1.6; max-width: 260px; }
.footer-heading { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.875rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; }
.social-links { display: flex; gap: 1rem; }
.social-link { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; text-decoration: none; color: var(--white); font-size: 1rem; transition: var(--transition); }
.social-link:hover { background: var(--gold); }

/* ========== MODAL ========== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px); z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: var(--transition);
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white); border-radius: 24px;
  padding: 2.5rem; max-width: 480px; width: 90%;
  transform: translateY(20px); transition: var(--transition);
  max-height: 90vh; overflow-y: auto;
}
.modal-overlay.active .modal { transform: translateY(0); }
.modal-title { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--deep-green); margin-bottom: 0.5rem; }
.modal-subtitle { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 0.4rem; }
.form-input {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: 10px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  color: var(--text); background: var(--ivory); outline: none; transition: var(--transition);
}
.form-input:focus { border-color: var(--forest); background: var(--white); }
.form-divider { text-align: center; color: var(--text-muted); font-size: 0.85rem; margin: 1rem 0; position: relative; }
.form-divider::before, .form-divider::after { content: ''; position: absolute; top: 50%; width: 40%; height: 1px; background: var(--border); }
.form-divider::before { left: 0; }
.form-divider::after { right: 0; }
.btn-full { width: 100%; padding: 14px; border-radius: 12px; font-size: 1rem; font-weight: 600; cursor: pointer; font-family: 'DM Sans', sans-serif; border: none; transition: var(--transition); }
.btn-primary-full { background: var(--deep-green); color: var(--white); }
.btn-primary-full:hover { background: var(--forest); }
.btn-gold-full { background: var(--gold); color: var(--white); }
.btn-gold-full:hover { background: var(--gold-light); color: var(--dark); }
.modal-switch { text-align: center; font-size: 0.875rem; color: var(--text-muted); margin-top: 1rem; }
.modal-switch a { color: var(--gold); text-decoration: none; font-weight: 600; }
.modal-close { position: absolute; top: 1.5rem; right: 1.5rem; width: 36px; height: 36px; background: var(--cream); border: none; border-radius: 50%; cursor: pointer; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.modal-close:hover { background: var(--border); }
.modal { position: relative; }

/* ========== DASHBOARD ========== */
.dashboard { display: flex; min-height: 100vh; padding-top: 72px; }
.sidebar {
  width: 260px; flex-shrink: 0;
  background: var(--deep-green);
  padding: 2rem 1rem;
  position: fixed; top: 72px; left: 0; bottom: 0;
  overflow-y: auto;
}
.sidebar-nav { list-style: none; }
.sidebar-nav-item { margin-bottom: 0.25rem; }
.sidebar-nav-link {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; border-radius: 10px;
  color: rgba(255,255,255,0.65); text-decoration: none;
  font-size: 0.875rem; font-weight: 500; transition: var(--transition);
}
.sidebar-nav-link:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.sidebar-nav-link.active { background: rgba(200,146,42,0.2); color: var(--gold-light); }
.sidebar-nav-link .icon { font-size: 1.1rem; width: 20px; text-align: center; }
.sidebar-section-title { font-size: 0.65rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); padding: 0 14px; margin: 1.5rem 0 0.5rem; }

.main-content { margin-left: 260px; flex: 1; padding: 2rem; }
.page-header { margin-bottom: 2rem; }
.page-title { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--deep-green); }
.page-subtitle { color: var(--text-muted); }

.stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.25rem; margin-bottom: 2rem; }
.stat-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.5rem; border: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 1rem;
}
.stat-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.stat-icon.green { background: rgba(45,90,61,0.1); }
.stat-icon.gold { background: rgba(200,146,42,0.1); }
.stat-icon.terracotta { background: rgba(196,82,26,0.15); }
.stat-icon.blue { background: rgba(26,90,160,0.1); }
.stat-value { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--deep-green); }
.stat-label { font-size: 0.8rem; color: var(--text-muted); }
.stat-change { font-size: 0.75rem; margin-top: 0.25rem; }
.stat-change.up { color: #2d7a4e; }
.stat-change.down { color: var(--terracotta); }

.table-wrapper { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }
.table-header { padding: 1.25rem 1.5rem; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); }
.table-title { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--deep-green); }
table { width: 100%; border-collapse: collapse; }
th { padding: 0.75rem 1.5rem; text-align: left; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); background: var(--ivory); }
td { padding: 1rem 1.5rem; border-top: 1px solid var(--border); font-size: 0.875rem; }
tr:hover td { background: var(--ivory); }
.status-badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 0.72rem; font-weight: 700; }
.status-confirmed { background: #e8f5ee; color: #2d7a4e; }
.status-pending { background: #fff8e8; color: #b8860b; }
.status-cancelled { background: #fef0ed; color: var(--terracotta); }

/* ========== MISC ========== */
.tag { display: inline-block; background: var(--cream); color: var(--text); padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 500; margin: 2px; }
.tag.active { background: var(--deep-green); color: var(--white); }
.filter-bar { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }

.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 3000;
  background: var(--deep-green); color: var(--white);
  padding: 1rem 1.5rem; border-radius: 12px;
  box-shadow: var(--shadow-lg); font-size: 0.9rem;
  transform: translateY(100px); opacity: 0;
  transition: var(--transition);
  display: flex; align-items: center; gap: 10px;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .navbar-nav { display: none; }
  .hero-stats { display: none; }
  .dest-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .dest-card:first-child { grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .sidebar { transform: translateX(-100%); }
  .main-content { margin-left: 0; }
  .hero-search .search-fields { flex-direction: column; }
}

/* ========== ANIMATIONS ========== */
.fade-up { opacity: 0; transform: translateY(30px); }
.fade-in { opacity: 0; }
.scale-in { opacity: 0; transform: scale(0.95); }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.loading-shimmer {
  background: linear-gradient(90deg, var(--cream) 25%, var(--border) 50%, var(--cream) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
