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

/* ---- CSS Variables ---- */
:root {
  --navy:        #0F1B2D;
  --navy-mid:    #1A2D45;
  --navy-light:  #243C5C;
  --amber:       #F59E0B;
  --amber-dark:  #D97706;
  --amber-light: #FEF3C7;
  --white:       #FFFFFF;
  --gray-50:     #F8FAFC;
  --gray-100:    #F1F5F9;
  --gray-200:    #E2E8F0;
  --gray-300:    #CBD5E1;
  --gray-400:    #94A3B8;
  --gray-500:    #64748B;
  --gray-600:    #475569;
  --gray-700:    #334155;
  --gray-800:    #1E293B;
  --green:       #10B981;
  --green-light: #D1FAE5;
  --red:         #EF4444;
  --red-light:   #FEE2E2;
  --blue:        #3B82F6;
  --blue-light:  #DBEAFE;

  --font-sans:   'Plus Jakarta Sans', sans-serif;
  --font-serif:  'DM Serif Display', serif;
  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow:      0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.14);
  --transition:  all .2s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--gray-50);
  color: var(--gray-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }

/* ---- Layout ---- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 720px; margin: 0 auto; padding: 0 20px; }

/* ---- Navbar ---- */
.navbar {
  background: var(--navy);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.navbar-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
}
.navbar-brand .brand-dot { color: var(--amber); }
.navbar-nav { display: flex; align-items: center; gap: 8px; }
.nav-link {
  color: rgba(255,255,255,.75);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: .9rem; font-weight: 500;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,.1); }
.nav-btn {
  background: var(--amber); color: var(--navy);
  padding: 8px 18px; border-radius: var(--radius-sm);
  font-size: .9rem; font-weight: 600;
  transition: var(--transition);
}
.nav-btn:hover { background: var(--amber-dark); color: var(--white); }
.nav-user {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.85); font-size: .9rem;
}
.nav-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--amber);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem; color: var(--navy);
}

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0 100px;
  position: relative; overflow: hidden;
}
.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='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(245,158,11,.15); color: var(--amber);
  border: 1px solid rgba(245,158,11,.3);
  padding: 6px 16px; border-radius: 100px;
  font-size: .8rem; font-weight: 600; letter-spacing: .05em;
  text-transform: uppercase; margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white); line-height: 1.2;
  margin-bottom: 16px;
}
.hero h1 em { color: var(--amber); font-style: normal; }
.hero p {
  font-size: 1.05rem; color: rgba(255,255,255,.7);
  max-width: 520px; margin: 0 auto 40px;
}

/* ---- Search Card ---- */
.search-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 36px;
  box-shadow: var(--shadow-lg);
  max-width: 780px; margin: 0 auto;
}
.search-form { display: grid; grid-template-columns: 1fr 1fr 180px auto; gap: 14px; align-items: end; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: .8rem; font-weight: 600; color: var(--gray-600); text-transform: uppercase; letter-spacing: .04em; }
.form-control {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .95rem; color: var(--gray-800);
  transition: var(--transition);
  background: var(--gray-50);
}
.form-control:focus {
  outline: none; border-color: var(--amber);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(245,158,11,.12);
}
.form-control::placeholder { color: var(--gray-400); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 24px;
  border: none; border-radius: var(--radius);
  font-size: .95rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--amber); color: var(--navy); }
.btn-primary:hover { background: var(--amber-dark); color: var(--white); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(245,158,11,.35); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--gray-300);
}
.btn-outline:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }
.btn-success { background: var(--green); color: var(--white); }
.btn-danger  { background: var(--red); color: var(--white); }
.btn-sm { padding: 8px 16px; font-size: .85rem; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none !important; }

/* ---- Cards ---- */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-100);
}
.card-title { font-size: 1.1rem; font-weight: 700; color: var(--gray-800); }

/* ---- Schedule Result Card ---- */
.schedule-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: grid; grid-template-columns: 1fr auto auto;
  gap: 16px; align-items: center;
  transition: var(--transition);
  margin-bottom: 12px;
}
.schedule-card:hover { border-color: var(--amber); box-shadow: var(--shadow); }
.schedule-route { display: flex; align-items: center; gap: 16px; }
.schedule-time { font-size: 1.4rem; font-weight: 700; color: var(--navy); }
.schedule-city { font-size: .8rem; color: var(--gray-500); margin-top: 2px; }
.schedule-arrow {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  gap: 4px; padding: 0 12px;
}
.schedule-line {
  width: 100%; height: 1px; background: var(--gray-300);
  position: relative;
}
.schedule-line::after {
  content: '✈'; position: absolute; right: -8px; top: -9px;
  font-size: .9rem; color: var(--amber);
}
.schedule-duration { font-size: .75rem; color: var(--gray-500); }
.schedule-info { display: flex; flex-direction: column; gap: 6px; }
.vehicle-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; border-radius: 100px;
  font-size: .75rem; font-weight: 600;
}
.vehicle-badge.car     { background: var(--blue-light);  color: var(--blue); }
.vehicle-badge.minibus { background: var(--amber-light);  color: var(--amber-dark); }
.vehicle-badge.bus     { background: var(--green-light);  color: var(--green); }
.seats-badge {
  font-size: .8rem; color: var(--gray-500);
}
.seats-badge.low { color: var(--red); font-weight: 600; }
.price-block { text-align: right; }
.price-main { font-size: 1.4rem; font-weight: 700; color: var(--navy); }
.price-per  { font-size: .75rem; color: var(--gray-500); }

/* ---- Seat Map ---- */
.seat-map-wrapper {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.seat-legend {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 20px;
}
.legend-item { display: flex; align-items: center; gap: 6px; font-size: .85rem; color: var(--gray-600); }
.legend-box {
  width: 28px; height: 28px; border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
}
.legend-box.available { background: var(--white); border-color: var(--gray-300); }
.legend-box.selected  { background: var(--amber); border-color: var(--amber-dark); }
.legend-box.booked    { background: var(--gray-200); border-color: var(--gray-300); }
.legend-box.locked    { background: #FEE2E2; border-color: #FCA5A5; }

.vehicle-diagram { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.driver-row {
  width: 100%; display: flex; justify-content: flex-start;
  padding: 8px 12px; margin-bottom: 8px;
}
.driver-seat {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: .7rem; font-weight: 600;
}
.seat-row { display: flex; gap: 8px; align-items: center; width: 100%; padding: 0 12px; }
.seat-aisle { width: 20px; flex-shrink: 0; }
.seat {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-300);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 600; color: var(--gray-700);
  cursor: pointer; transition: var(--transition);
  user-select: none;
}
.seat:hover:not(.seat-booked):not(.seat-locked) {
  border-color: var(--amber); background: var(--amber-light);
}
.seat.seat-selected {
  background: var(--amber); border-color: var(--amber-dark);
  color: var(--navy);
}
.seat.seat-booked  { background: var(--gray-200); border-color: var(--gray-300); color: var(--gray-400); cursor: not-allowed; }
.seat.seat-locked  { background: #FEE2E2; border-color: #FCA5A5; color: #EF4444; cursor: not-allowed; }

/* ---- Forms ---- */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-section { margin-bottom: 28px; }
.form-section-title {
  font-size: .95rem; font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px; padding-bottom: 8px;
  border-bottom: 2px solid var(--amber);
  display: inline-block;
}
.form-hint { font-size: .78rem; color: var(--gray-500); margin-top: 4px; }
.form-error { font-size: .78rem; color: var(--red); margin-top: 4px; }
.is-invalid { border-color: var(--red) !important; }

/* ---- Alert / Flash ---- */
.alert {
  padding: 14px 18px; border-radius: var(--radius);
  font-size: .9rem; font-weight: 500;
  margin-bottom: 16px;
  display: flex; align-items: flex-start; gap: 10px;
}
.alert-success { background: var(--green-light); color: #065F46; border: 1px solid #A7F3D0; }
.alert-danger   { background: var(--red-light);   color: #991B1B; border: 1px solid #FECACA; }
.alert-warning  { background: var(--amber-light);  color: #92400E; border: 1px solid #FDE68A; }
.alert-info     { background: var(--blue-light);   color: #1E40AF; border: 1px solid #BFDBFE; }

/* ---- Badges ---- */
.badge {
  display: inline-flex; align-items: center;
  padding: 3px 10px; border-radius: 100px;
  font-size: .75rem; font-weight: 600;
}
.badge-pending   { background: var(--amber-light); color: #92400E; }
.badge-paid      { background: var(--green-light); color: #065F46; }
.badge-cancelled { background: var(--red-light);   color: #991B1B; }
.badge-completed { background: var(--blue-light);  color: #1E40AF; }
.badge-active    { background: var(--green-light); color: #065F46; }
.badge-inactive  { background: var(--gray-100);    color: var(--gray-500); }

/* ---- Table ---- */
.table-wrapper { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: .9rem; }
thead th {
  padding: 12px 16px; text-align: left;
  font-size: .75rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: var(--gray-500);
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}
tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
}
tbody tr:hover td { background: var(--gray-50); }
tbody tr:last-child td { border-bottom: none; }

/* ---- Stats Cards ---- */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-bottom: 28px; }
.stat-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
}
.stat-label { font-size: .8rem; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; }
.stat-value { font-size: 1.8rem; font-weight: 700; color: var(--navy); }
.stat-sub   { font-size: .8rem; color: var(--gray-500); margin-top: 4px; }
.stat-icon  {
  width: 40px; height: 40px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-bottom: 14px;
}
.stat-icon.amber { background: var(--amber-light); }
.stat-icon.blue  { background: var(--blue-light); }
.stat-icon.green { background: var(--green-light); }
.stat-icon.navy  { background: rgba(15,27,45,.08); }

/* ---- Admin Sidebar ---- */
.admin-layout { display: grid; grid-template-columns: 240px 1fr; min-height: calc(100vh - 64px); }
.sidebar {
  background: var(--navy);
  padding: 24px 16px;
}
.sidebar-menu { display: flex; flex-direction: column; gap: 4px; }
.sidebar-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: var(--radius-sm);
  color: rgba(255,255,255,.65);
  font-size: .9rem; font-weight: 500;
  transition: var(--transition);
}
.sidebar-item:hover, .sidebar-item.active {
  background: rgba(255,255,255,.1);
  color: var(--white);
}
.sidebar-item.active { color: var(--amber); }
.sidebar-section-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.3);
  padding: 16px 14px 6px;
}
.admin-content { padding: 32px; }
.page-title { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.page-subtitle { font-size: .9rem; color: var(--gray-500); margin-bottom: 28px; }

/* ---- Booking Summary ---- */
.booking-summary {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: var(--white);
}
.summary-row {
  display: flex; justify-content: space-between;
  align-items: center; padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: .9rem;
}
.summary-row:last-child { border-bottom: none; }
.summary-row .label  { color: rgba(255,255,255,.65); }
.summary-row .value  { font-weight: 600; }
.summary-total {
  display: flex; justify-content: space-between;
  align-items: center; padding-top: 16px; margin-top: 8px;
  border-top: 2px solid var(--amber);
}
.summary-total .label { font-size: 1rem; font-weight: 600; }
.summary-total .value { font-size: 1.3rem; font-weight: 700; color: var(--amber); }

/* ---- Payment Page ---- */
.payment-methods { display: flex; flex-direction: column; gap: 10px; }
.payment-method {
  display: flex; align-items: center; gap: 14px;
  padding: 16px; border-radius: var(--radius);
  border: 1.5px solid var(--gray-200); cursor: pointer;
  transition: var(--transition);
}
.payment-method:hover, .payment-method.active {
  border-color: var(--amber); background: var(--amber-light);
}

/* ---- Progress Steps ---- */
.progress-steps {
  display: flex; align-items: center;
  margin-bottom: 32px; gap: 0;
}
.step {
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; font-weight: 500;
  color: var(--gray-400);
  flex: 1;
}
.step.active { color: var(--navy); }
.step.done   { color: var(--green); }
.step-num {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700; flex-shrink: 0;
}
.step.done .step-num { background: var(--green); border-color: var(--green); color: var(--white); }
.step.active .step-num { background: var(--amber); border-color: var(--amber); color: var(--navy); }
.step-line { flex: 1; height: 2px; background: var(--gray-200); margin: 0 4px; }
.step-line.done { background: var(--green); }

/* ---- Ticket / Success ---- */
.ticket {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ticket-header {
  background: var(--navy);
  padding: 28px 32px;
  color: var(--white);
}
.ticket-header h2 { font-family: var(--font-serif); font-size: 1.4rem; margin-bottom: 4px; }
.ticket-body { padding: 28px 32px; }
.ticket-divider {
  display: flex; align-items: center; gap: 0;
  margin: 0 -32px; position: relative;
}
.ticket-divider::before {
  content: ''; flex: 1; height: 1px;
  border-top: 2px dashed var(--gray-200);
}
.ticket-circle {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gray-50); flex-shrink: 0;
  border: 1px solid var(--gray-200);
}
.ticket-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
.ticket-field .tf-label { font-size: .75rem; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: .04em; }
.ticket-field .tf-value { font-size: 1rem; font-weight: 600; color: var(--navy); margin-top: 2px; }

/* ---- Map Container ---- */
#map { height: 280px; border-radius: var(--radius); overflow: hidden; }

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-muted  { color: var(--gray-500); font-size: .9rem; }
.text-amber  { color: var(--amber); }
.text-navy   { color: var(--navy); }
.text-green  { color: var(--green); }
.text-red    { color: var(--red); }
.font-bold   { font-weight: 700; }
.mt-1 { margin-top: 6px; }
.mt-2 { margin-top: 12px; }
.mt-3 { margin-top: 20px; }
.mt-4 { margin-top: 28px; }
.mt-6 { margin-top: 40px; }
.mb-1 { margin-bottom: 6px; }
.mb-2 { margin-bottom: 12px; }
.mb-3 { margin-bottom: 20px; }
.mb-4 { margin-bottom: 28px; }
.gap-2 { gap: 12px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.w-100 { width: 100%; }
.divider { height: 1px; background: var(--gray-200); margin: 20px 0; }

/* ---- Footer ---- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.6);
  padding: 40px 0 24px;
  margin-top: 80px;
}
.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.3rem; color: var(--white);
  margin-bottom: 8px;
}
.footer-copy { font-size: .8rem; text-align: center; margin-top: 32px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .search-form { grid-template-columns: 1fr; }
  .form-row    { grid-template-columns: 1fr; }
  .schedule-card { grid-template-columns: 1fr; }
  .admin-layout  { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .ticket-grid { grid-template-columns: 1fr; }
  .hero { padding: 50px 0 70px; }
  .search-card { padding: 24px 20px; border-radius: var(--radius-lg); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .container  { padding: 0 14px; }
  .navbar-inner { padding: 0 14px; }
}

/* ---- Mobile Nav Toggle ---- */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,.75);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- Admin Mobile ---- */
@media (max-width: 900px) {
  .admin-layout { grid-template-columns: 1fr; }
  .sidebar {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    padding: 10px 12px;
    gap: 6px;
  }
  .sidebar-menu { flex-direction: row; gap: 4px; flex-wrap: nowrap; min-width: max-content; }
  .sidebar-section-label { display: none; }
  .admin-content { padding: 20px 16px; }
}

/* ---- Print styles ---- */
@media print {
  .navbar, .footer, .btn, .no-print { display: none !important; }
  body { background: white !important; }
  .card { box-shadow: none !important; border: 1px solid #ddd !important; }
  .booking-summary { background: #1E293B !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}

/* ---- Kbd ---- */
kbd {
  display: inline-block;
  padding: 2px 6px;
  font-size: .78rem;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  background: var(--gray-100);
  font-family: var(--font-sans);
}

/* ---- Sticky header for tables ---- */
.table-sticky thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--gray-50);
}

/* ---- Loading spinner ---- */
.spinner {
  width: 20px; height: 20px;
  border: 2px solid var(--gray-200);
  border-top-color: var(--amber);
  border-radius: 50%;
  animation: spin .6s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Toast notification ---- */
.toast {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-size: .9rem;
  z-index: 9999;
  animation: toastIn .3s ease;
  max-width: 320px;
}
@keyframes toastIn { from { opacity:0; transform: translateY(20px); } to { opacity:1; transform: translateY(0); } }
