/* Travel Bazar Global - Main Styles */
/* Brand Colors: Red #E8192C, Cyan #00B4D8, Dark #1a1a2e */

:root {
    --primary:       #E8192C;
    --primary-dark:  #c0121f;
    --secondary:     #00B4D8;
    --secondary-dark:#0096b7;
    --accent:        #1a1a2e;
    --success:       #198754;
    --danger:        #dc3545;
    --warning:       #ffc107;
    --light:         #f8f9fa;
    --dark:          #1a1a2e;
    --sidebar-width: 270px;
    --border-radius: 0.5rem;
}

* { box-sizing: border-box; }
html { overflow-x: hidden; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background: #f0f2f5;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
}

/* ===== SIDEBAR ===== */
.sidebar {
    position: fixed;
    top: 0; left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: linear-gradient(180deg, var(--accent) 0%, #16213e 60%, #0f3460 100%);
    z-index: 1040;
    overflow-y: auto;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.2);
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.sidebar-brand .brand-logo {
    width: 42px; height: 42px;
    background: var(--primary);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 1rem; color: white;
    flex-shrink: 0;
}

.sidebar-brand .brand-text { line-height: 1.1; }
.sidebar-brand .brand-name { font-size: 0.85rem; font-weight: 700; color: white; display: block; }
.sidebar-brand .brand-tagline { font-size: 0.65rem; color: var(--secondary); display: block; }

.sidebar-nav { flex: 1; padding: 1rem 0; }

.sidebar-nav .nav-section {
    padding: 0.5rem 1rem 0.25rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
}

.sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1.25rem;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.sidebar-nav .nav-link:hover {
    color: white;
    background: rgba(255,255,255,0.08);
    border-left-color: var(--secondary);
}

.sidebar-nav .nav-link.active {
    color: white;
    background: rgba(232,25,44,0.2);
    border-left-color: var(--primary);
    font-weight: 600;
}

.sidebar-nav .nav-link i { width: 18px; text-align: center; font-size: 0.9rem; }

.sidebar-footer {
    padding: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.sidebar-user {
    display: flex; align-items: center; gap: 0.75rem;
}

.sidebar-user .avatar {
    width: 36px; height: 36px;
    background: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 0.9rem; flex-shrink: 0;
}

.sidebar-user .user-info .name { font-size: 0.8rem; font-weight: 600; color: white; }
.sidebar-user .user-info .role { font-size: 0.7rem; color: var(--secondary); }

.sidebar-close {
    display: none;
    position: absolute; top: 1rem; right: 1rem;
    background: none; border: none; color: white; font-size: 1.2rem; cursor: pointer;
}

.sidebar-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1039;
}

/* ===== MAIN WRAPPER ===== */
.main-wrapper {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    transition: margin 0.3s ease;
}

.topbar {
    background: white;
    padding: 0.75rem 1.5rem;
    display: flex; align-items: center; justify-content: space-between;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    position: sticky; top: 0; z-index: 100;
}

.topbar .page-title { font-size: 1.1rem; font-weight: 600; color: var(--dark); margin: 0; }

.topbar .topbar-actions { display: flex; align-items: center; gap: 0.75rem; }

.mobile-toggle {
    display: none;
    background: none; border: none;
    font-size: 1.3rem; color: var(--dark); cursor: pointer;
}

.main-content { padding: 1.5rem; }

/* ===== CARDS ===== */
.stat-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.25rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    display: flex; align-items: center; gap: 1rem;
    border-left: 4px solid var(--primary);
    transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.stat-card.secondary { border-left-color: var(--secondary); }
.stat-card.success   { border-left-color: var(--success); }
.stat-card.warning   { border-left-color: var(--warning); }

.stat-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; flex-shrink: 0;
}

.stat-icon.red    { background: rgba(232,25,44,0.1); color: var(--primary); }
.stat-icon.cyan   { background: rgba(0,180,216,0.1); color: var(--secondary); }
.stat-icon.green  { background: rgba(25,135,84,0.1); color: var(--success); }
.stat-icon.yellow { background: rgba(255,193,7,0.15); color: #856404; }

.stat-info .value { font-size: 1.6rem; font-weight: 700; color: var(--dark); line-height: 1; }
.stat-info .label { font-size: 0.8rem; color: #6c757d; margin-top: 0.2rem; }

.card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    border: none;
}

.card-header {
    background: white;
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 1.25rem;
    font-weight: 600;
    border-radius: var(--border-radius) var(--border-radius) 0 0 !important;
}

/* ===== PACKAGE CARDS (User side) ===== */
.package-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
    display: flex; flex-direction: column;
}

.package-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }

.package-card .pkg-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.package-card .pkg-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.package-card:hover .pkg-img img { transform: scale(1.05); }

.package-card .pkg-badge {
    position: absolute; top: 0.75rem; left: 0.75rem;
    background: var(--primary);
    color: white; font-size: 0.7rem; font-weight: 600;
    padding: 0.25rem 0.6rem; border-radius: 20px;
}

.package-card .pkg-flight-badge {
    position: absolute; top: 0.75rem; right: 0.75rem;
    background: var(--secondary);
    color: white; font-size: 0.7rem; font-weight: 600;
    padding: 0.25rem 0.6rem; border-radius: 20px;
}

.package-card .pkg-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.package-card .pkg-destination { font-size: 0.75rem; color: var(--secondary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.package-card .pkg-name { font-size: 1rem; font-weight: 700; color: var(--dark); margin: 0.25rem 0 0.5rem; }
.package-card .pkg-meta { display: flex; gap: 1rem; font-size: 0.8rem; color: #6c757d; margin-bottom: 0.75rem; }
.package-card .pkg-meta i { color: var(--primary); }
.package-card .pkg-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 0.75rem; border-top: 1px solid #f0f0f0; }
.package-card .pkg-price { font-size: 1.3rem; font-weight: 800; color: var(--primary); }
.package-card .pkg-price small { font-size: 0.7rem; font-weight: 400; color: #6c757d; display: block; }

/* ===== LOGIN PAGE ===== */
.auth-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--accent) 0%, #16213e 50%, #0f3460 100%);
    display: flex; align-items: center; justify-content: center;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.auth-page::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%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");
}

.auth-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    width: 100%; max-width: 420px;
    overflow: hidden;
    position: relative;
}

.auth-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 1.5rem 2rem;
    text-align: center;
    color: white;
}

.auth-header img {
    background: white;
    padding: 6px;
    border-radius: 10px;
    display: block;
    margin: 0 auto 0.75rem;
}

.auth-header h4 { font-weight: 700; margin: 0; font-size: 1.1rem; }
.auth-header p  { opacity: 0.85; font-size: 0.8rem; margin: 0.25rem 0 0; }

.auth-body { padding: 2rem; }

/* ===== USER SITE HERO ===== */
.hero-section {
    background: linear-gradient(135deg, var(--accent) 0%, #16213e 50%, #0f3460 100%);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute; bottom: -1px; left: 0; right: 0;
    height: 60px;
    background: #f0f2f5;
    clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-search-box {
    background: white;
    border-radius: 50px;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    display: flex; align-items: center; gap: 0.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    max-width: 600px; margin: 0 auto;
}

.hero-search-box input {
    flex: 1; border: none; outline: none;
    font-size: 0.95rem; color: var(--dark);
    background: transparent;
}

.hero-search-box .btn-search {
    background: var(--primary);
    color: white; border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 40px;
    font-weight: 600; cursor: pointer;
    transition: background 0.2s;
}

.hero-search-box .btn-search:hover { background: var(--primary-dark); }

/* ===== USER NAVBAR ===== */
.user-navbar {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky; top: 0; z-index: 200;
}

.user-navbar .navbar-brand .tbg-mark {
    background: var(--primary);
    color: white; font-weight: 900;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-size: 1rem;
    margin-right: 0.25rem;
}

.user-navbar .navbar-brand .brand-full {
    font-weight: 700; color: var(--dark); font-size: 0.9rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}
.btn-primary:hover, .btn-primary:focus {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}

.btn-tbg-cyan {
    background: var(--secondary);
    border-color: var(--secondary);
    color: white;
}
.btn-tbg-cyan:hover { background: var(--secondary-dark); border-color: var(--secondary-dark); color: white; }

.btn-outline-primary { color: var(--primary); border-color: var(--primary); }
.btn-outline-primary:hover { background: var(--primary); border-color: var(--primary); color: white; }

/* ===== TABLES ===== */
.table th { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: #6c757d; }
.table td { font-size: 0.875rem; vertical-align: middle; }

/* ===== BADGES ===== */
.badge-pending   { background: #fff3cd; color: #856404; }
.badge-confirmed { background: #d1e7dd; color: #0f5132; }
.badge-completed { background: #cff4fc; color: #055160; }
.badge-cancelled { background: #f8d7da; color: #842029; }
.badge-paid      { background: #d1e7dd; color: #0f5132; }
.badge-unpaid    { background: #f8d7da; color: #842029; }

/* ===== FORMS ===== */
.form-label { font-size: 0.85rem; font-weight: 600; color: #495057; }
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(232,25,44,0.15);
}

/* ===== PRICE BREAKDOWN ===== */
.price-breakdown {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid #e9ecef;
}

.price-breakdown .price-row {
    display: flex; justify-content: space-between;
    font-size: 0.875rem; padding: 0.25rem 0;
    color: #495057;
}

.price-breakdown .price-total {
    display: flex; justify-content: space-between;
    font-size: 1.1rem; font-weight: 700;
    color: var(--primary);
    padding-top: 0.5rem;
    border-top: 2px solid var(--primary);
    margin-top: 0.5rem;
}

/* ===== PAYMENT DEMO ===== */
.payment-card {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.payment-card:hover, .payment-card.selected {
    border-color: var(--primary);
    background: rgba(232,25,44,0.04);
}

.payment-card i { font-size: 2rem; color: var(--primary); margin-bottom: 0.5rem; }
.payment-card .method-name { font-weight: 600; font-size: 0.9rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .sidebar {
        transform: translateX(-100%);
    }
    .sidebar.show {
        transform: translateX(0);
    }
    .sidebar-close { display: block; }
    .sidebar-overlay.show { display: block; }
    .main-wrapper { margin-left: 0; }
    .mobile-toggle { display: block; }
}

@media (max-width: 575.98px) {
    .main-content { padding: 1rem; }
    .stat-card { padding: 1rem; }
    .stat-info .value { font-size: 1.3rem; }
}

/* ===== MISC ===== */
.page-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 1.5rem; flex-wrap: wrap; gap: 0.75rem;
}

.page-header h5 { font-weight: 700; color: var(--dark); margin: 0; }

.empty-state {
    text-align: center; padding: 3rem 1rem; color: #6c757d;
}

.empty-state i { font-size: 3rem; margin-bottom: 1rem; opacity: 0.4; }

img { max-width: 100%; height: auto; }

.alert-container { margin-bottom: 1rem; }

/* User site footer */
.site-footer {
    background: var(--accent);
    color: rgba(255,255,255,0.8);
    padding: 2rem 0 1rem;
    margin-top: 3rem;
}

.site-footer a { color: var(--secondary); text-decoration: none; }
.site-footer a:hover { color: white; }

/* ============================================================
   CUSTOMER MOBILE-FIRST LAYOUT (MakeMyTrip style)
   ============================================================ */

/* ----- Navbar ----- */
.user-navbar {
    position: sticky;
    top: 0;
    z-index: 300;
    background: white;
    box-shadow: 0 1px 6px rgba(0,0,0,0.1);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-left  { display: flex; align-items: center; gap: 0.75rem; }
.nav-right { display: flex; align-items: center; gap: 0.5rem; }

/* Hamburger */
.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.hamburger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Logo */
.nav-logo .logo-img {
    height: 36px;
    width: auto;
    display: block;
}

/* Nav action button */
.nav-action-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s;
}
.nav-action-btn:hover { background: #f5f5f5; color: #333; }

/* User pill with dropdown */
.nav-user-pill {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    border: 1px solid rgba(232,25,44,0.3);
    background: rgba(232,25,44,0.04);
    user-select: none;
}

.user-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    min-width: 180px;
    padding: 0.5rem 0;
    z-index: 400;
}

.nav-user-pill:hover .user-dropdown,
.nav-user-pill:focus-within .user-dropdown { display: block; }

.user-dropdown a {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    color: #333;
    text-decoration: none;
    transition: background 0.15s;
}
.user-dropdown a:hover { background: #f8f9fa; }

/* ----- Mobile Slide Menu ----- */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 500;
}
.mobile-menu-overlay.show { display: block; }

.mobile-slide-menu {
    position: fixed;
    top: 0; left: 0;
    width: 280px;
    height: 100vh;
    background: white;
    z-index: 600;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.mobile-slide-menu.open { transform: translateX(0); }

.slide-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    background: #f8f9fa;
}

.slide-close-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #666;
    cursor: pointer;
}

.slide-menu-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.slide-avatar {
    width: 42px; height: 42px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}

.slide-menu-user .fw-700 { color: white; }
.slide-menu-user small   { color: rgba(255,255,255,0.8); }

.slide-nav { padding: 0.5rem 0; flex: 1; }
.slide-nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
    font-size: 0.9rem;
    color: #333;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.15s;
}
.slide-nav a:hover { background: #f8f9fa; border-left-color: var(--primary); }
.slide-nav a i { width: 18px; text-align: center; color: var(--primary); }
.slide-nav a.text-danger i { color: var(--danger); }

/* ----- Bottom Nav (mobile) ----- */
.bottom-nav {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: white;
    border-top: 1px solid #e9ecef;
    display: flex;
    z-index: 200;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
}

.bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0;
    text-decoration: none;
    color: #6c757d;
    font-size: 0.65rem;
    font-weight: 600;
    gap: 3px;
    transition: color 0.2s;
}
.bottom-nav-item i { font-size: 1.1rem; }
.bottom-nav-item:hover,
.bottom-nav-item.active { color: var(--primary); }

/* ----- Hero Search ----- */
.tbg-hero {
    background: linear-gradient(135deg, var(--accent) 0%, #16213e 60%, #0f3460 100%);
    padding: 1rem;
}

.tbg-hero-inner { max-width: 700px; margin: 0 auto; }

.tbg-search-form { width: 100%; }

.tbg-search-bar {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 0.5rem 0.5rem 0.5rem 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    border: 2px solid transparent;
    transition: border-color 0.2s;
}
.tbg-search-bar:focus-within { border-color: var(--secondary); }

.tbg-search-icon { color: #aaa; margin-right: 0.5rem; flex-shrink: 0; }

.tbg-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.9rem;
    color: #333;
    background: transparent;
    min-width: 0;
}

.tbg-search-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.45rem 1.2rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s;
}
.tbg-search-btn:hover { background: var(--primary-dark); }

.tbg-search-clear {
    color: #aaa;
    padding: 0.4rem 0.75rem;
    text-decoration: none;
    font-size: 0.9rem;
}

/* ----- Page Body ----- */
.tbg-page-body {
    max-width: 900px;
    margin: 0 auto;
    padding: 0.75rem 0.75rem 1rem;
}

.tbg-section { margin-bottom: 1rem; }

.tbg-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}
.tbg-section-title { font-size: 0.95rem; font-weight: 700; color: #1a1a2e; margin: 0; }
.tbg-see-all { font-size: 0.8rem; color: var(--secondary); font-weight: 600; text-decoration: none; }

/* ----- Primary 4-tile grid ----- */
.tbg-primary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
}

.tbg-primary-tile {
    border-radius: 14px;
    padding: 1rem 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.tbg-primary-tile:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }

.tbg-primary-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.tbg-primary-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
}

/* ----- Services card (2×4 grid) ----- */
.tbg-services-card {
    background: white;
    border-radius: 14px;
    padding: 0.75rem 0.5rem 0.25rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.tbg-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.25rem;
}

.tbg-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.6rem 0.25rem;
    cursor: pointer;
    border-radius: 10px;
    transition: background 0.15s;
}
.tbg-service-item:hover { background: #f8f9fa; }

.tbg-service-icon-wrap {
    position: relative;
    font-size: 1.5rem;
    margin-bottom: 0.35rem;
    line-height: 1;
}

.tbg-new-badge {
    position: absolute;
    top: -6px; right: -10px;
    background: linear-gradient(135deg, #E8192C, #ff6b6b);
    color: white;
    font-size: 0.5rem;
    font-weight: 700;
    padding: 1px 4px;
    border-radius: 8px;
    text-transform: uppercase;
}

.tbg-service-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: #444;
    text-align: center;
    line-height: 1.2;
}

.tbg-services-more {
    text-align: center;
    padding: 0.5rem 0 0.25rem;
    color: var(--secondary);
    font-size: 0.9rem;
    cursor: pointer;
}

/* ----- Package Cards (horizontal scroll on mobile) ----- */
.tbg-packages-scroll {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 0.75rem;
}

@media (max-width: 575px) {
    .tbg-packages-scroll {
        display: flex;
        overflow-x: auto;
        gap: 0.75rem;
        padding-bottom: 0.5rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .tbg-packages-scroll::-webkit-scrollbar { display: none; }
}

.tbg-pkg-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    flex-shrink: 0;
    width: 240px;
    scroll-snap-align: start;
    transition: transform 0.2s, box-shadow 0.2s;
}

@media (min-width: 576px) {
    .tbg-pkg-card { width: auto; }
}

.tbg-pkg-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.1); }

.tbg-pkg-img {
    position: relative;
    height: 150px;
    overflow: hidden;
}
.tbg-pkg-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.tbg-pkg-card:hover .tbg-pkg-img img { transform: scale(1.05); }

.tbg-pkg-img-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.25);
    font-size: 2.5rem;
}

.tbg-pkg-dur {
    position: absolute; bottom: 0.5rem; left: 0.5rem;
    background: rgba(0,0,0,0.6);
    color: white; font-size: 0.65rem; font-weight: 700;
    padding: 0.2rem 0.5rem; border-radius: 20px;
}

.tbg-pkg-flight {
    position: absolute; top: 0.5rem; right: 0.5rem;
    background: var(--secondary);
    color: white; font-size: 0.65rem; font-weight: 700;
    padding: 0.2rem 0.5rem; border-radius: 20px;
}

.tbg-pkg-body { padding: 0.75rem; }

.tbg-pkg-dest {
    font-size: 0.7rem;
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.2rem;
}
.tbg-pkg-dest i { color: var(--primary); }

.tbg-pkg-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tbg-pkg-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.5rem;
    border-top: 1px solid #f0f0f0;
}

.tbg-pkg-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.tbg-pkg-per {
    font-size: 0.65rem;
    color: #999;
    margin-top: 1px;
}

.tbg-book-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}
.tbg-book-btn:hover { background: var(--primary-dark); color: white; }

/* ----- Empty state ----- */
.tbg-empty {
    text-align: center;
    padding: 2.5rem 1rem;
    color: #aaa;
}
.tbg-empty i { font-size: 2.5rem; margin-bottom: 0.75rem; display: block; }
.tbg-empty p { font-size: 0.9rem; margin: 0; }

/* ----- Responsive tweaks ----- */
@media (max-width: 400px) {
    .tbg-primary-grid { gap: 0.4rem; }
    .tbg-primary-tile { padding: 0.75rem 0.25rem; }
    .tbg-primary-icon { font-size: 1.6rem; }
    .tbg-primary-label { font-size: 0.65rem; }
    .tbg-services-grid { grid-template-columns: repeat(4, 1fr); }
    .tbg-service-icon-wrap { font-size: 1.3rem; }
    .tbg-service-label { font-size: 0.6rem; }
}

/* Admin sidebar logo fix */
.sidebar-brand img { object-fit: contain; }

/* ============================================================
   PUBLIC LAYOUT - MakeMyTrip Style
   ============================================================ */

/* ----- Public Navbar ----- */
.pub-navbar {
    position: sticky; top: 0; z-index: 300;
    background: white;
    box-shadow: 0 1px 6px rgba(0,0,0,0.1);
}

.pub-navbar-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.6rem 1rem; max-width: 1200px; margin: 0 auto;
}

.pub-nav-left  { display: flex; align-items: center; gap: 0.75rem; }
.pub-nav-right { display: flex; align-items: center; gap: 0.5rem; }

.pub-logo .logo-img { height: 38px; width: auto; display: block; }

.pub-nav-cats {
    display: flex; align-items: center; gap: 0;
    flex: 1; justify-content: center;
}

.pub-nav-cat {
    display: flex; flex-direction: column; align-items: center;
    padding: 0.5rem 0.75rem;
    font-size: 0.72rem; font-weight: 600; color: #555;
    text-decoration: none; border-bottom: 3px solid transparent;
    transition: all 0.2s; gap: 3px; white-space: nowrap;
}
.pub-nav-cat i { font-size: 1.1rem; }
.pub-nav-cat:hover { color: var(--primary); border-bottom-color: var(--primary); }
.pub-nav-cat.active { color: var(--primary); border-bottom-color: var(--primary); font-weight: 700; }

.pub-nav-btn {
    display: flex; align-items: center; gap: 0.4rem;
    font-size: 0.8rem; font-weight: 600; color: #333;
    text-decoration: none; padding: 0.35rem 0.75rem;
    border-radius: 20px; border: 1px solid #e0e0e0;
    transition: all 0.2s;
}
.pub-nav-btn:hover { background: #f5f5f5; color: #333; }

.pub-user-pill {
    position: relative; display: flex; align-items: center; gap: 0.4rem;
    font-size: 0.85rem; font-weight: 600; color: var(--primary);
    cursor: pointer; padding: 0.35rem 0.75rem;
    border-radius: 20px; border: 1px solid rgba(232,25,44,0.3);
    background: rgba(232,25,44,0.04); user-select: none;
}
.pub-user-pill:hover .user-dropdown { display: block; }

.pub-login-btn {
    display: flex; align-items: center; gap: 0.4rem;
    background: var(--primary); color: white;
    padding: 0.4rem 1rem; border-radius: 20px;
    font-size: 0.82rem; font-weight: 700; text-decoration: none;
    transition: background 0.2s; white-space: nowrap;
}
.pub-login-btn:hover { background: var(--primary-dark); color: white; }

/* Mobile category scroll */
.pub-cat-scroll {
    display: flex; overflow-x: auto; gap: 0.5rem;
    padding: 0.5rem 1rem; border-top: 1px solid #f0f0f0;
    scrollbar-width: none;
}
.pub-cat-scroll::-webkit-scrollbar { display: none; }

.pub-cat-chip {
    display: flex; align-items: center; gap: 0.4rem;
    white-space: nowrap; padding: 0.35rem 0.85rem;
    border-radius: 20px; font-size: 0.78rem; font-weight: 600;
    color: #555; text-decoration: none;
    border: 1px solid #e0e0e0; background: white;
    transition: all 0.2s; flex-shrink: 0;
}
.pub-cat-chip:hover, .pub-cat-chip.active {
    background: var(--primary); color: white; border-color: var(--primary);
}

/* Category tabs bar (desktop) */
.pub-cat-tabs-bar {
    background: white; border-bottom: 1px solid #e9ecef;
    padding: 0 1rem; overflow-x: auto; gap: 0;
    max-width: 100%; justify-content: center;
}
.pub-cat-tab {
    padding: 0.75rem 1.25rem; font-size: 0.82rem; font-weight: 600;
    color: #555; text-decoration: none; white-space: nowrap;
    border-bottom: 3px solid transparent; transition: all 0.2s;
}
.pub-cat-tab:hover { color: var(--primary); }
.pub-cat-tab.active { color: var(--primary); border-bottom-color: var(--primary); }

/* ----- Hero Search ----- */
.pub-hero {
    background: linear-gradient(135deg, var(--accent) 0%, #16213e 50%, #0f3460 100%);
    padding: 2rem 1rem 3rem;
    position: relative;
}

.pub-hero-content { max-width: 1100px; margin: 0 auto; }

.pub-hero-text { color: white; margin-bottom: 1.5rem; }
.pub-hero-text h2 { font-size: 2rem; font-weight: 800; margin: 0; }
.pub-hero-text p  { opacity: 0.8; margin: 0.25rem 0 0; }

.pub-search-box {
    background: white; border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    overflow: hidden;
}

.pub-search-fields {
    display: flex; align-items: stretch; flex-wrap: wrap;
}

.pub-search-field {
    flex: 1; min-width: 150px; padding: 0.75rem 1rem;
    border-right: 1px solid #f0f0f0;
    display: flex; flex-direction: column; gap: 4px;
}
.pub-search-field:last-of-type { border-right: none; }

.pub-search-field label {
    font-size: 0.7rem; font-weight: 700; color: #888;
    text-transform: uppercase; letter-spacing: 0.05em;
}

.pub-search-field input,
.pub-search-field select {
    border: none; outline: none; font-size: 0.95rem;
    font-weight: 600; color: #1a1a2e; background: transparent;
    padding: 0; width: 100%;
}

.pub-search-btn {
    background: var(--primary); color: white; border: none;
    padding: 1rem 2rem; font-weight: 800; font-size: 1rem;
    cursor: pointer; transition: background 0.2s; white-space: nowrap;
    border-radius: 0 12px 12px 0;
}
.pub-search-btn:hover { background: var(--primary-dark); }

@media (max-width: 767px) {
    .pub-search-fields { flex-direction: column; }
    .pub-search-field { border-right: none; border-bottom: 1px solid #f0f0f0; }
    .pub-search-btn { border-radius: 0 0 12px 12px; width: 100%; }
}

/* ----- Page body ----- */
.pub-body { padding: 1rem; }

/* ----- Banner carousel ----- */
.pub-banner-slide {
    height: 220px; display: flex; align-items: center;
    padding: 2rem;
}
@media (min-width: 768px) { .pub-banner-slide { height: 280px; } }

.pub-banner-text { color: white; }
.pub-banner-tag { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.8; margin-bottom: 0.5rem; }
.pub-banner-text h3 { font-size: 1.8rem; font-weight: 800; margin: 0 0 0.25rem; }
.pub-banner-text p  { opacity: 0.85; margin: 0 0 1rem; }
.pub-banner-btn {
    display: inline-block; background: white; color: var(--primary);
    padding: 0.5rem 1.5rem; border-radius: 25px; font-weight: 700;
    text-decoration: none; font-size: 0.85rem; transition: all 0.2s;
}
.pub-banner-btn:hover { background: var(--primary); color: white; }

/* ----- Section headers ----- */
.pub-section { }
.pub-section-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1rem; }
.pub-section-title { font-size: 1.1rem; font-weight: 800; color: #1a1a2e; margin: 0; }
.pub-section-sub   { font-size: 0.8rem; color: #888; margin: 0.2rem 0 0; }
.pub-section-arrows { display: flex; gap: 0.5rem; }
.pub-arrow-btn {
    width: 32px; height: 32px; border-radius: 50%;
    border: 1px solid #ddd; background: white; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; transition: all 0.2s;
}
.pub-arrow-btn:hover { background: var(--primary); color: white; border-color: var(--primary); }

/* ----- Destination scroll (last minute deals) ----- */
.pub-dest-scroll {
    display: flex; gap: 0.75rem; overflow-x: auto;
    padding-bottom: 0.5rem; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.pub-dest-scroll::-webkit-scrollbar { display: none; }

.pub-dest-card {
    flex-shrink: 0; width: 140px; border-radius: 12px;
    overflow: hidden; text-decoration: none; scroll-snap-align: start;
    position: relative; display: block;
}
@media (min-width: 768px) { .pub-dest-card { width: 180px; } }

.pub-dest-card img, .pub-dest-placeholder {
    width: 100%; height: 120px; object-fit: cover; display: block;
}
.pub-dest-placeholder { background: linear-gradient(135deg, #1a1a2e, #0f3460); }

.pub-dest-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white; font-size: 0.8rem; font-weight: 700;
    padding: 1.5rem 0.5rem 0.5rem;
}

/* ----- Theme grid ----- */
.pub-theme-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}
@media (min-width: 576px) { .pub-theme-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 992px) { .pub-theme-grid { grid-template-columns: repeat(5, 1fr); } }

.pub-theme-card {
    background: white; border-radius: 12px; padding: 1rem 0.5rem;
    text-align: center; text-decoration: none;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    border-top: 3px solid var(--theme-color, #E8192C);
}
.pub-theme-card:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,0.1); }
.pub-theme-icon { font-size: 1.8rem; color: var(--theme-color, #E8192C); margin-bottom: 0.5rem; }
.pub-theme-label { font-size: 0.75rem; font-weight: 700; color: #333; line-height: 1.2; }

/* ----- Filter card ----- */
.pub-filter-card {
    background: white; border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    overflow: hidden; position: sticky; top: 80px;
}
.pub-filter-header {
    background: #f8f9fa; padding: 0.75rem 1rem;
    font-weight: 700; font-size: 0.9rem;
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid #e9ecef;
}
.pub-filter-clear { font-size: 0.75rem; color: var(--primary); text-decoration: none; font-weight: 600; }
.pub-filter-group { padding: 0.75rem 1rem; border-bottom: 1px solid #f0f0f0; }
.pub-filter-title { font-size: 0.82rem; font-weight: 700; color: #333; margin-bottom: 0.5rem; }
.pub-filter-group .form-check-label { font-size: 0.82rem; }

.pub-star-btn {
    padding: 0.3rem 0.75rem; border-radius: 20px;
    border: 1px solid #ddd; font-size: 0.8rem; font-weight: 600;
    cursor: pointer; transition: all 0.2s; color: #555;
}
.pub-star-btn.active, .pub-star-btn:hover {
    background: var(--primary); color: white; border-color: var(--primary);
}

/* ----- Package list rows ----- */
.pub-pkg-list { display: flex; flex-direction: column; gap: 1rem; }

.pub-pkg-row {
    background: white; border-radius: 12px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.07);
    display: flex; overflow: hidden;
    transition: box-shadow 0.2s;
}
.pub-pkg-row:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.12); }

.pub-pkg-row-img {
    width: 220px; flex-shrink: 0; position: relative;
}
@media (max-width: 575px) { .pub-pkg-row-img { width: 120px; } }

.pub-pkg-row-img img, .pub-pkg-row-placeholder {
    width: 100%; height: 100%; object-fit: cover; display: block;
    min-height: 160px;
}
.pub-pkg-row-placeholder {
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.2); font-size: 2rem;
}

.pub-bestseller {
    position: absolute; top: 0.5rem; left: 0;
    background: #ffc107; color: #333; font-size: 0.65rem; font-weight: 700;
    padding: 0.2rem 0.6rem; border-radius: 0 4px 4px 0;
}
.pub-discount-badge {
    position: absolute; top: 0.5rem; right: 0.5rem;
    background: var(--primary); color: white; font-size: 0.65rem; font-weight: 700;
    padding: 0.2rem 0.5rem; border-radius: 4px;
}

.pub-pkg-row-body { flex: 1; padding: 1rem; display: flex; flex-direction: column; }
.pub-pkg-row-top  { flex: 1; display: flex; justify-content: space-between; gap: 0.5rem; }

.pub-pkg-row-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 0.4rem; }
.pub-tag-dur  { background: #1a1a2e; color: white; font-size: 0.65rem; font-weight: 700; padding: 0.15rem 0.5rem; border-radius: 4px; }
.pub-tag-dest { background: #e8f9fd; color: var(--secondary); font-size: 0.65rem; font-weight: 700; padding: 0.15rem 0.5rem; border-radius: 4px; }
.pub-tag-star { background: #fff3cd; color: #856404; font-size: 0.65rem; font-weight: 700; padding: 0.15rem 0.5rem; border-radius: 4px; }

.pub-pkg-row-name { font-size: 0.95rem; font-weight: 700; color: #1a1a2e; margin: 0 0 0.4rem; }

.pub-pkg-highlights { display: flex; flex-direction: column; gap: 2px; }
.pub-pkg-highlights span { font-size: 0.78rem; color: #555; }

.pub-wishlist-btn {
    background: none; border: none; color: #ccc; font-size: 1.2rem;
    cursor: pointer; flex-shrink: 0; transition: color 0.2s;
    padding: 0; height: fit-content;
}
.pub-wishlist-btn:hover, .pub-wishlist-btn.active { color: var(--primary); }

.pub-pkg-row-footer {
    display: flex; align-items: flex-end; justify-content: space-between;
    padding-top: 0.75rem; border-top: 1px solid #f0f0f0; margin-top: 0.5rem;
    flex-wrap: wrap; gap: 0.5rem;
}

.pub-orig-price { font-size: 0.8rem; color: #999; text-decoration: line-through; display: block; }
.pub-final-price { font-size: 1.3rem; font-weight: 800; color: var(--primary); }
.pub-per-person  { font-size: 0.75rem; color: #888; }
.pub-flight-incl { font-size: 0.72rem; color: var(--secondary); font-weight: 600; margin-top: 2px; }

.pub-pkg-row-actions { display: flex; gap: 0.5rem; align-items: center; }

.pub-view-btn {
    padding: 0.45rem 1rem; border-radius: 20px;
    border: 1px solid var(--primary); color: var(--primary);
    font-size: 0.8rem; font-weight: 700; text-decoration: none;
    transition: all 0.2s; white-space: nowrap;
}
.pub-view-btn:hover { background: var(--primary); color: white; }

.pub-book-btn {
    padding: 0.45rem 1.2rem; border-radius: 20px;
    background: var(--primary); color: white;
    font-size: 0.8rem; font-weight: 700; text-decoration: none;
    transition: background 0.2s; white-space: nowrap; border: none; cursor: pointer;
}
.pub-book-btn:hover { background: var(--primary-dark); color: white; }

.pub-empty {
    text-align: center; padding: 3rem 1rem; color: #aaa;
    background: white; border-radius: 12px;
}
.pub-empty i { font-size: 3rem; display: block; margin-bottom: 1rem; }

/* ----- Package Detail ----- */
.pkg-detail-topbar {
    background: white; border-bottom: 1px solid #e9ecef;
    padding: 0.75rem 0; position: sticky; top: 0; z-index: 200;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.pkg-gallery { display: grid; grid-template-columns: 1fr; gap: 0.5rem; }
@media (min-width: 768px) { .pkg-gallery { grid-template-columns: 2fr 1fr; } }

.pkg-gallery-main { position: relative; border-radius: 12px; overflow: hidden; }
.pkg-gallery-main img { width: 100%; height: 320px; object-fit: cover; display: block; }
.pkg-gallery-placeholder { width: 100%; height: 320px; background: linear-gradient(135deg,#1a1a2e,#0f3460); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.2); font-size: 4rem; }

.pkg-gallery-btn {
    position: absolute; bottom: 1rem; left: 1rem;
    background: rgba(0,0,0,0.6); color: white; border: none;
    padding: 0.4rem 1rem; border-radius: 6px; font-size: 0.8rem;
    font-weight: 700; cursor: pointer; transition: background 0.2s;
}
.pkg-gallery-btn:hover { background: rgba(0,0,0,0.85); }

.pkg-gallery-thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.pkg-gallery-thumb { position: relative; border-radius: 8px; overflow: hidden; cursor: pointer; }
.pkg-gallery-thumb img { width: 100%; height: 100px; object-fit: cover; display: block; transition: transform 0.2s; }
.pkg-gallery-thumb:hover img { transform: scale(1.05); }
.pkg-gallery-more { position: absolute; inset: 0; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 1.2rem; }

.pkg-tabs .nav-link { color: #555; font-weight: 600; font-size: 0.9rem; }
.pkg-tabs .nav-link.active { color: var(--primary); border-bottom-color: var(--primary); }

.pkg-itinerary { display: flex; flex-direction: column; gap: 0; }
.pkg-day-block { display: flex; gap: 1rem; padding: 0.75rem 0; border-bottom: 1px solid #f0f0f0; }
.pkg-day-marker { flex-shrink: 0; }
.pkg-day-dot { background: var(--primary); color: white; font-size: 0.7rem; font-weight: 700; padding: 0.25rem 0.6rem; border-radius: 20px; white-space: nowrap; }
.pkg-day-content { flex: 1; }
.pkg-day-detail { padding: 0.25rem 0 0.25rem 2rem; font-size: 0.85rem; color: #555; }

.pkg-flight-section { background: #f8f9fa; border-radius: 10px; padding: 1rem; }
.pkg-flight-list { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 0.5rem; }
.pkg-flight-row {
    background: white; border-radius: 8px; padding: 0.75rem;
    display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
    border: 1px solid #e9ecef; transition: border-color 0.2s;
    cursor: pointer;
}
.pkg-flight-row:hover { border-color: var(--secondary); }
.pkg-flight-row.selected { border-color: var(--secondary); background: #e8f9fd; }
.pkg-flight-select { display: flex; align-items: center; }
.pkg-flight-select input[type="radio"] {
    width: 18px; height: 18px; cursor: pointer; accent-color: var(--secondary);
}
.pkg-flight-select .radio-label {
    display: none;
}
.pkg-flight-route { font-size: 0.9rem; }
.pkg-flight-info  { font-size: 0.78rem; color: #888; display: flex; flex-direction: column; gap: 2px; }
.pkg-flight-price { font-weight: 700; color: var(--primary); margin-left: auto; }

.pkg-inc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.pkg-inc-list li { font-size: 0.85rem; color: #444; }

.pkg-policy-block { padding: 0.75rem 0; border-bottom: 1px solid #f0f0f0; }
.pkg-policy-block h6 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.25rem; }

.pkg-book-sidebar {
    background: white; border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 1.25rem; border: 1px solid #e9ecef;
}
.pkg-sidebar-orig  { font-size: 0.85rem; color: #999; text-decoration: line-through; margin-bottom: 0.25rem; }
.pkg-sidebar-price { font-size: 1.8rem; font-weight: 800; color: var(--primary); line-height: 1; }
.pkg-sidebar-price span { font-size: 0.85rem; font-weight: 400; color: #888; }
.pkg-sidebar-flight { background: #e8f9fd; color: var(--secondary); font-size: 0.8rem; font-weight: 600; padding: 0.4rem 0.75rem; border-radius: 6px; margin-bottom: 0.75rem; }
.pkg-sidebar-features { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 0.75rem; }
.pkg-sidebar-features div { font-size: 0.8rem; color: #555; display: flex; align-items: center; gap: 0.5rem; }
.pkg-sidebar-summary { font-size: 0.82rem; }

/* Search packages page */
.search-hero { background: linear-gradient(135deg,var(--accent),#0f3460); padding: 1.5rem 1rem; }

/* ============================================================
   BOOKING FLOW - Steps, Flight Selection, Payment
   ============================================================ */

/* Step indicator */
.booking-steps {
    display: flex; align-items: center; justify-content: center;
    gap: 0; margin-bottom: 1.5rem;
}
.booking-step {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.booking-step .step-num {
    width: 36px; height: 36px; border-radius: 50%;
    background: #e9ecef; color: #888; font-weight: 700; font-size: 0.9rem;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
}
.booking-step.active .step-num { background: var(--primary); color: white; }
.booking-step.done .step-num   { background: var(--success); color: white; }
.booking-step .step-label { font-size: 0.72rem; font-weight: 600; color: #888; }
.booking-step.active .step-label { color: var(--primary); }
.booking-step-line { flex: 1; height: 2px; background: #e9ecef; min-width: 40px; max-width: 80px; }

/* Flight options grid */
.flight-change-note {
    background: #e8f9fd; color: #055160; font-size: 0.8rem;
    padding: 0.5rem 0.75rem; border-radius: 6px; border-left: 3px solid var(--secondary);
}

.flight-options-grid {
    display: flex; flex-direction: column; gap: 0.5rem;
}

.flight-option-card {
    display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
    background: white; border: 2px solid #e9ecef; border-radius: 10px;
    padding: 0.75rem 1rem; cursor: pointer; transition: all 0.2s;
}
.flight-option-card:hover { border-color: var(--secondary); background: #f8fdff; }
.flight-option-card.selected { border-color: var(--secondary); background: #e8f9fd; }

.flight-opt-route { font-size: 0.9rem; flex: 1; }
.flight-opt-info  { font-size: 0.75rem; color: #888; display: flex; flex-direction: column; gap: 1px; }
.flight-opt-price { font-weight: 700; color: var(--primary); font-size: 0.9rem; }
.flight-opt-check { color: var(--secondary); font-size: 1.1rem; opacity: 0; transition: opacity 0.2s; }
.flight-option-card.selected .flight-opt-check { opacity: 1; }

/* Booking confirm summary */
.booking-confirm-summary {
    background: #f8f9fa; border-radius: 10px; padding: 1rem;
    border: 1px solid #e9ecef;
}

/* Payment cards */
.payment-card {
    border: 2px solid #e9ecef; border-radius: 10px; padding: 1rem;
    cursor: pointer; transition: all 0.2s; text-align: center;
    display: block;
}
.payment-card:hover, .payment-card.selected {
    border-color: var(--primary); background: rgba(232,25,44,0.04);
}
.payment-card i { font-size: 1.8rem; color: var(--primary); margin-bottom: 0.4rem; }
.payment-card .method-name { font-size: 0.8rem; font-weight: 600; color: #333; }

/* ── Flight option card improvements ── */
.flight-option-card {
    position: relative;
    cursor: pointer;
}

.flight-option-card.selected {
    border-color: var(--secondary);
    background: linear-gradient(135deg, #e8f9fd, #f0fdff);
    box-shadow: 0 2px 8px rgba(0,180,216,0.15);
}

.flight-option-card.selected .flight-opt-price {
    color: var(--secondary);
    font-size: 1rem;
}

.flight-opt-route {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 0.95rem;
    flex: 1;
    min-width: 160px;
}

.flight-opt-price {
    font-weight: 800;
    color: var(--primary);
    font-size: 0.95rem;
    white-space: nowrap;
}

/* Price breakdown improvements */
.price-breakdown .price-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    padding: 0.3rem 0;
    color: #555;
    border-bottom: 1px solid #f5f5f5;
}

.price-breakdown .price-row:last-of-type { border-bottom: none; }

.price-breakdown .price-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    padding-top: 0.6rem;
    border-top: 2px solid var(--primary);
    margin-top: 0.4rem;
}

/* ============================================================
   MMT-STYLE BOOKING PAGE
   ============================================================ */

/* ── Sticky top bar ── */
.bk-topbar {
    background: #1a1a2e;
    padding: 0.6rem 0;
    position: sticky; top: 0; z-index: 250;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.bk-topbar-inner {
    display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
}
.bk-topbar-fields {
    display: flex; flex: 1; flex-wrap: wrap; gap: 0;
    background: white; border-radius: 8px; overflow: hidden;
}
.bk-topbar-field {
    flex: 1; min-width: 120px; padding: 0.5rem 1rem;
    border-right: 1px solid #f0f0f0; cursor: pointer;
    transition: background 0.15s;
}
.bk-topbar-field:hover { background: #f8f9fa; }
.bk-topbar-field:last-child { border-right: none; }
.bk-tf-label { font-size: 0.6rem; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 0.08em; }
.bk-tf-val   { font-size: 0.9rem; font-weight: 700; color: #1a1a2e; }
.bk-search-btn {
    background: var(--primary); color: white; border: none;
    padding: 0.6rem 1.5rem; border-radius: 8px; font-weight: 800;
    font-size: 0.9rem; text-decoration: none; white-space: nowrap;
    transition: background 0.2s;
}
.bk-search-btn:hover { background: var(--primary-dark); color: white; }

/* ── Guest popup ── */
.guest-popup-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.3); z-index: 400;
}
.guest-popup {
    position: fixed; top: 60px; left: 50%; transform: translateX(-50%);
    background: white; border-radius: 12px; width: 340px; max-width: 95vw;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2); z-index: 500;
    display: none; flex-direction: column;
}
.guest-popup.open { display: flex; }
.guest-popup-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.75rem 1rem; border-bottom: 1px solid #f0f0f0;
    font-weight: 700; font-size: 0.9rem;
}
.guest-popup-close { background: none; border: none; font-size: 1.1rem; cursor: pointer; color: #666; }
.guest-popup-body  { padding: 0.75rem 1rem; max-height: 60vh; overflow-y: auto; }
.guest-popup-footer {
    display: flex; gap: 0.5rem; padding: 0.75rem 1rem;
    border-top: 1px solid #f0f0f0; justify-content: space-between;
}

.guest-room-block { margin-bottom: 1rem; }
.guest-room-header {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 0.75rem; font-weight: 700; color: #888;
    text-transform: uppercase; margin-bottom: 0.4rem;
}
.guest-room-note { font-size: 0.72rem; color: var(--primary); margin-bottom: 0.5rem; }
.guest-counter-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.5rem 0; border-bottom: 1px solid #f5f5f5;
}
.guest-counter {
    display: flex; align-items: center; gap: 0.75rem;
}
.guest-counter button {
    width: 28px; height: 28px; border-radius: 50%;
    border: 1px solid #ddd; background: white; font-size: 1rem;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all 0.15s; font-weight: 700; color: var(--primary);
}
.guest-counter button:hover { background: var(--primary); color: white; border-color: var(--primary); }
.guest-counter span { font-size: 1rem; font-weight: 700; min-width: 24px; text-align: center; }

.child-ages-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.child-age-input label { font-size: 0.7rem; color: #888; display: block; }
.child-age-input select { font-size: 0.8rem; padding: 0.2rem 0.4rem; border: 1px solid #ddd; border-radius: 4px; }

/* ── Booking card ── */
.bk-card { border: none; box-shadow: 0 1px 6px rgba(0,0,0,0.07); border-radius: 12px; }

/* ── Day plan ── */
.bk-plan-header {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f0f0f0;
    background: #f8f9fa;
    border-radius: 12px 12px 0 0;
}
.bk-plan-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.bk-plan-tab {
    background: #1a1a2e; color: white; font-size: 0.75rem; font-weight: 700;
    padding: 0.3rem 0.75rem; border-radius: 20px;
}
.bk-plan-tab-info {
    background: #e9ecef; color: #555; font-size: 0.75rem; font-weight: 600;
    padding: 0.3rem 0.75rem; border-radius: 20px;
}

.bk-day-plan { padding: 0; }
.bk-day-row {
    display: flex; gap: 0; border-bottom: 1px solid #f5f5f5;
}
.bk-day-row:last-child { border-bottom: none; }

.bk-day-sidebar {
    width: 90px; flex-shrink: 0; padding: 1rem 0.75rem;
    border-right: 1px solid #f0f0f0; text-align: center;
}
.bk-day-dot {
    background: #e9ecef; color: #555; font-size: 0.7rem; font-weight: 700;
    padding: 0.25rem 0.5rem; border-radius: 20px; display: inline-block; margin-bottom: 0.3rem;
}
.bk-day-dot.active { background: var(--primary); color: white; }
.bk-day-date { font-size: 0.65rem; color: #888; }

.bk-day-content { flex: 1; padding: 1rem; }
.bk-day-title { font-weight: 700; font-size: 0.9rem; margin-bottom: 0.5rem; color: #1a1a2e; }
.bk-day-item  { font-size: 0.82rem; color: #555; margin-bottom: 0.25rem; }

/* ── Inline flight block ── */
.bk-inline-flight, .bk-inline-hotel {
    background: #f8f9fa; border-radius: 8px; padding: 0.75rem;
    margin-top: 0.75rem; border: 1px solid #e9ecef;
}
.bk-inline-label {
    font-size: 0.65rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.08em; color: #888; margin-bottom: 0.4rem;
}
.bk-inline-content {
    display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; flex-wrap: wrap;
}
.bk-flight-selected { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; flex: 1; }
.bk-flight-route    { display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; }
.bk-flight-arrow    { color: #aaa; font-size: 0.8rem; }
.bk-flight-time     { font-size: 0.75rem; color: #888; }
.bk-flight-airline  { font-size: 0.72rem; color: #aaa; }
.bk-flight-price    { font-weight: 800; color: var(--primary); white-space: nowrap; }
.bk-hotel-extra     { font-size: 0.75rem; color: var(--secondary); font-weight: 600; }

.bk-change-btn {
    background: none; border: 1px solid var(--primary); color: var(--primary);
    font-size: 0.72rem; font-weight: 700; padding: 0.25rem 0.6rem;
    border-radius: 4px; cursor: pointer; white-space: nowrap;
    transition: all 0.15s; flex-shrink: 0;
}
.bk-change-btn:hover { background: var(--primary); color: white; }

/* ── Flight / Hotel panels ── */
.bk-flight-panel, .bk-hotel-panel {
    margin-top: 0.75rem; border-top: 1px solid #e9ecef; padding-top: 0.75rem;
}
.bk-panel-title { font-size: 0.78rem; color: #555; margin-bottom: 0.5rem; }

.bk-flight-option, .bk-hotel-option {
    display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap;
    padding: 0.6rem 0.75rem; border: 2px solid #e9ecef; border-radius: 8px;
    margin-bottom: 0.4rem; cursor: pointer; transition: all 0.15s;
    background: white;
}
.bk-flight-option:hover, .bk-hotel-option:hover { border-color: var(--secondary); background: #f0fdff; }
.bk-flight-option.selected, .bk-hotel-option.selected { border-color: var(--secondary); background: #e8f9fd; }

.bk-fo-route { display: flex; align-items: center; gap: 0.4rem; flex: 1; font-size: 0.9rem; }
.bk-fo-info  { font-size: 0.72rem; color: #888; display: flex; flex-direction: column; gap: 1px; }
.bk-fo-price { font-weight: 800; color: var(--primary); font-size: 0.9rem; white-space: nowrap; }
.bk-fo-check { color: var(--secondary); font-size: 1rem; opacity: 0; transition: opacity 0.15s; }
.bk-flight-option.selected .bk-fo-check,
.bk-hotel-option.selected  .bk-fo-check { opacity: 1; }

.bk-ho-info  { flex: 1; }
.bk-ho-price { font-weight: 700; color: var(--primary); font-size: 0.85rem; white-space: nowrap; }

/* ── Price sidebar ── */
.bk-price-sidebar {
    background: white; border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 1.25rem; border: 1px solid #e9ecef;
}
.bk-sidebar-orig  { font-size: 0.85rem; color: #999; text-decoration: line-through; margin-bottom: 0.25rem; }
.bk-sidebar-price { font-size: 1.8rem; font-weight: 800; color: var(--primary); line-height: 1; }
.bk-sidebar-price span { font-size: 0.85rem; font-weight: 400; color: #888; }
.bk-sidebar-flight-incl {
    background: #e8f9fd; color: var(--secondary); font-size: 0.78rem;
    font-weight: 600; padding: 0.4rem 0.75rem; border-radius: 6px; margin-bottom: 0.5rem;
}
.bk-sidebar-features { display: flex; flex-direction: column; gap: 0.4rem; }
.bk-sidebar-features div { font-size: 0.8rem; color: #555; display: flex; align-items: center; gap: 0.5rem; }

/* ── Confirm summary ── */
.bk-confirm-summary { background: #f8f9fa; border-radius: 10px; padding: 1rem; border: 1px solid #e9ecef; }
.bk-sum-row  { display: flex; justify-content: space-between; font-size: 0.85rem; padding: 0.3rem 0; border-bottom: 1px solid #f0f0f0; color: #555; }
.bk-sum-total{ display: flex; justify-content: space-between; font-size: 1.1rem; font-weight: 800; color: var(--primary); padding-top: 0.6rem; border-top: 2px solid var(--primary); margin-top: 0.4rem; }

/* ── Mobile ── */
@media (max-width: 767px) {
    .bk-topbar-fields { flex-direction: column; }
    .bk-topbar-field  { border-right: none; border-bottom: 1px solid #f0f0f0; }
    .bk-day-sidebar   { width: 70px; padding: 0.75rem 0.5rem; }
    .bk-search-btn    { width: 100%; text-align: center; border-radius: 0 0 8px 8px; }
}

/* ============================================================
   FLIGHT & HOTEL DRAWERS
   ============================================================ */

/* Overlay */
.bk-drawer-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.5); z-index: 600;
}
.bk-drawer-overlay.open { display: block; }

/* Drawer base */
.bk-drawer {
    position: fixed; top: 0; right: -100%; bottom: 0;
    width: 520px; max-width: 100vw;
    background: white; z-index: 700;
    display: flex; flex-direction: column;
    transition: right 0.3s ease;
    box-shadow: -4px 0 24px rgba(0,0,0,0.15);
}
.bk-drawer.open { right: 0; }

.bk-drawer-header {
    display: flex; align-items: flex-start; justify-content: space-between;
    padding: 1rem 1.25rem; border-bottom: 1px solid #e9ecef;
    background: #f8f9fa; flex-shrink: 0;
}
.bk-drawer-close {
    background: none; border: none; font-size: 1.2rem;
    color: #666; cursor: pointer; padding: 0; line-height: 1;
}
.bk-drawer-body {
    flex: 1; overflow-y: auto; padding: 1rem;
}
.bk-drawer-section-title {
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; color: #888; margin-bottom: 0.75rem;
}

/* ── Flight drawer cards ── */
.bk-drawer-flight-card {
    border: 2px solid #e9ecef; border-radius: 12px;
    padding: 1rem; margin-bottom: 0.75rem;
    cursor: pointer; transition: all 0.2s;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 1rem; align-items: center;
}
.bk-drawer-flight-card:hover { border-color: var(--secondary); background: #f0fdff; }
.bk-drawer-flight-card.selected { border-color: var(--secondary); background: #e8f9fd; }

.bk-dfc-airline { display: flex; align-items: center; gap: 0.5rem; }
.bk-dfc-logo {
    width: 36px; height: 36px; background: #f0f2f5; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1rem;
}

.bk-dfc-route {
    display: flex; align-items: center; gap: 0.5rem;
}
.bk-dfc-point { text-align: center; }
.bk-dfc-time  { font-size: 1rem; font-weight: 800; color: #1a1a2e; }
.bk-dfc-city  { font-size: 0.75rem; color: #888; font-weight: 600; }

.bk-dfc-line {
    flex: 1; display: flex; align-items: center; gap: 2px;
    min-width: 60px;
}
.bk-dfc-dot  { width: 6px; height: 6px; border-radius: 50%; background: #ccc; flex-shrink: 0; }
.bk-dfc-dash { flex: 1; height: 1px; background: #ddd; }
.bk-dfc-plane { color: var(--primary); font-size: 0.8rem; flex-shrink: 0; }

.bk-dfc-price { text-align: right; }
.bk-dfc-default {
    background: var(--secondary); color: white; font-size: 0.6rem;
    font-weight: 700; padding: 0.1rem 0.4rem; border-radius: 4px;
    margin-top: 0.25rem; display: inline-block;
}
.bk-selected-badge {
    background: var(--secondary); color: white; font-size: 0.75rem;
    font-weight: 700; padding: 0.3rem 0.75rem; border-radius: 20px;
    display: inline-block;
}

/* ── Hotel drawer cards ── */
.bk-hotel-room-card {
    border: 2px solid #e9ecef; border-radius: 12px;
    margin-bottom: 1rem; overflow: hidden;
    transition: border-color 0.2s;
}
.bk-hotel-room-card.selected { border-color: var(--secondary); }

.bk-hrc-top {
    display: flex; gap: 0.75rem; padding: 1rem;
}
.bk-hrc-img {
    width: 100px; flex-shrink: 0; border-radius: 8px; overflow: hidden;
}
.bk-hrc-img-placeholder {
    width: 100%; height: 80px;
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.3); font-size: 1.5rem;
}
.bk-hrc-info { flex: 1; }
.bk-hrc-desc { margin-top: 0.25rem; }

.bk-hrc-meals {
    padding: 0.5rem 1rem; background: #f8f9fa;
    border-top: 1px solid #f0f0f0;
    display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.bk-hrc-meal-item { font-size: 0.78rem; color: #333; font-weight: 600; }

.bk-hrc-amenities {
    padding: 0.5rem 1rem;
    display: flex; flex-wrap: wrap; gap: 0.4rem;
    border-top: 1px solid #f0f0f0;
}
.bk-hrc-amenity {
    font-size: 0.72rem; color: #555;
    background: #f8f9fa; padding: 0.15rem 0.5rem;
    border-radius: 4px;
}

.bk-hrc-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.75rem 1rem; border-top: 1px solid #f0f0f0;
    background: #fafafa;
}

/* ── Inline flight/hotel display cards ── */
.bk-flight-card {
    display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.bk-fc-airline { font-size: 0.75rem; font-weight: 700; color: #888; min-width: 60px; }
.bk-fc-route   { display: flex; align-items: center; gap: 0.75rem; flex: 1; }
.bk-fc-city    { text-align: center; }
.bk-fc-time    { font-size: 0.95rem; font-weight: 800; color: #1a1a2e; }
.bk-fc-name    { font-size: 0.72rem; color: #888; }
.bk-fc-line    { color: var(--primary); font-size: 0.8rem; }
.bk-fc-price   { font-weight: 800; color: var(--primary); white-space: nowrap; }

.bk-hotel-card { }
.bk-hc-stars   { margin-bottom: 0.2rem; }
.bk-hc-room    { font-size: 0.95rem; }
.bk-hc-desc    { font-size: 0.78rem; }
.bk-hc-price   { font-size: 0.82rem; font-weight: 600; margin-top: 0.2rem; color: var(--primary); }

.bk-inline-actions {
    display: flex; gap: 0.75rem; align-items: center;
}
.bk-action-link {
    background: none; border: none; font-size: 0.78rem; font-weight: 700;
    cursor: pointer; padding: 0; text-decoration: none;
    transition: opacity 0.15s;
}
.bk-action-link:hover { opacity: 0.7; }

.bk-transport-note {
    font-size: 0.75rem; color: #888; margin-top: 0.5rem;
}
.bk-link-btn {
    background: none; border: none; color: var(--secondary);
    font-weight: 700; font-size: 0.75rem; cursor: pointer; padding: 0;
    text-decoration: underline;
}

/* ── Day collapsible ── */
.bk-day-toggle {
    cursor: pointer; user-select: none;
}
.bk-day-toggle:hover .bk-day-title { color: var(--primary); }
.bk-day-items-wrap { overflow: hidden; transition: max-height 0.3s ease; }

@media (max-width: 575px) {
    .bk-drawer { width: 100vw; }
    .bk-drawer-flight-card { grid-template-columns: 1fr 1fr; }
    .bk-dfc-route { display: none; }
}
