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

:root {
  --navy:     #1A3A5C;
  --navy-dark:#0F2540;
  --gold:     #C9A84C;
  --gold-lt:  #E8C97A;
  --cream:    #F9F7F2;
  --white:    #FFFFFF;
  --gray-100: #F5F5F0;
  --gray-200: #E8E6DF;
  --gray-400: #A8A49A;
  --gray-600: #6B6760;
  --gray-800: #2C2A26;
  --red:      #C0392B;
  --green:    #27AE60;

  --shadow-sm: 0 2px 8px rgba(26,58,92,.08);
  --shadow-md: 0 4px 20px rgba(26,58,92,.12);
  --shadow-lg: 0 8px 40px rgba(26,58,92,.16);

  --transition: .2s ease;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  font-size: 15px;
  line-height: 1.65;
}

h1, h2, h3, h4, h5, .display-serif {
  font-family: 'Playfair Display', serif;
}

a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

/* ── NAVBAR ─────────────────────────────────────────────── */
.navbar-main {
  background: var(--navy);
  padding: 0;
  border-bottom: 3px solid var(--gold);
}
.navbar-main .navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--white) !important;
  padding: 12px 0;
  letter-spacing: -.5px;
}
.navbar-main .navbar-brand span { color: var(--gold); }
.navbar-main .nav-link {
  color: rgba(255,255,255,.85) !important;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 20px 14px !important;
  transition: color var(--transition), background var(--transition);
}
.navbar-main .nav-link:hover, .navbar-main .nav-link.active {
  color: var(--gold) !important;
}
.navbar-main .btn-nav-login {
  background: var(--gold);
  color: var(--navy) !important;
  border-radius: 4px;
  padding: 7px 18px !important;
  font-weight: 600;
  margin: auto 0;
  font-size: .8rem;
  letter-spacing: .05em;
}
.navbar-main .btn-nav-login:hover { background: var(--gold-lt); }
.navbar-toggler { border-color: rgba(255,255,255,.3); }
.navbar-toggler-icon { filter: invert(1); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1e4570 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 70px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: 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='%23C9A84C' fill-opacity='0.04'%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-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  line-height: 1.15;
  font-weight: 700;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-subtitle { color: rgba(255,255,255,.75); font-size: 1.05rem; font-weight: 300; }
.hero-search {
  background: var(--white);
  border-radius: 8px;
  padding: 6px 6px 6px 20px;
  display: flex;
  gap: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  max-width: 640px;
}
.hero-search input {
  border: none; outline: none; flex: 1;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  background: transparent;
}
.hero-search select {
  border: none; outline: none;
  font-size: .85rem;
  color: var(--gray-600);
  padding: 0 8px;
  border-left: 1px solid var(--gray-200);
  background: transparent;
}
.hero-stats { display: flex; gap: 32px; margin-top: 28px; }
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--gold); font-weight: 700; line-height: 1; }
.hero-stat-label { font-size: .75rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .06em; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  border: none;
  border-radius: 5px;
  padding: 10px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: .875rem;
  letter-spacing: .03em;
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-1px); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  border: none;
  border-radius: 5px;
  padding: 10px 24px;
  font-size: .875rem;
  cursor: pointer;
  transition: background var(--transition);
}
.btn-navy:hover { background: var(--navy-dark); }
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 5px;
  padding: 8px 22px;
  font-weight: 600;
  font-size: .875rem;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }

/* ── SECTION HEADERS ──────────────────────────────────────── */
.section-label {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--navy);
  margin: 4px 0 0;
  line-height: 1.2;
}
.gold-underline {
  width: 48px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 12px 0 32px;
}

/* ── CARDS ────────────────────────────────────────────────── */
.venue-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
  border: 1px solid var(--gray-200);
  height: 100%;
}
.venue-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.venue-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, #2a5a8c 100%);
  position: relative;
  overflow: hidden;
}
.venue-card-img img { width: 100%; height: 100%; object-fit: cover; }
.venue-card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--navy);
  font-size: .65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 3px 10px; border-radius: 20px;
}
.venue-card-featured {
  position: absolute; top: 12px; right: 12px;
  background: rgba(255,255,255,.92); color: var(--navy);
  font-size: .65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  padding: 3px 10px; border-radius: 20px;
}
.venue-card-body { padding: 18px 20px 20px; }
.venue-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin: 0 0 4px;
  font-weight: 600;
}
.venue-card-meta { font-size: .8rem; color: var(--gray-600); margin-bottom: 10px; }
.venue-card-meta i { width: 14px; }

/* ── STARS ────────────────────────────────────────────────── */
.stars { color: var(--gold); font-size: .85rem; letter-spacing: 1px; }
.stars .empty { color: var(--gray-200); }
.rating-num { font-weight: 700; color: var(--navy); font-size: .9rem; margin-left: 5px; }
.review-count { font-size: .78rem; color: var(--gray-600); margin-left: 4px; }

/* Star Rating Input */
.star-input { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 4px; }
.star-input input { display: none; }
.star-input label {
  font-size: 1.5rem; color: var(--gray-200);
  cursor: pointer; transition: color var(--transition);
}
.star-input label:hover, .star-input label:hover ~ label,
.star-input input:checked ~ label { color: var(--gold); }

/* ── FORMS ────────────────────────────────────────────────── */
.form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.form-label {
  font-weight: 600; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--navy); margin-bottom: 6px;
}
.form-control, .form-select {
  border: 1.5px solid var(--gray-200);
  border-radius: 6px;
  padding: 10px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: var(--gray-800);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,58,92,.1);
  outline: none;
}
.form-control.is-invalid { border-color: var(--red); }
.invalid-feedback { color: var(--red); font-size: .8rem; }

/* ── REVIEW CARDS ─────────────────────────────────────────── */
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 22px 24px;
  margin-bottom: 16px;
  transition: box-shadow var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-sm); }
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  flex-shrink: 0;
}
.review-meta { font-size: .78rem; color: var(--gray-600); }
.badge-reviewer {
  font-size: .65rem; font-weight: 600;
  padding: 2px 8px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: .06em;
}
.badge-elite { background: #FFF3CD; color: #856404; }
.badge-trusted { background: #D1ECF1; color: #0C5460; }
.badge-pro { background: var(--navy); color: var(--gold); }
.badge-verified { background: #D4EDDA; color: #155724; }

/* ── RATINGS BREAKDOWN ────────────────────────────────────── */
.rating-bar { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.rating-bar-label { font-size: .78rem; color: var(--gray-600); width: 110px; flex-shrink: 0; }
.rating-bar-track {
  flex: 1; height: 6px;
  background: var(--gray-200); border-radius: 3px; overflow: hidden;
}
.rating-bar-fill {
  height: 100%; border-radius: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-lt) 100%);
  transition: width .6s ease;
}
.rating-bar-num { font-size: .78rem; font-weight: 700; color: var(--navy); width: 24px; text-align: right; }

/* ── OVERALL SCORE ────────────────────────────────────────── */
.overall-score-box {
  background: var(--navy);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  color: var(--white);
}
.overall-score-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}

/* ── TABS ─────────────────────────────────────────────────── */
.nav-tabs-custom {
  border-bottom: 2px solid var(--gray-200);
  gap: 0;
}
.nav-tabs-custom .nav-link {
  border: none; border-bottom: 3px solid transparent;
  margin-bottom: -2px; padding: 12px 20px;
  font-size: .85rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .05em;
  color: var(--gray-600);
  border-radius: 0;
  transition: color var(--transition), border-color var(--transition);
}
.nav-tabs-custom .nav-link.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
  background: transparent;
}
.nav-tabs-custom .nav-link:hover:not(.active) { color: var(--navy); }

/* ── SIDEBAR WIDGETS ──────────────────────────────────────── */
.widget {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px;
}
.widget-header {
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
}
.widget-body { padding: 18px 20px; }

/* ── PHOTO UPLOAD ─────────────────────────────────────────── */
.photo-drop {
  border: 2px dashed var(--gray-200);
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.photo-drop:hover, .photo-drop.dragover {
  border-color: var(--gold);
  background: rgba(201,168,76,.05);
}
.photo-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 8px; margin-top: 12px;
}
.photo-preview-item {
  position: relative; aspect-ratio: 1;
  border-radius: 6px; overflow: hidden;
}
.photo-preview-item img { width: 100%; height: 100%; object-fit: cover; }
.photo-preview-item .remove-photo {
  position: absolute; top: 3px; right: 3px;
  background: var(--red); color: white; border: none;
  border-radius: 50%; width: 18px; height: 18px;
  font-size: .6rem; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
}

/* ── ADMIN ────────────────────────────────────────────────── */
.admin-sidebar {
  background: var(--navy);
  min-height: 100vh;
  padding: 0;
  width: 240px;
  flex-shrink: 0;
}
.admin-sidebar .brand {
  padding: 20px 24px 16px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
}
.admin-sidebar .brand span { color: var(--gold); }
.admin-nav-item {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 24px;
  color: rgba(255,255,255,.7);
  font-size: .85rem; font-weight: 500;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  border-left: 3px solid transparent;
}
.admin-nav-item:hover { background: rgba(255,255,255,.06); color: var(--white); }
.admin-nav-item.active { background: rgba(201,168,76,.12); color: var(--gold); border-left-color: var(--gold); }
.admin-nav-item i { width: 18px; text-align: center; }
.admin-content { flex: 1; padding: 32px; background: var(--gray-100); min-height: 100vh; overflow-y: auto; }
.admin-layout { display: flex; min-height: 100vh; }
.stat-card {
  background: var(--white); border-radius: 10px;
  padding: 22px 24px; border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--navy); line-height: 1; }
.stat-label { font-size: .78rem; color: var(--gray-600); text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }
.stat-icon { font-size: 1.6rem; color: var(--gold); }

/* ── TABLE ────────────────────────────────────────────────── */
.table-custom { width: 100%; border-collapse: collapse; font-size: .85rem; }
.table-custom th {
  background: var(--navy); color: var(--white);
  padding: 12px 16px; text-align: left;
  font-size: .75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .05em;
}
.table-custom td {
  padding: 12px 16px; border-bottom: 1px solid var(--gray-200);
  color: var(--gray-800); vertical-align: middle;
}
.table-custom tr:hover td { background: var(--gray-100); }
.table-custom tr:last-child td { border-bottom: none; }

/* ── BADGES / STATUS ──────────────────────────────────────── */
.status-badge {
  display: inline-block; font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
  padding: 3px 10px; border-radius: 20px;
}
.status-active { background: #D4EDDA; color: #155724; }
.status-pending { background: #FFF3CD; color: #856404; }
.status-rejected { background: #F8D7DA; color: #721C24; }
.status-featured { background: rgba(201,168,76,.15); color: #7A5C0A; }

/* ── DASHBOARD USER ───────────────────────────────────────── */
.profile-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #2a5a8c 100%);
  padding: 40px 0 60px;
  position: relative;
}
.profile-avatar-lg {
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700;
  border: 4px solid var(--white); box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.progress-custom {
  height: 6px; background: var(--gray-200); border-radius: 3px; overflow: hidden;
}
.progress-fill {
  height: 100%; border-radius: 3px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 100%);
  transition: width .8s ease;
}

/* ── TAGS ─────────────────────────────────────────────────── */
.tag {
  display: inline-block;
  background: var(--gray-100); color: var(--gray-600);
  border-radius: 20px; padding: 3px 12px;
  font-size: .75rem; font-weight: 500; margin: 2px;
  border: 1px solid var(--gray-200);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  text-decoration: none;
}
.tag:hover, a.tag:hover {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

/* ── FOOTER ────────────────────────────────────────────────── */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  padding: 60px 0 28px;
  margin-top: 80px;
}
footer h5 { font-family: 'Playfair Display', serif; color: var(--white); margin-bottom: 16px; }
footer a { color: rgba(255,255,255,.6); font-size: .875rem; display: block; margin-bottom: 6px; }
footer a:hover { color: var(--gold); }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--white); }
.footer-brand span { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 40px; padding-top: 20px;
  font-size: .8rem; color: rgba(255,255,255,.45);
}
/* Legal links in footer bottom must stay inline, not block */
.footer-bottom a {
  display: inline;
  margin-bottom: 0;
  color: rgba(255,255,255,.55);
  font-size: .8rem;
}
.footer-bottom a:hover { color: var(--gold); }

/* ── ALERTS ────────────────────────────────────────────────── */
.alert-gold { background: rgba(201,168,76,.12); border: 1px solid var(--gold); color: #5C3D00; border-radius: 6px; padding: 12px 16px; font-size: .875rem; }
.alert-success { background: rgba(39,174,96,.1); border: 1px solid var(--green); color: #155724; border-radius: 6px; padding: 12px 16px; font-size: .875rem; }
.alert-danger { background: rgba(192,57,43,.1); border: 1px solid var(--red); color: #721C24; border-radius: 6px; padding: 12px 16px; font-size: .875rem; }

/* ── AWARDS PAGE ───────────────────────────────────────────── */
.award-cat-card {
  border: 1px solid var(--gray-200);
  border-radius: 10px; padding: 20px;
  text-align: center; cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
}
.award-cat-card:hover, .award-cat-card.selected {
  border-color: var(--gold);
  background: rgba(201,168,76,.06);
  box-shadow: var(--shadow-sm);
}
.award-icon { font-size: 2rem; color: var(--gold); margin-bottom: 8px; }
.award-cat-name { font-family: 'Playfair Display', serif; font-size: .9rem; color: var(--navy); font-weight: 600; }

/* ── BREADCRUMB ────────────────────────────────────────────── */
.breadcrumb-custom { font-size: .8rem; color: var(--gray-600); padding: 12px 0; }
.breadcrumb-custom a { color: var(--gray-600); }
.breadcrumb-custom a:hover { color: var(--gold); }
.breadcrumb-custom .sep { margin: 0 6px; color: var(--gray-400); }

/* ── PAGINATION ────────────────────────────────────────────── */
.pagination-custom { display: flex; gap: 4px; }
.page-btn {
  width: 36px; height: 36px; border-radius: 6px;
  border: 1px solid var(--gray-200); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: .85rem; font-weight: 500;
  color: var(--navy); transition: all var(--transition);
}
.page-btn:hover, .page-btn.active {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}
/* Wider variant for text labels (category filters etc.) */
.filter-btn {
  width: auto; height: auto; padding: 7px 18px; border-radius: 20px;
  border: none; background: var(--navy);
  display: inline-flex; align-items: center;
  cursor: pointer; font-size: .8rem; font-weight: 600; white-space: nowrap;
  letter-spacing: .03em;
  color: var(--gold); transition: background var(--transition), color var(--transition);
}
.filter-btn:hover { background: var(--navy-dark); color: var(--gold-lt); }
.filter-btn.active { background: var(--gold); color: var(--navy); }

/* ── OFFER CARD ────────────────────────────────────────────── */
.offer-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 10px; overflow: hidden;
  border-left: 4px solid var(--gold);
  padding: 18px 20px;
  display: flex; gap: 16px; align-items: center;
  transition: box-shadow var(--transition);
}
.offer-card:hover { box-shadow: var(--shadow-sm); }
.offer-pct { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; min-width: 64px; }
.offer-code {
  background: var(--gray-100); border: 1px dashed var(--gray-400);
  border-radius: 5px; padding: 6px 14px;
  font-family: monospace; font-size: .9rem; font-weight: 700;
  color: var(--navy); cursor: pointer;
  user-select: all;
}

/* ── MISC ──────────────────────────────────────────────────── */
.section { padding: 70px 0; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--navy); color: var(--white); }
.divider-gold { height: 2px; background: linear-gradient(90deg, var(--gold) 0%, transparent 100%); border: none; margin: 0; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.bg-navy { background: var(--navy); }
.bg-gold { background: var(--gold); }
.bg-cream { background: var(--cream); }

.sticky-top-nav { top: 0; z-index: 900; }

.modal-custom .modal-header { background: var(--navy); color: var(--white); border-radius: 8px 8px 0 0; }
.modal-custom .modal-title { font-family: 'Playfair Display', serif; }
.modal-custom .btn-close { filter: invert(1); }

@media (max-width: 768px) {
  .form-card { padding: 24px 20px; }
  .hero { padding: 50px 0 44px; }
  .admin-sidebar { display: none; }
  .section { padding: 44px 0; }
}

.fade-in { animation: fadeIn .4s ease both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.spinner { display: inline-block; width: 20px; height: 20px; border: 2px solid rgba(201,168,76,.3); border-top-color: var(--gold); border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Toast */
#toast-container {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  display: flex; flex-direction: column; gap: 8px;
}
.toast-msg {
  background: var(--navy); color: var(--white);
  padding: 12px 20px; border-radius: 8px;
  font-size: .875rem; box-shadow: var(--shadow-md);
  border-left: 4px solid var(--gold);
  animation: slideIn .3s ease;
  display: flex; align-items: center; gap: 10px;
  min-width: 260px;
}
.toast-msg.success { border-left-color: var(--green); }
.toast-msg.error { border-left-color: var(--red); }
@keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: none; } }
