/* ============================================================
   Mindset Bar & Residences — Global Stylesheet
   Dark luxury theme with gold (#D4AF37) accents
   ============================================================ */

/* ---------- CSS Variables / Custom Properties ---------- */
:root {
  --primary: #E4572E;
  --primary-light: #F07A57;
  --primary-dark: #C9451F;
  --secondary: #1F9D55;
  --secondary-light: #4DBA7A;
  --secondary-dark: #157A40;
  --bg-primary: #0A0A0A;
  --bg-card: #141414;
  --bg-card-hover: #1A1A1A;
  --bg-input: #1E1E1E;
  --text-primary: #F5F5F5;
  --text-secondary: #A0A0A0;
  --text-muted: #666;
  --border-color: #2A2A2A;
  --border-primary: rgba(228,87,46,0.3);
  --shadow-primary: 0 0 20px rgba(228,87,46,0.15);
  --radius: 12px;
  --transition: 0.3s ease;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;
}

/* ---------- 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);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}
button { cursor: pointer; }

/* ---------- Utility ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.section-header p { color: var(--text-secondary); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.section-header .divider {
  width: 60px; height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
  border-radius: 2px;
}
.gold-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  border: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--gold);
}
.btn-outline:hover { background: rgba(212,175,55,0.1); }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ---------- Loading Screen ---------- */
#loading-screen {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg-primary);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease;
}
#loading-screen.hidden { opacity: 0; pointer-events: none; }
.loader {
  width: 48px; height: 48px;
  border: 3px solid var(--border-color);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Sticky Navbar ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}
.navbar .logo span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
}
.cart-badge {
  position: relative;
}
.cart-badge .count {
  position: absolute; top: -8px; right: -10px;
  background: var(--gold); color: #000;
  font-size: 0.65rem; font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* Mobile Nav */
@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--bg-card);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 20px;
    transition: right var(--transition);
    border-left: 1px solid var(--border-color);
  }
  .nav-links.open { right: 0; }
  .nav-toggle { display: flex; }
  .mobile-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 998;
    display: none;
  }
  .mobile-overlay.show { display: block; }
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.8));
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 700px;
  padding: 0 20px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Page Hero (shorter) */
.page-hero {
  position: relative;
  padding: 140px 0 80px;
  text-align: center;
  background: linear-gradient(to bottom, rgba(212,175,55,0.05), transparent);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}
.page-hero p { color: var(--text-secondary); font-size: 1.05rem; }

/* ---------- Card Grids ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }

/* ---------- Room Card ---------- */
.room-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.room-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.room-card .card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.room-card .card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.room-card:hover .card-img img { transform: scale(1.05); }
.room-card .card-img .badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: #000;
  padding: 4px 12px; border-radius: 20px;
  font-size: 0.75rem; font-weight: 600;
}
.room-card .card-body { padding: 20px; }
.room-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.room-card .meta {
  display: flex; gap: 16px;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.room-card .desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.room-card .card-footer {
  display: flex; justify-content: space-between; align-items: center;
}
.room-card .price { font-family: var(--font-display); font-size: 1.15rem; color: var(--gold); font-weight: 700; }
.room-card .price small { font-size: 0.75rem; color: var(--text-muted); font-weight: 400; }

/* ---------- Menu Card ---------- */
.menu-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.menu-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}
.menu-card .card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.menu-card .card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-card:hover .card-img img { transform: scale(1.08); }
.menu-card .card-body { padding: 16px; }
.menu-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.menu-card .desc {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 12px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.menu-card .card-footer {
  display: flex; justify-content: space-between; align-items: center;
}
.menu-card .price { color: var(--gold); font-weight: 700; }

/* ---------- Category Filters ---------- */
.category-filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.category-filters button {
  padding: 8px 20px;
  border-radius: 999px;
  background: var(--bg-card);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  font-size: 0.85rem; font-weight: 500;
  transition: all var(--transition);
}
.category-filters button:hover,
.category-filters button.active {
  background: var(--gold); color: #000;
  border-color: var(--gold);
}

/* ---------- Features Grid ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}
.feature-card .icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  background: rgba(212,175,55,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.feature-card h4 { font-family: var(--font-display); margin-bottom: 8px; }
.feature-card p { color: var(--text-secondary); font-size: 0.9rem; }

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}
.testimonial-card:hover { border-color: var(--border-gold); }
.testimonial-card .stars { color: var(--gold); margin-bottom: 12px; font-size: 1.1rem; }
.testimonial-card blockquote {
  color: var(--text-secondary);
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.6;
}
.testimonial-card .author { font-weight: 600; }
.testimonial-card .role { color: var(--text-muted); font-size: 0.85rem; }

/* ---------- Forms ---------- */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.9rem; font-weight: 500;
  margin-bottom: 6px;
  color: var(--text-secondary);
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  transition: border-color var(--transition);
}
.form-control:focus { border-color: var(--gold); }
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { appearance: none; cursor: pointer; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.form-error { color: #ef4444; font-size: 0.8rem; margin-top: 4px; }
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Tabs ---------- */
.tabs {
  display: flex; gap: 0;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border-color);
  justify-content: center;
}
.tabs button {
  padding: 12px 28px;
  background: none;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  font-weight: 500;
  transition: all var(--transition);
}
.tabs button:hover { color: var(--text-primary); }
.tabs button.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ---------- Cart Sidebar ---------- */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1100;
  display: none;
}
.cart-overlay.show { display: block; }
.cart-sidebar {
  position: fixed; top: 0; right: -400px;
  width: 380px; max-width: 90vw;
  height: 100vh;
  background: var(--bg-card);
  border-left: 1px solid var(--border-color);
  z-index: 1101;
  display: flex; flex-direction: column;
  transition: right var(--transition);
}
.cart-sidebar.open { right: 0; }
.cart-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex; justify-content: space-between; align-items: center;
}
.cart-header h3 { font-family: var(--font-display); font-size: 1.2rem; }
.cart-header button { background: none; color: var(--text-secondary); font-size: 1.3rem; }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 20px; }
.cart-item {
  display: flex; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}
.cart-item img { width: 60px; height: 60px; border-radius: 8px; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-info h5 { font-size: 0.9rem; margin-bottom: 4px; }
.cart-item-info .price { color: var(--gold); font-size: 0.85rem; }
.cart-qty {
  display: flex; align-items: center; gap: 8px;
  margin-top: 6px;
}
.cart-qty button {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.cart-qty span { font-size: 0.9rem; min-width: 20px; text-align: center; }
.cart-remove {
  background: none; color: #ef4444;
  font-size: 0.8rem; padding: 2px 0;
  margin-top: 4px;
}
.cart-footer {
  padding: 20px;
  border-top: 1px solid var(--border-color);
}
.cart-total {
  display: flex; justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.cart-total.grand { font-weight: 700; font-size: 1.1rem; color: var(--gold); }
.cart-empty { text-align: center; color: var(--text-muted); padding: 40px 0; }

/* ---------- Checkout Modal ---------- */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1200;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.modal-overlay.show { display: flex; }
.modal {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 32px;
  width: 100%; max-width: 500px;
  max-height: 90vh; overflow-y: auto;
}
.modal h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.modal-close {
  float: right;
  background: none; color: var(--text-secondary);
  font-size: 1.3rem;
}

/* ---------- Lightbox ---------- */
.lightbox-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 1300;
  display: none; align-items: center; justify-content: center;
}
.lightbox-overlay.show { display: flex; }
.lightbox-overlay img {
  max-width: 90vw; max-height: 85vh;
  border-radius: 8px;
  object-fit: contain;
}
.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  background: none; color: #fff;
  font-size: 2rem;
}

/* ---------- Success Message ---------- */
.success-message {
  text-align: center;
  padding: 40px 20px;
}
.success-message .checkmark {
  width: 64px; height: 64px;
  background: rgba(212,175,55,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 2rem;
}
.success-message h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.success-message p { color: var(--text-secondary); }

/* ---------- Contact Info & Map ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 28px;
}
.contact-info-card .info-item {
  display: flex; gap: 16px;
  margin-bottom: 24px;
}
.contact-info-card .info-item .icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: rgba(212,175,55,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.contact-info-card .info-item h5 { margin-bottom: 4px; }
.contact-info-card .info-item p { color: var(--text-secondary); font-size: 0.9rem; }
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
  height: 350px;
}
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--gold);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 {
  font-family: var(--font-display);
  margin-bottom: 16px;
  font-size: 1.1rem;
}
.footer p, .footer a { color: var(--text-secondary); font-size: 0.9rem; }
.footer .links a { display: block; margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ---------- About Values ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: all var(--transition);
}
.value-card:hover { border-color: var(--border-gold); }
.value-card .icon { font-size: 2rem; margin-bottom: 12px; }
.value-card h4 { font-family: var(--font-display); margin-bottom: 8px; }
.value-card p { color: var(--text-secondary); font-size: 0.9rem; }

/* ---------- Room Detail ---------- */
.room-detail-hero {
  position: relative;
  aspect-ratio: 21/9;
  max-height: 500px;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 32px;
  cursor: pointer;
}
.room-detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.room-detail-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) { .room-detail-content { grid-template-columns: 1fr; } }
.amenities-list {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 12px;
}
.amenity-tag {
  padding: 6px 14px;
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--gold);
}
.booking-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky; top: 100px;
  height: fit-content;
}
.booking-sidebar .price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 20px;
}
.booking-sidebar .price small { font-size: 0.85rem; color: var(--text-muted); }

/* ---------- Quantity in Order ---------- */
.qty-controls {
  display: flex; align-items: center; gap: 8px;
}
.qty-controls button {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
}
.qty-controls button:hover { border-color: var(--gold); }
.qty-controls span { min-width: 24px; text-align: center; }

/* ---------- Floating Cart Button ---------- */
.floating-cart {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 1000;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(212,175,55,0.4);
  transition: transform var(--transition);
}
.floating-cart:hover { transform: scale(1.1); }
.floating-cart .count {
  position: absolute; top: -4px; right: -4px;
  background: #ef4444; color: #fff;
  font-size: 0.7rem; font-weight: 700;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Toast ---------- */
.toast-container {
  position: fixed; top: 80px; right: 20px;
  z-index: 2000;
  display: flex; flex-direction: column; gap: 8px;
}
.toast {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 12px 20px;
  min-width: 260px;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  animation: slideIn 0.3s ease, fadeOut 0.3s ease 2.7s;
  opacity: 1;
}
.toast.success { border-left: 3px solid var(--gold); }
.toast.error { border-left: 3px solid #ef4444; }
@keyframes slideIn { from { transform: translateX(100px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes fadeOut { to { opacity: 0; } }

/* ---------- Scroll Animations ---------- */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ---------- Promo Banner ---------- */
.promo-section {
  background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(212,175,55,0.02));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}
.promo-section h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.promo-section p { color: var(--text-secondary); margin-bottom: 20px; }

/* ---------- CTA Section ---------- */
.cta-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to bottom, transparent, rgba(212,175,55,0.05), transparent);
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}
.cta-section p {
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 28px;
}
