/* ============================================================
   TravelCMS Pro — Admin Panel
   Main Stylesheet
   Version: 1.0
   ============================================================ */

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

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --brand:       #1A6B8A;
  --brand-dark:  #155a74;
  --brand-deep:  #0e3f53;
  --accent:      #E07B1A;
  --accent-dark: #c96a0e;
  --dark:        #1A252F;
  --dark-2:      #111b23;
  --lt-blue:     #EBF5FA;
  --lt-blue-2:   #D6EAF8;
  --success:     #1E7E4E;
  --danger:      #C0392B;
  --warn:        #d4a017;
  --purple:      #8e44ad;
  --pink:        #c0185c;
  --indigo:      #3b4fc8;
  --sidebar-w:   270px;
  --topbar-h:    68px;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --shadow-sm:   0 1px 6px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.12);
  --border:      #e8eef4;
  --text-muted:  #8a9bb0;
  --text-soft:   #5a6a7e;
  --bg:          #f0f4f7;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Sora', sans-serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: 'DM Sans', sans-serif; }
input, select, textarea { font-family: 'DM Sans', sans-serif; }
img { max-width: 100%; }

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #e8eef2; }
::-webkit-scrollbar-thumb { background: var(--brand); border-radius: 99px; }

/* ── Layout Shell ──────────────────────────────────────────── */
.app-shell {
  display: flex;
  min-height: 100vh;
}

/* ── Sidebar ───────────────────────────────────────────────── */
.sidebar {
  width: var(--sidebar-w);
  background: var(--dark-2);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 100;
  overflow: hidden;
  transition: transform 0.3s ease, width 0.3s ease;
}

.sidebar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 280px;
  background: linear-gradient(180deg, var(--brand-deep) 0%, transparent 100%);
  opacity: 0.55;
  pointer-events: none;
}

/* Sidebar Logo */
.sidebar-logo {
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  flex-shrink: 0;
}

.sidebar-logo .logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(26,107,138,0.35);
}

.sidebar-logo .logo-text {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: white;
}
.sidebar-logo .logo-text span { color: var(--accent); }
.sidebar-logo .logo-version {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
  margin-top: 1px;
}

/* Sidebar Search */
.sidebar-search {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  flex-shrink: 0;
}
.sidebar-search .search-icon {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  opacity: 0.3;
  pointer-events: none;
}
.sidebar-search input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 9px 12px 9px 32px;
  color: white;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.sidebar-search input::placeholder { color: rgba(255,255,255,0.28); }
.sidebar-search input:focus {
  border-color: rgba(26,107,138,0.5);
  background: rgba(255,255,255,0.09);
}

/* Sidebar Nav */
.sidebar-nav {
  flex: 1;
  overflow-y: auto;
  padding: 10px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}
.sidebar-nav::-webkit-scrollbar { width: 3px; }
.sidebar-nav::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); }

.nav-section-label {
  padding: 14px 22px 5px;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.28);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 22px;
  color: rgba(255,255,255,0.52);
  cursor: pointer;
  transition: all 0.18s;
  font-size: 13.5px;
  font-weight: 500;
  position: relative;
  user-select: none;
}
.nav-item:hover {
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.05);
}
.nav-item.active {
  color: white;
  background: linear-gradient(90deg, rgba(26,107,138,0.45) 0%, rgba(26,107,138,0.12) 100%);
}
.nav-item.active::before {
  content: '';
  position: absolute;
  left: 0; top: 5px; bottom: 5px;
  width: 3px;
  background: var(--accent);
  border-radius: 0 4px 4px 0;
}

.nav-item .nav-icon {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 7px;
  font-size: 15px;
  flex-shrink: 0;
  transition: background 0.18s;
}
.nav-item.active .nav-icon {
  background: rgba(26,107,138,0.45);
}

.nav-item .nav-label { flex: 1; }

.nav-badge {
  background: var(--accent);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 99px;
  font-family: 'Sora', sans-serif;
  line-height: 1.4;
}
.nav-badge.green { background: var(--success); }
.nav-badge.red   { background: var(--danger); }

/* Sidebar Footer / User */
.sidebar-footer {
  padding: 14px 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.sidebar-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s;
}
.sidebar-user:hover { background: rgba(255,255,255,0.06); }
.sidebar-user .user-name  { font-size: 13px; font-weight: 600; color: white; }
.sidebar-user .user-role  { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 1px; }
.sidebar-user .user-dots  { margin-left: auto; color: rgba(255,255,255,0.28); font-size: 16px; }

/* ── Avatar ────────────────────────────────────────────────── */
.avatar {
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  color: white;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--brand), var(--accent));
}
.avatar-xs  { width: 26px; height: 26px; font-size: 10px; }
.avatar-sm  { width: 32px; height: 32px; font-size: 12px; }
.avatar-md  { width: 38px; height: 38px; font-size: 14px; }
.avatar-lg  { width: 46px; height: 46px; font-size: 16px; }
.avatar-xl  { width: 60px; height: 60px; font-size: 20px; }

/* ── Topbar ────────────────────────────────────────────────── */
.topbar {
  position: fixed;
  top: 0;
  left: var(--sidebar-w);
  right: 0;
  height: var(--topbar-h);
  background: white;
  display: flex;
  align-items: center;
  padding: 0 26px;
  gap: 14px;
  z-index: 90;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.topbar-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
}
.topbar-breadcrumb .crumb-home { font-weight: 500; }
.topbar-breadcrumb .crumb-sep  { opacity: 0.4; font-size: 11px; }
.topbar-breadcrumb .crumb-cur  { font-weight: 700; color: var(--dark); }

.topbar-search {
  flex: 1;
  max-width: 400px;
  margin-left: 20px;
  position: relative;
}
.topbar-search .search-icon {
  position: absolute;
  left: 12px; top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  opacity: 0.38;
  pointer-events: none;
}
.topbar-search input {
  width: 100%;
  padding: 9px 16px 9px 36px;
  border: 1.5px solid #e4ecf2;
  border-radius: 10px;
  font-size: 13.5px;
  background: #f6f9fc;
  outline: none;
  color: var(--dark);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.topbar-search input:focus {
  border-color: var(--brand);
  background: white;
  box-shadow: 0 0 0 4px rgba(26,107,138,0.09);
}
.topbar-search input::placeholder { color: var(--text-muted); }

.topbar-spacer { flex: 1; }

.topbar-actions { display: flex; align-items: center; gap: 6px; }

.tb-icon-btn {
  width: 38px; height: 38px;
  border: none;
  border-radius: 9px;
  background: #f0f4f8;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--text-soft);
  transition: all 0.18s;
  position: relative;
}
.tb-icon-btn:hover { background: var(--lt-blue); color: var(--brand); }
.tb-icon-btn .dot-badge {
  position: absolute;
  top: 7px; right: 7px;
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid white;
}

.topbar-divider {
  width: 1px; height: 28px;
  background: var(--border);
  margin: 0 6px;
}

.topbar-profile {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 5px 12px 5px 7px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
  border: 1.5px solid var(--border);
  margin-left: 4px;
}
.topbar-profile:hover { background: var(--lt-blue); border-color: var(--brand); }
.topbar-profile .profile-name { font-size: 13px; font-weight: 600; color: var(--dark); }
.topbar-profile .profile-role { font-size: 11px; color: var(--text-muted); }
.topbar-profile .profile-caret { font-size: 10px; color: var(--text-muted); margin-left: 2px; }

/* ── Main Content Area ─────────────────────────────────────── */
.main-content {
  margin-left: var(--sidebar-w);
  margin-top: var(--topbar-h);
  padding: 26px 28px;
  min-height: calc(100vh - var(--topbar-h));
  flex: 1;
}

/* ── Page Header ───────────────────────────────────────────── */
.page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
  gap: 16px;
}
.page-header-left h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
}
.page-header-left p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 3px;
}
.page-header-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* ── Card ──────────────────────────────────────────────────── */
.card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid #edf2f7;
  overflow: hidden;
}
.card:hover { box-shadow: var(--shadow-md); }
.card-header {
  padding: 18px 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.card-header-left .card-title {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}
.card-header-left .card-subtitle {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.card-body { padding: 18px 22px; }

/* ── Stat Card ─────────────────────────────────────────────── */
.stat-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid #edf2f7;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.stat-card .blob {
  position: absolute;
  top: -24px; right: -24px;
  width: 90px; height: 90px;
  border-radius: 50%;
  opacity: 0.06;
}

.stat-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.stat-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}

.stat-value {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 5px;
  font-weight: 500;
}
.stat-note {
  font-size: 11.5px;
  color: #b0bec5;
  margin-top: 3px;
}

/* ── Badges / Pills ────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 99px;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.4;
}
.badge-up   { background: #e8f8ef; color: var(--success); }
.badge-down { background: #fde8e8; color: var(--danger); }
.badge-warn { background: #fff8e6; color: #c57a00; }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 11.5px;
  font-weight: 700;
}
.status-pill::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
}
.status-pill.confirmed  { background: #e8f8ef; color: var(--success); }
.status-pill.confirmed::before  { background: var(--success); }
.status-pill.pending    { background: #fff8e6; color: #c57a00; }
.status-pill.pending::before    { background: #f0a500; }
.status-pill.cancelled  { background: #fde8e8; color: var(--danger); }
.status-pill.cancelled::before  { background: var(--danger); }
.status-pill.completed  { background: #eaecf8; color: var(--indigo); }
.status-pill.completed::before  { background: var(--indigo); }
.status-pill.refunded   { background: #f3eafb; color: var(--purple); }
.status-pill.refunded::before   { background: var(--purple); }

.type-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 700;
}
.type-chip.tour    { background: #eaf5fb; color: var(--brand); }
.type-chip.hotel   { background: #f3eafb; color: var(--purple); }
.type-chip.car     { background: #fef3e8; color: var(--accent); }
.type-chip.flight  { background: #e8f8ef; color: var(--success); }
.type-chip.package { background: #fde8f0; color: var(--pink); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  transition: all 0.18s;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: white;
  box-shadow: 0 3px 10px rgba(26,107,138,0.28);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(26,107,138,0.38); }

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: white;
  box-shadow: 0 3px 10px rgba(224,123,26,0.28);
}
.btn-accent:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(224,123,26,0.38); }

.btn-ghost {
  background: white;
  color: var(--brand);
  border: 1.5px solid var(--brand);
}
.btn-ghost:hover { background: var(--lt-blue); }

.btn-soft {
  background: var(--lt-blue);
  color: var(--brand);
  border: none;
}
.btn-soft:hover { background: var(--lt-blue-2); }

.btn-outline {
  background: white;
  color: var(--text-soft);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--brand); color: var(--brand); background: var(--lt-blue); }

.btn-danger {
  background: #fde8e8;
  color: var(--danger);
  border: none;
}
.btn-danger:hover { background: #fbd0d0; }

.btn-sm { padding: 6px 12px; font-size: 12px; border-radius: 7px; }
.btn-lg { padding: 12px 24px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

/* ── Form Elements ─────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 7px;
}
.form-label .required { color: var(--danger); margin-left: 2px; }

.form-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #dce4ed;
  border-radius: 9px;
  font-size: 14px;
  color: var(--dark);
  background: #f8fafc;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.form-input:focus {
  border-color: var(--brand);
  background: white;
  box-shadow: 0 0 0 4px rgba(26,107,138,0.1);
}
.form-input::placeholder { color: var(--text-muted); }

.form-select {
  width: 100%;
  padding: 11px 36px 11px 14px;
  border: 1.5px solid #dce4ed;
  border-radius: 9px;
  font-size: 14px;
  color: var(--dark);
  background: #f8fafc url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a9bb0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 14px center;
  -webkit-appearance: none;
  outline: none;
  transition: border-color 0.2s;
  cursor: pointer;
}
.form-select:focus { border-color: var(--brand); background-color: white; }

/* ── Table ─────────────────────────────────────────────────── */
.table-wrapper { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  padding: 11px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-bottom: 1px solid #f0f4f8;
  white-space: nowrap;
  background: #fafbfd;
}
.data-table td {
  padding: 13px 16px;
  font-size: 13.5px;
  color: var(--dark);
  border-bottom: 1px solid #f6f9fc;
  vertical-align: middle;
}
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover td { background: #fbfcfe; }
.data-table .td-id {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}
.data-table .td-amount { font-weight: 700; }
.data-table .td-amount.green { color: var(--success); }
.data-table .td-amount.red   { color: var(--danger); }
.data-table .td-date { color: var(--text-muted); font-size: 12.5px; }

/* ── Date Badge ────────────────────────────────────────────── */
.date-badge {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  padding: 7px 14px;
  font-size: 13px;
  color: var(--text-soft);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

/* ── Tab Pills ─────────────────────────────────────────────── */
.tab-pills { display: flex; gap: 3px; }
.tab-pill {
  padding: 5px 13px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--text-muted);
  transition: all 0.15s;
}
.tab-pill:hover { background: #f0f4f8; color: var(--dark); }
.tab-pill.active { background: var(--lt-blue); color: var(--brand); }

/* ── Link Button ───────────────────────────────────────────── */
.link-btn {
  background: none;
  border: none;
  color: var(--brand);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  font-family: 'DM Sans', sans-serif;
  transition: opacity 0.15s;
}
.link-btn:hover { opacity: 0.75; }

/* ── Action Cell Button ────────────────────────────────────── */
.action-btn {
  padding: 5px 11px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  background: white;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-soft);
  transition: all 0.15s;
}
.action-btn:hover { border-color: var(--brand); color: var(--brand); background: var(--lt-blue); }

/* ── Alert Bar ─────────────────────────────────────────────── */
.alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 13.5px;
  margin-bottom: 16px;
}
.alert-info    { background: var(--lt-blue); color: var(--brand-dark); border: 1px solid rgba(26,107,138,0.2); }
.alert-success { background: #e8f8ef; color: var(--success); border: 1px solid rgba(30,126,78,0.2); }
.alert-warn    { background: #fff8e6; color: #8a5900; border: 1px solid rgba(212,160,23,0.3); }
.alert-danger  { background: #fde8e8; color: var(--danger); border: 1px solid rgba(192,57,43,0.2); }

/* ── Divider ───────────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 20px 0; }
.divider-text {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #b0bec5;
  font-size: 12px;
  margin: 24px 0;
}
.divider-text::before, .divider-text::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e8eef2;
}

/* ── Empty State ───────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}
.empty-state .empty-icon { font-size: 48px; margin-bottom: 16px; }
.empty-state h3 { font-size: 16px; color: var(--dark); margin-bottom: 8px; }
.empty-state p  { font-size: 13.5px; }

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}

.anim-fade-up   { animation: fadeUp  0.4s ease both; }
.anim-fade-in   { animation: fadeIn  0.35s ease both; }
.anim-slide-in  { animation: slideInLeft 0.4s ease both; }

.delay-1 { animation-delay: 0.05s; }
.delay-2 { animation-delay: 0.1s;  }
.delay-3 { animation-delay: 0.15s; }
.delay-4 { animation-delay: 0.2s;  }

/* ── Utility ───────────────────────────────────────────────── */
.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between{ display: flex; align-items: center; justify-content: space-between; }
.flex-col    { display: flex; flex-direction: column; }
.gap-4       { gap: 4px; }
.gap-6       { gap: 6px; }
.gap-8       { gap: 8px; }
.gap-10      { gap: 10px; }
.gap-12      { gap: 12px; }
.gap-16      { gap: 16px; }
.gap-20      { gap: 20px; }
.fw-600      { font-weight: 600; }
.fw-700      { font-weight: 700; }
.fw-800      { font-weight: 800; }
.fs-11       { font-size: 11px; }
.fs-12       { font-size: 12px; }
.fs-13       { font-size: 13px; }
.fs-14       { font-size: 14px; }
.text-muted  { color: var(--text-muted); }
.text-brand  { color: var(--brand); }
.text-accent { color: var(--accent); }
.text-success{ color: var(--success); }
.text-danger { color: var(--danger); }
.mt-4  { margin-top: 4px; }
.mt-6  { margin-top: 6px; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mb-4  { margin-bottom: 4px; }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.w-full { width: 100%; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
