/* ============================================
   BIGHOLIDAYS - Same design system as WheelersFood
   (bh- prefix, ported from public/css/style.css)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700;800;900&display=swap');

@font-face {
    font-family: 'The Seasons';
    font-style: normal;
    font-weight: 400;
    src: url('/fonts/theseasons-reg.otf') format('opentype');
}
@font-face {
    font-family: 'The Seasons';
    font-style: normal;
    font-weight: 500;
    src: url('/fonts/theseasons-reg.otf') format('opentype');
}
@font-face {
    font-family: 'The Seasons';
    font-style: normal;
    font-weight: 700;
    src: url('/fonts/theseasons-bd.otf') format('opentype');
}
@font-face {
    font-family: 'The Seasons';
    font-style: normal;
    font-weight: 800;
    src: url('/fonts/theseasons-bd.otf') format('opentype');
}
@font-face {
    font-family: 'The Seasons';
    font-style: normal;
    font-weight: 900;
    src: url('/fonts/theseasons-bd.otf') format('opentype');
}
@font-face {
    font-family: 'The Seasons';
    font-style: normal;
    font-weight: 300;
    src: url('/fonts/theseasons-lt.otf') format('opentype');
}
@font-face {
    font-family: 'The Seasons';
    font-style: italic;
    font-weight: 400;
    src: url('/fonts/theseasons-it.otf') format('opentype');
}

@font-face {
    font-family: 'Quicksand';
    font-style: normal;
    font-weight: 300;
    src: url('/fonts/quicksand-lt.ttf') format('truetype');
}
@font-face {
    font-family: 'Quicksand';
    font-style: normal;
    font-weight: 400;
    src: url('/fonts/quicksand-reg.ttf') format('truetype');
}
@font-face {
    font-family: 'Quicksand';
    font-style: normal;
    font-weight: 500;
    src: url('/fonts/quicksand-md.ttf') format('truetype');
}
@font-face {
    font-family: 'Quicksand';
    font-style: normal;
    font-weight: 700;
    src: url('/fonts/quicksand-bd.ttf') format('truetype');
}

:root {
    --bh-primary: #d10000;
    --bh-primary-dark: #a30000;
    --bh-primary-light: #ff4444;
    --bh-yellow: #fabb00;
    --bh-yellow-light: #ffd54f;
    --bh-text-green: #388e3c;
    --bh-dark: #222222;
    --bh-bg: #ffffff;
    --bh-white: #ffffff;
    --bh-gray-50: #fafafa;
    --bh-gray-100: #f0f0f0;
    --bh-gray-200: #e0e0e0;
    --bh-gray-300: #bdbdbd;
    --bh-gray-400: #9e9e9e;
    --bh-gray-500: #757575;
    --bh-gray-600: #616161;
    --bh-gray-700: #555555;
    --bh-gray-800: #333333;
    --bh-success: #0f8a4f;
    --bh-warning: #e8a317;
    --bh-danger: #cc0000;
    --bh-shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
    --bh-shadow-sm: 0 2px 5px rgba(0,0,0,0.08);
    --bh-shadow: 0 4px 9px rgba(0,0,0,0.1);
    --bh-shadow-md: 0 6px 12px rgba(0,0,0,0.12);
    --bh-shadow-lg: 0 10px 20px rgba(0,0,0,0.14);
    --bh-radius-sm: 8px;
    --bh-radius: 12px;
    --bh-radius-lg: 16px;
    --bh-radius-xl: 20px;
    --bh-radius-full: 9999px;
    --bh-transition: all 0.2s ease;

    /* ===== Typography Scale ===== */
    --bh-font-h1: 32px;
    --bh-font-h2: 26px;
    --bh-font-h3: 20px;
    --bh-font-subheading: 17px;
    --bh-font-body: 15px;
    --bh-font-small: 13px;
    --bh-font-button: 15px;
    --bh-weight-h1: 700;
    --bh-weight-h2: 700;
    --bh-weight-h3: 600;
    --bh-weight-subheading: 500;
    --bh-weight-body: 400;
    --bh-weight-small: 400;
    --bh-weight-button: 600;
    --bh-linehead: 1.2;
    --bh-linebody: 1.5;
}

/* ============ RIPPLE ============ */
@keyframes bh-ripple {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 0.4; }
    100% { transform: translate(-50%, -50%) scale(4); opacity: 0; }
}

.bh-btn, .bh-card-add, .bh-sticky-cart-btn, .bh-login-btn {
    position: relative;
}

.bh-btn::after, .bh-card-add::after, .bh-sticky-cart-btn::after,
.bh-login-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.35);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
    opacity: 0;
}

.bh-btn:active::after, .bh-card-add:active::after,
.bh-sticky-cart-btn:active::after, .bh-login-btn:active::after {
    animation: bh-ripple 0.5s ease-out;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Roboto', sans-serif;
    font-size: var(--bh-font-body);
    font-weight: var(--bh-weight-body);
    background: #fcfcfc;
    color: var(--bh-dark);
    line-height: var(--bh-linebody);
    -webkit-font-smoothing: antialiased;
    margin: 0;
}

input, select, textarea, button, optgroup {
    font-family: inherit;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--bh-gray-300); border-radius: 3px; }

img { max-width: 100%; }

/* ============ HEADER (SVG design — same as WheelersFood) ============ */
.bh-header-wrapper {
    background-color: transparent;
    position: sticky;
    top: 0;
    width: 100%;
    padding-top: 0;
    margin: 0;
    z-index: 1000;
}

.bh-svg-header {
    position: relative;
    width: 100%;
    min-height: 0;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: visible;
}

.bh-header-bg-img { display: none; }

.bh-header-overlay {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    padding: 12px 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.bh-header-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    gap: 12px;
}

.bh-logo-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.bh-header-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.bh-header-actions-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bh-header-tabs-row {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    padding: 4px 0;
    overflow-x: auto;
    scrollbar-width: none;
}
.bh-header-tabs-row::-webkit-scrollbar { display: none; }

/* Logo Group — compact wordmark like production header */
.bh-logo-group .bh-logo-badge {
    width: 170px;
    height: 54px;
    background: none;
    border: none;
    border-radius: 10px;
    box-shadow: none;
    flex-shrink: 0;
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.bh-logo-badge img { width: 100%; height: 100%; object-fit: contain; }
.bh-logo-badge span { font-size: 3rem; }

.bh-logo-text-link { text-decoration: none; display: block; }

.bh-brand-title {
    color: var(--bh-dark);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.3px;
    text-align: left;
}

.bh-brand-subtitle {
    color: var(--bh-gray-500);
    font-size: 11px;
    font-weight: 600;
    display: block;
    margin-top: 3px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: left;
}

/* Hamburger */
.bh-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: var(--bh-gray-50);
    border: 1px solid var(--bh-gray-200);
    border-radius: 8px;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.bh-hamburger span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--bh-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.bh-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.bh-hamburger.open span:nth-child(2) { opacity: 0; }
.bh-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Cart Link */
.bh-cart-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--bh-gray-50);
    border: 1px solid var(--bh-gray-200);
    border-radius: 50%;
    transition: background 0.2s;
}

.bh-cart-link:hover { background: #fff3f3; }
.bh-cart-link svg { width: 22px; height: 22px; fill: var(--bh-dark); }

.bh-cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--bh-primary);
    color: white;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: var(--bh-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
}

/* User dropdown */
.bh-user-dropdown { position: relative; }

.bh-user-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.7);
    border-radius: var(--bh-radius-full);
    font-size: 13px;
    color: var(--bh-dark);
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: var(--bh-transition);
}

.bh-user-pill:hover { background: rgba(255,255,255,0.9); }
.bh-user-pill svg { transition: transform 0.2s ease; }
.bh-user-dropdown.open .bh-user-pill svg { transform: rotate(180deg); }

.bh-user-avatar {
    width: 28px;
    height: 28px;
    background: var(--bh-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}

.bh-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 220px;
    background: white;
    border-radius: var(--bh-radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.16);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 9999;
    border: 1px solid var(--bh-gray-100);
}

.bh-user-dropdown.open .bh-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.bh-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    text-decoration: none;
    color: var(--bh-gray-700);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--bh-transition);
    width: 100%;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
}

.bh-dropdown-item:hover { background: var(--bh-gray-50); color: var(--bh-primary); }
.bh-dropdown-icon { font-size: 1rem; width: 22px; text-align: center; flex-shrink: 0; }
.bh-dropdown-divider { height: 1px; background: var(--bh-gray-100); margin: 4px 0; }
.bh-dropdown-logout { color: var(--bh-danger); }
.bh-dropdown-logout:hover { background: rgba(204,0,0,0.04); color: var(--bh-danger); }

/* Login Button */
.bh-login-btn {
    padding: 6px 18px;
    border-radius: var(--bh-radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    background: var(--bh-primary);
    color: white;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bh-login-btn:hover { background: #b00000; }

/* Nav links (fallback pages nav) */
.bh-nav-link {
    color: var(--bh-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    border: 2px solid transparent;
    white-space: nowrap;
    transition: var(--bh-transition);
}

.bh-nav-link:hover { color: var(--bh-primary); }
.bh-nav-link.active { border-color: var(--bh-primary); color: var(--bh-primary); background: #fff; }

/* ============ TABS BAR / CATEGORY BUTTONS ============ */
.bh-tab-bar {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    width: 100%;
    justify-content: center;
    align-items: center;
    background: transparent;
}
.bh-tab-bar::-webkit-scrollbar { display: none; }

.bh-tab-btn {
    flex-shrink: 0;
    padding: 10px 20px;
    border-radius: 20px;
    border: 2px solid var(--bh-primary);
    background: #fff;
    color: var(--bh-primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bh-tab-btn:hover,
.bh-tab-btn.active {
    background: var(--bh-primary);
    color: #fff;
}

/* ============ MOBILE MENU ============ */
.bh-mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bh-mobile-menu.open { display: block; opacity: 1; }

.bh-mobile-menu-panel {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 1000;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    transition: right 0.3s ease;
    overflow-y: auto;
}

.bh-mobile-menu.open .bh-mobile-menu-panel { right: 0; }

.bh-mobile-menu-header {
    background: linear-gradient(135deg, #d4a843, #f2c94c);
    padding: 24px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.bh-mobile-menu-header .bh-logo-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.bh-mobile-menu-header div:last-child {
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
}

.bh-mobile-menu-nav { padding: 12px 0; }

.bh-mobile-menu-nav a,
.bh-mobile-menu-nav button {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
    transition: var(--bh-transition);
}

.bh-mobile-menu-nav a:hover,
.bh-mobile-menu-nav button:hover { background: var(--bh-gray-50); color: var(--bh-primary); }

.bh-mobile-divider { height: 1px; background: #f0f0f0; margin: 4px 20px; }

/* ============ INTRO BANNER (plain, same as WheelersFood) ============ */
.bh-intro-banner {
    text-align: center;
    max-width: 820px;
    margin: 4px auto;
    padding: 12px 15px;
    background: #B3E6B6;
    border-radius: 10px;
}

.bh-intro-heading {
    display: inline;
    font-family: 'The Seasons';
    font-size: 20px;
    font-weight: 700;
    color: #222;
}
.bh-intro-text {
    display: inline;
    font-family: 'Quicksand', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #444;
}

.bh-hindi-text {
    font-size: 12px;
    font-weight: 700;
    color: #222222;
    line-height: 1.6;
}

.bh-green-tagline {
    font-size: 13px;
    font-weight: 800;
    color: #2e7d32;
    margin-top: 5px;
}

/* ============ ALERTS ============ */
.bh-alert {
    padding: 12px 16px;
    border-radius: var(--bh-radius);
    font-size: 0.88rem;
    font-weight: 500;
    margin-top: 12px;
}

.bh-alert-success { background: #e8f7ee; color: #0f6b3e; border: 1px solid #bfe8cf; }
.bh-alert-error { background: #fdecec; color: #a30000; border: 1px solid #f5c2c2; }

/* ============ IMAGE UPLOAD SIZE NOTE ============ */
.bh-upload-note {
    display: block;
    padding: 9px 12px;
    margin: 0 0 10px;
    border: 1px dashed var(--bh-gray-300, #d0d0d0);
    border-left: 4px solid #16b6c4;
    background: #eefcfd;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #333;
    line-height: 1.5;
}
.bh-upload-note strong { color: #0d8aa0; }
.bh-file-error { display: block; margin-top: 6px; font-size: 0.82rem; font-weight: 600; color: #c62828; }

/* ============ SECTION BANNER (Yellow rounded — same as WheelersFood) ============ */
.bh-section-banner {
    position: relative;
    background: var(--bh-yellow);
    color: var(--bh-dark);
    font-size: 30px;
    line-height: 37px;
    font-weight: 700;
    padding: 8px 35px 8px 16px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 30%;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    border-radius: 0 700px 0 0;
    overflow: hidden;
    margin: 0;
}

.bh-section-banner .emoji { margin-right: 8px; }

.wf-sub-category {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--bh-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 2px 8px;
    margin: 0;
}

/* ============ CONTAINER ============ */
.bh-container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

/* ============ PAGE HEAD (sub-pages) ============ */
.bh-page-head {
    background: linear-gradient(180deg, #fffdf5, #ffffff);
    border-bottom: 1px solid #f3e5bd;
    padding: 26px 20px;
    text-align: center;
}

.bh-page-head h1, .bh-page-head h2 { font-weight: 800; font-size: clamp(1.2rem, 3vw, 1.7rem); color: var(--bh-dark); }
.bh-page-head p { color: var(--bh-gray-500); font-size: 0.88rem; margin-top: 4px; }

/* ============ PANELS / FORMS / BUTTONS ============ */
.bh-panel {
    background: #fff;
    border: 1px solid var(--bh-gray-100);
    border-radius: var(--bh-radius-lg);
    box-shadow: var(--bh-shadow-sm);
    padding: 24px;
}

.bh-panel-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--bh-dark);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bh-gray-100);
}

.bh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: var(--bh-radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--bh-transition);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.bh-btn:hover { transform: translateY(-1px); box-shadow: var(--bh-shadow-md); }
.bh-btn-primary, .bh-btn-red { background: var(--bh-primary); color: white; }
.bh-btn-primary:hover, .bh-btn-red:hover { background: var(--bh-primary-dark); }
.bh-btn-yellow { background: var(--bh-yellow); color: #4a3200; }
.bh-btn-yellow:hover { background: var(--bh-yellow-light); }
.bh-btn-outline { background: transparent; color: var(--bh-primary); border: 2px solid var(--bh-primary); }
.bh-btn-outline:hover { background: var(--bh-primary); color: #fff; }
.bh-btn-danger { background: #fdecec; color: var(--bh-danger); border: 1px solid #f5c2c2; }
.bh-btn-danger:hover { background: var(--bh-danger); color: #fff; }
.bh-btn-sm { padding: 8px 18px; font-size: 0.82rem; }

/* ============ FORMS ============ */
.bh-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bh-form-group { display: flex; flex-direction: column; gap: 6px; }
.bh-form-group.full { grid-column: 1 / -1; }

.bh-label { font-size: 0.8rem; font-weight: 700; color: var(--bh-gray-700); letter-spacing: 0.3px; }

.bh-input, .bh-select, .bh-textarea {
    font-size: 0.92rem;
    color: var(--bh-dark);
    padding: 11px 14px;
    border: 2px solid var(--bh-gray-200);
    border-radius: 12px;
    outline: none;
    background: #fff;
    transition: var(--bh-transition);
    width: 100%;
}

.bh-input:focus, .bh-select:focus, .bh-textarea:focus {
    border-color: var(--bh-primary);
    box-shadow: 0 0 0 3px rgba(209,0,0,0.09);
}

.bh-textarea { resize: vertical; min-height: 90px; }
.bh-error-text { color: var(--bh-danger); font-size: 0.76rem; font-weight: 500; }

/* ============ FILTER BAR ============ */
.bh-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--bh-gray-100);
    border-radius: var(--bh-radius-lg);
    box-shadow: var(--bh-shadow-xs);
    padding: 14px 16px;
    margin: 20px auto;
}

.bh-filter-bar .bh-input { flex: 1; min-width: 170px; }
.bh-filter-bar .bh-select { width: auto; }

/* ============ PRODUCT CARDS (ported from WheelersFood) ============ */
.bh-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 20px;
}

.bh-card {
    background: none;
    border-radius: var(--bh-radius-lg);
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: none;
    border: none;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bh-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bh-primary), var(--bh-yellow), var(--bh-primary));
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 2;
    border-radius: var(--bh-radius-lg) var(--bh-radius-lg) 0 0;
}

.bh-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(209,0,0,0.1), 0 12px 32px rgba(0,0,0,0.06);
}

.bh-card:hover::before { opacity: 1; }

.bh-card-name {
    font-size: 17px;
    font-weight: 800;
    color: var(--bh-primary);
    line-height: 1.3;
    padding-top: 10px;
    margin-bottom: 4px;
    text-align: center;
    letter-spacing: -0.3px;
    text-decoration: none;
    display: block;
}

a.bh-card-name:hover { color: var(--bh-primary-dark); text-decoration: underline; }

.bh-card-combo-box {
    border: none;
    border-radius: var(--bh-radius);
    overflow: hidden;
    margin: 0 16px 1px;
    box-shadow: 0 2px 8px rgba(250,187,0,0.08);
    transition: box-shadow 0.3s ease;
    background: #fff;
}

.bh-card:hover .bh-card-combo-box { box-shadow: 0 4px 14px rgba(250,187,0,0.18); }

.bh-card-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(160deg, #fefefe, #f8f8f8);
    text-decoration: none;
    overflow: hidden;
}

.bh-card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; display: block; background: linear-gradient(160deg, #f0f2f5, #e6e9ee); }
.bh-card-img .bh-card-emoji { font-size: 4.5rem; transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.bh-card:hover .bh-card-img .bh-card-emoji { transform: scale(1.08); }

.bh-card-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 5px;
    z-index: 2;
}

.bh-badge-chip {
    padding: 4px 10px;
    border-radius: var(--bh-radius-full);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
    white-space: nowrap;
}

.bh-badge-save { background: rgba(15,138,79,0.92); color: white; }
.bh-badge-rating { background: rgba(255,255,255,0.92); color: var(--bh-warning); position: absolute; top: 10px; right: 10px; }
.bh-badge-duration { background: rgba(0,0,0,0.55); color: white; position: absolute; bottom: 10px; left: 10px; }

.bh-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    padding: 12px 16px;
    border-top: 1px solid var(--bh-gray-50);
    background: linear-gradient(180deg, transparent, rgba(250,251,252,0.5));
}

.bh-card-price {
    font-size: 24px;
    font-weight: 900;
    color: var(--bh-dark);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.bh-card-price .currency {
    font-size: 18px;
    font-weight: 800;
    color: var(--bh-primary);
    letter-spacing: 0;
}

.bh-card-price s {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--bh-gray-400);
    letter-spacing: 0;
}

.bh-card-price .per {
    display: block;
    font-size: 0.66rem;
    font-weight: 500;
    color: var(--bh-gray-400);
    letter-spacing: 0;
}

/* ADD button — modern gradient (same as WheelersFood) */
.bh-card-add {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--bh-primary) 0%, #e80000 100%);
    color: white;
    border: none;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 3px 10px rgba(209,0,0,0.25);
    text-transform: uppercase;
    white-space: nowrap;
    user-select: none;
}

.bh-card-add:hover {
    background: linear-gradient(135deg, var(--bh-primary-dark) 0%, #b00000 100%);
    box-shadow: 0 6px 20px rgba(209,0,0,0.35);
}

.bh-card-add.disabled {
    background: linear-gradient(135deg, var(--bh-gray-200), var(--bh-gray-300));
    color: var(--bh-gray-400);
    cursor: not-allowed;
    pointer-events: none;
    box-shadow: none;
}

/* Product specs below card (destination/duration meta) */
.bh-product-specs {
    font-size: 11px;
    color: var(--bh-gray-500);
    line-height: 1.4;
    width: 100%;
    border-top: 1px dashed var(--bh-gray-100);
    padding: 6px 10px;
    margin-top: auto;
}

.bh-product-specs p { margin-bottom: 4px; }
.bh-product-specs strong { color: var(--bh-dark); }

/* ============ INLINE STEPPER ============ */
.bh-inline-stepper {
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--bh-primary);
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
}

.bh-stepper-minus,
.bh-stepper-plus {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--bh-primary);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    line-height: 1;
    transition: var(--bh-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bh-stepper-minus:hover, .bh-stepper-plus:hover { background: var(--bh-primary-dark); }
.bh-stepper-minus { border-right: 1px solid rgba(255,255,255,0.35); }
.bh-stepper-plus { border-left: 1px solid rgba(255,255,255,0.35); }

.bh-stepper-qty {
    min-width: 34px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--bh-dark);
}

/* ============ STICKY CART BAR (dark — same as WheelersFood) ============ */
.bh-sticky-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--bh-dark);
    color: white;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    animation: slideUpCart 0.3s ease;
}

@keyframes slideUpCart { from { transform: translateY(100%); } to { transform: translateY(0); } }

.bh-sticky-cart-inner { max-width: 1100px; margin: 0 auto; padding: 14px 20px; display: flex; align-items: center; justify-content: space-between; }
.bh-sticky-cart-info { display: flex; align-items: center; gap: 16px; }
.bh-sticky-cart-count { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.7); }
.bh-sticky-cart-total { font-size: 1.15rem; font-weight: 800; color: white; }
.bh-sticky-cart-total .lbl { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.55); margin-right: 4px; }

.bh-sticky-cart-btn {
    padding: 10px 24px;
    background: var(--bh-primary);
    color: white;
    border-radius: var(--bh-radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    transition: var(--bh-transition);
}

.bh-sticky-cart-btn:hover { background: var(--bh-primary-dark); transform: translateY(-1px); }

/* Cart page body offset when sticky bar visible */
body:has(.bh-sticky-cart:not([style*="display: none"])) { padding-bottom: 64px; }

/* ============ CART PAGE ============ */
.bh-cart-row {
    display: flex;
    gap: 20px;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--bh-gray-100);
    border-radius: var(--bh-radius-lg);
    box-shadow: var(--bh-shadow-xs);
    padding: 14px;
    position: relative;
}

.bh-cart-row + .bh-cart-row { margin-top: 12px; }

.bh-cart-container { padding-left: 0 !important; padding-right: 0 !important; }

@media (max-width: 600px) {
    .bh-cart-container {
        display: flex;
        flex-direction: column;
    }
    .bh-cart-summary { order: -1; margin-top: 0 !important; margin-bottom: 14px; }
    .bh-cart-row { order: 0; }
    .bh-cart-actions,
    .bh-cart-note { order: 1; }
}

.bh-cart-thumb {
    flex: 0 0 33%;
    width: 33%;
    height: 140px;
    border-radius: var(--bh-radius-sm);
    overflow: hidden;
    background: linear-gradient(160deg, #fefefe, #f8f8f8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.bh-cart-thumb { position: relative; }
.bh-cart-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; background: linear-gradient(160deg, #f0f2f5, #e6e9ee); }

.bh-cart-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.bh-cart-controls {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
}

.bh-cart-body .tx-pkg-cta {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    z-index: 2;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.bh-cart-info { min-width: 0; }
.bh-cart-name {
    display: block;
    font-weight: 700;
    text-decoration: none;
    color: var(--bh-dark);
    line-height: 1.3;
}
.bh-cart-meta { font-size: 0.78rem; color: var(--bh-gray-500); margin-top: 3px; }

.bh-cart-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--bh-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 6px;
}

.bh-cart-qty,
.bh-cart-kids,
.bh-cart-total {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.bh-kids-input {
    width: 58px;
    padding: 6px 4px;
    border: 1.5px solid var(--bh-gray-200);
    border-radius: var(--bh-radius-sm);
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.bh-cart-total { min-width: 130px; text-align: right; align-items: flex-end; }
.bh-cart-total-amount {
    font-weight: 900;
    color: var(--bh-primary);
    font-size: 1.05rem;
    line-height: 1.2;
}
.bh-cart-total-detail { font-size: 0.7rem; color: var(--bh-gray-400); text-align: right; }
.bh-cart-remove { padding: 4px 12px; font-size: 0.7rem; margin-top: 4px; }

@media (max-width: 900px) {
    .bh-cart-row {
        gap: 14px;
        padding: 12px;
    }
    .bh-cart-thumb { height: 120px; }
    .bh-cart-total { min-width: 0; }
}

@media (max-width: 600px) {
    .bh-cart-row {
        flex-direction: column;
        gap: 12px;
        padding: 12px;
    }
    .bh-cart-thumb { flex: 0 0 auto; width: 100%; max-width: 320px; margin: 0 auto; min-height: 180px; }
    .bh-cart-info { text-align: center; }
    .bh-cart-name { font-size: 0.98rem; }
    .bh-cart-controls {
        justify-content: center;
        text-align: center;
        gap: 16px;
    }
    .bh-cart-qty,
    .bh-cart-kids {
        align-items: center;
        text-align: center;
    }
    .bh-cart-qty .bh-inline-stepper { transform: scale(0.92); transform-origin: center; }
    .bh-cart-total {
        width: 100%;
        min-width: 0;
        align-items: center;
        text-align: center;
        padding-top: 10px;
        border-top: 1px dashed var(--bh-gray-100);
    }
    .bh-cart-total-detail { text-align: center; }
    .bh-cart-body { align-items: center; }
    .bh-cart-remove { display: block; margin: 4px auto 0; }
}

/* ============ DETAIL PAGE ============ */
.bh-breadcrumb { font-size: 0.8rem; color: var(--bh-gray-500); margin: 18px 0; }

.bh-card-cat {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--bh-primary);
}

.bh-card-cat a { color: inherit; text-decoration: none; }
.bh-card-cat a:hover { text-decoration: underline; }
.bh-breadcrumb a { color: var(--bh-primary); text-decoration: none; font-weight: 600; }
.bh-breadcrumb a:hover { text-decoration: underline; }

.bh-detail-hero {
    position: relative;
    border-radius: var(--bh-radius-xl);
    overflow: hidden;
    aspect-ratio: 21/9;
    background: linear-gradient(160deg, #fefefe, #f8f8f8);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--bh-shadow);
}

.bh-detail-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; background: linear-gradient(160deg, #f0f2f5, #e6e9ee); }
.bh-detail-hero .bh-card-emoji { font-size: 5rem; }

.bh-itinerary-item { border: 1px solid var(--bh-gray-100); border-radius: var(--bh-radius); overflow: hidden; }
.bh-itinerary-item + .bh-itinerary-item { margin-top: 10px; }

.bh-itinerary-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    font-weight: 700;
    font-size: 0.92rem;
    background: var(--bh-gray-50);
    transition: var(--bh-transition);
}

.bh-itinerary-item summary::-webkit-details-marker { display: none; }
.bh-itinerary-item summary:hover { background: #fff3f3; }

.bh-day-badge {
    flex-shrink: 0;
    background: var(--bh-primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: var(--bh-radius-full);
}

.bh-itinerary-item .bh-rich { padding: 14px 16px 16px 66px; font-size: 0.9rem; }

/* ============ RICH TEXT (headings / bold / italic) ============ */
.bh-rich { color: var(--bh-gray-600); line-height: 1.65; }
.bh-rich p { margin: 0 0 8px; }
.bh-rich p:last-child { margin-bottom: 0; }
.bh-rich strong { color: var(--bh-dark); font-weight: 800; }
.bh-rich em { font-style: italic; color: inherit; }
.bh-rich h4 {
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--bh-primary);
    margin: 12px 0 6px;
}
.bh-rich h5 {
    font-size: 0.88rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--bh-dark);
    margin: 10px 0 5px;
}
.bh-itinerary-item .bh-rich h4:first-child,
.bh-itinerary-item .bh-rich h5:first-child,
.bh-rich h4:first-child, .bh-rich h5:first-child { margin-top: 0; }

.bh-inc-exc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.bh-list-check { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.bh-list-check li { display: flex; gap: 9px; font-size: 0.88rem; color: var(--bh-gray-600); }
.bh-list-check li::before { content: '✓'; color: var(--bh-success); font-weight: 800; }
.bh-list-cross li::before { content: '✕'; color: var(--bh-danger); }
.bh-list-check .bh-rich p { margin: 0; }

.bh-summary-row { display: flex; justify-content: space-between; gap: 10px; font-size: 0.9rem; padding: 7px 0; border-bottom: 1px dashed var(--bh-gray-200); }
.bh-summary-row:last-of-type { border-bottom: none; }
.bh-summary-row strong { color: var(--bh-dark); }

.bh-summary-total { display: flex; justify-content: space-between; align-items: baseline; background: #fff8e6; border-radius: var(--bh-radius-sm); padding: 12px 14px; margin-top: 12px; }
.bh-summary-total .amount { font-size: 1.3rem; font-weight: 900; color: var(--bh-primary); }

/* ============ SHARE ROW ============ */
.bh-share-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 2px solid var(--bh-gray-100);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--bh-gray-500);
}

.bh-share-row a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--bh-gray-50);
    border: 1px solid var(--bh-gray-200);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--bh-transition);
}

.bh-share-row a:hover { background: #fff3f3; border-color: var(--bh-primary); transform: translateY(-2px); }

/* ============ BOOKING SUCCESS ============ */
.bh-success-wrap { max-width: 640px; margin: 36px auto; text-align: center; }
.bh-success-icon { width: 84px; height: 84px; margin: 0 auto 16px; border-radius: 50%; background: #e8f7ee; display: flex; align-items: center; justify-content: center; font-size: 2.4rem; color: var(--bh-success); border: 3px solid #bfe8cf; }

.bh-booking-number {
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: 1.5px;
    color: var(--bh-primary);
    background: #fff3f3;
    border: 1.5px dashed #f0b3b3;
    display: inline-block;
    padding: 10px 26px;
    border-radius: var(--bh-radius);
    margin: 10px 0 4px;
}

/* ============ STATUS BADGES ============ */
.bh-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--bh-radius-full);
}

.bh-badge-pending { background: #fff6dd; color: #946200; border: 1px solid #f3dfa5; }
.bh-badge-confirmed { background: #e8f7ee; color: #0f6b3e; border: 1px solid #bfe8cf; }
.bh-badge-cancelled { background: #fdecec; color: #a30000; border: 1px solid #f5c2c2; }
.bh-badge-completed { background: #eaf1fd; color: #1d4fa1; border: 1px solid #c4d7f7; }
.bh-badge-unpaid { background: var(--bh-gray-100); color: var(--bh-gray-600); border: 1px solid var(--bh-gray-200); }
.bh-badge-paid { background: #e8f7ee; color: #0f6b3e; border: 1px solid #bfe8cf; }
.bh-badge-refunded { background: #f3e8ff; color: #6b21a8; border: 1px solid #ddc5f7; }
.bh-badge-active { background: #e8f7ee; color: #0f6b3e; border: 1px solid #bfe8cf; }

.bh-badge-requested { background: #fff6dd; color: #946200; border: 1px solid #f3dfa5; }
.bh-badge-approved { background: #e8f7ee; color: #0f6b3e; border: 1px solid #bfe8cf; }
.bh-badge-rejected { background: #fdecec; color: #a30000; border: 1px solid #f5c2c2; }

.bh-badge-inactive { background: var(--bh-gray-100); color: var(--bh-gray-500); border: 1px solid var(--bh-gray-200); }
.bh-badge-new { background: #fff3f3; color: var(--bh-primary); border: 1px solid #f5c2c2; }

/* ============ TABLES ============ */
.bh-table-wrap { overflow-x: auto; background: #fff; border: 1px solid var(--bh-gray-100); border-radius: var(--bh-radius-lg); box-shadow: var(--bh-shadow-xs); }

.bh-table { width: 100%; border-collapse: collapse; font-size: 0.86rem; min-width: 640px; }

.bh-table th {
    text-align: left;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--bh-gray-500);
    background: var(--bh-gray-50);
    padding: 12px 16px;
    border-bottom: 2px solid var(--bh-gray-100);
    white-space: nowrap;
}

.bh-table td { padding: 12px 16px; border-bottom: 1px solid var(--bh-gray-100); vertical-align: middle; }
.bh-table tbody tr:hover { background: #fffafa; }
.bh-table tbody tr:last-child td { border-bottom: none; }

.bh-actions-cell { display: flex; gap: 6px; flex-wrap: wrap; }

.bh-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 0.74rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--bh-radius-full);
    border: 1px solid var(--bh-gray-200);
    background: #fff;
    color: var(--bh-gray-600);
    text-decoration: none;
    cursor: pointer;
    transition: var(--bh-transition);
}

.bh-icon-btn:hover { border-color: var(--bh-primary); color: var(--bh-primary); }
.bh-icon-btn.danger:hover { border-color: var(--bh-danger); color: var(--bh-danger); background: #fdecec; }

/* ============ PAGINATION ============ */
.bh-pagination { display: flex; justify-content: center; gap: 6px; padding: 26px 0 8px; flex-wrap: wrap; }
.bh-pagination a, .bh-pagination span {
    min-width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-radius: var(--bh-radius-sm);
    border: 1.5px solid var(--bh-gray-200);
    background: #fff;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--bh-gray-600);
    text-decoration: none;
}
.bh-pagination a:hover { border-color: var(--bh-primary); color: var(--bh-primary); }
.bh-pagination .current { background: var(--bh-primary); border-color: var(--bh-primary); color: #fff; }
.bh-pagination .disabled { opacity: 0.4; cursor: default; }

/* ============ AUTH PAGES ============ */
.bh-auth-wrap { min-height: calc(100vh - 220px); display: flex; align-items: center; justify-content: center; padding: 36px 20px; }
.bh-auth-card { width: 100%; max-width: 430px; background: #fff; border-radius: var(--bh-radius-xl); box-shadow: var(--bh-shadow-md); padding: 32px 30px; border-top: 5px solid var(--bh-primary); }
.bh-auth-card h1, .bh-auth-card h2 { font-size: 1.4rem; font-weight: 800; text-align: center; color: var(--bh-dark); }
.bh-auth-sub { text-align: center; color: var(--bh-gray-500); font-size: 0.86rem; margin: 6px 0 22px; }
.bh-auth-alt { text-align: center; font-size: 0.85rem; color: var(--bh-gray-500); margin-top: 18px; }
.bh-auth-alt a { color: var(--bh-primary); font-weight: 700; text-decoration: none; }
.bh-auth-alt a:hover { text-decoration: underline; }

/* ============ FOOTER (dark — same as WheelersFood) ============ */
.bh-footer { background: var(--bh-dark); color: rgba(255,255,255,0.5); margin-top: auto; }
.bh-footer-inner { max-width: 1100px; margin: 0 auto; padding: 48px 20px 24px; }
.bh-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr; gap: 32px; margin-bottom: 32px; }

.bh-footer-brand h3 { font-size: 1.4rem; font-weight: 700; color: white; margin-bottom: 10px; }
.bh-footer-brand p { font-size: 0.82rem; line-height: 1.6; }
.bh-footer-social { display: flex; gap: 10px; margin-top: 12px; }
.bh-footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); transition: var(--bh-transition); }
.bh-footer-social a:hover { background: var(--bh-primary); color: #fff; transform: translateY(-2px); }
.bh-footer-social svg { width: 17px; height: 17px; fill: currentColor; }
.bh-footer-social i { font-size: 17px; }

.bh-footer-col h4 { color: white; font-weight: 600; margin-bottom: 12px; font-size: 0.88rem; }
.bh-footer-links { display: flex; flex-direction: column; }
.bh-footer-links a { display: block; color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.82rem; padding: 3px 0; transition: var(--bh-transition); }
.bh-footer-links .bh-footer-text { display: block; color: rgba(255,255,255,0.45); font-size: 0.82rem; padding: 3px 0; }
.bh-footer-links a:hover { color: var(--bh-yellow); }
.bh-footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px; text-align: center; font-size: 0.78rem; }

/* ============ EMPTY STATE ============ */
.bh-empty { text-align: center; padding: 60px 20px; }
.bh-empty-icon { font-size: 3rem; margin-bottom: 12px; opacity: 0.5; }
.bh-empty h3 { font-size: 1.2rem; font-weight: 700; color: var(--bh-dark); margin-bottom: 6px; }
.bh-empty p { color: var(--bh-gray-400); margin-bottom: 20px; font-size: 0.9rem; }

/* ============ STATS STRIP (profile/about) ============ */
.bh-stats-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 760px;
    margin: 0 auto 22px;
    background: #fff;
    border-radius: var(--bh-radius-lg);
    box-shadow: var(--bh-shadow-md);
    overflow: hidden;
}

.bh-stat { text-align: center; padding: 18px 10px; border-right: 1px solid var(--bh-gray-100); }
.bh-stat:last-child { border-right: none; }
.bh-stat-num { font-weight: 900; font-size: 1.5rem; color: var(--bh-primary); }
.bh-stat-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: var(--bh-gray-500); }

/* ============ ADMIN ============ */
.bh-admin-shell { display: flex; min-height: 100vh; background: #f4f4f6; }

.bh-admin-sidebar {
    width: 240px;
    flex-shrink: 0;
    background: #1d1616;
    color: #fff;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.bh-admin-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.bh-admin-logo .bh-logo-badge { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--bh-yellow); }

.bh-admin-nav { padding: 12px 10px; display: flex; flex-direction: column; gap: 3px; flex: 1; }

.bh-admin-nav-link {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 14px;
    border-radius: var(--bh-radius-sm);
    color: rgba(255,255,255,0.68);
    text-decoration: none;
    font-size: 0.87rem;
    font-weight: 500;
    transition: var(--bh-transition);
}

.bh-admin-nav-link:hover { background: rgba(255,255,255,0.07); color: #fff; }
.bh-admin-nav-link.active { background: var(--bh-primary); color: #fff; font-weight: 700; }
.bh-admin-nav-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 8px 6px; }

.bh-admin-main { flex: 1; min-width: 0; padding: 24px 28px; }

.bh-admin-topbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 22px; flex-wrap: wrap; }
.bh-admin-topbar h1 { font-size: 1.35rem; font-weight: 800; color: var(--bh-dark); }

.bh-stat-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 14px; margin-bottom: 24px; }

.bh-stat-card {
    background: #fff;
    border-radius: var(--bh-radius-lg);
    padding: 18px;
    box-shadow: var(--bh-shadow-xs);
    border: 1px solid var(--bh-gray-100);
    display: flex;
    align-items: center;
    gap: 14px;
}

.bh-stat-card .icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: var(--bh-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    background: #fff3f3;
}

.bh-stat-card .num { font-size: 1.3rem; font-weight: 900; color: var(--bh-dark); line-height: 1.1; }
.bh-stat-card .lbl { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.6px; text-transform: uppercase; color: var(--bh-gray-500); }

.bh-admin-toolbar { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 16px; }
.bh-admin-toolbar .bh-input, .bh-admin-toolbar select { width: auto; min-width: 160px; }
.bh-form-card { max-width: 780px; }
.bh-admin-toggle { display: none; align-items: center; gap: 8px; }

/* ============ RESPONSIVE (wheelersfood breakpoints) ============ */
@media (max-width: 768px) {
    .bh-hamburger { display: flex; }
    .bh-header-overlay {
        position: relative;
        height: auto;
        padding: 10px 14px;
        flex-direction: column;
        gap: 8px;
        background-color: #ffffff;
    }
    .bh-header-bg-img { display: none; }
    .bh-logo-group .bh-logo-badge { width: 132px; height: 42px; }
    .bh-logo-badge span { font-size: 1.2rem; }
    .bh-brand-title { font-size: 17px; }
    .bh-brand-subtitle { font-size: 9px; margin-top: 2px; letter-spacing: 1.2px; }
    .bh-logo-group { gap: 10px; }
    .bh-tab-btn { font-size: 12px; padding: 8px 14px; }
    .bh-section-banner {
        font-size: 14px;
        line-height: 20px;
        padding: 8px 16px;
        justify-content: flex-start;
        text-align: left;
        border-radius: 0;
        letter-spacing: -0.5px;
        width: 100%;
    }
    .bh-inc-exc-grid { grid-template-columns: 1fr; }
    .bh-form-grid { grid-template-columns: 1fr; }
    .bh-footer-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
    .bh-stats-strip { margin-left: 14px; margin-right: 14px; }
    .bh-user-pill { background: rgba(255,255,255,0.85); }
}

@media (max-width: 480px) {
    .bh-footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .bh-admin-sidebar {
        position: fixed;
        z-index: 1300;
        left: 0;
        top: 0;
        transform: translateX(-100%);
        transition: transform 0.25s ease;
        box-shadow: var(--bh-shadow-lg);
    }
    .bh-admin-sidebar.open { transform: translateX(0); }
    .bh-admin-main { padding: 18px 16px; }
    .bh-admin-toggle { display: inline-flex; }
    .bh-admin-2col { grid-template-columns: 1fr !important; }
}

/* ---------- Footer newsletter ---------- */
.bh-footer-newsletter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 26px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--bh-radius);
}
.bh-footer-newsletter-form {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.bh-footer-newsletter-form input[type="email"] {
    min-width: 240px;
    padding: 10px 14px;
    border-radius: var(--bh-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.85rem;
}
.bh-footer-newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,0.45); }
.bh-footer-newsletter-form button {
    padding: 10px 22px;
    border: none;
    border-radius: var(--bh-radius-sm);
    background: var(--bh-primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: filter 0.15s ease;
}
.bh-footer-newsletter-form button:hover { filter: brightness(1.12); }
@media (max-width: 640px) {
    .bh-footer-newsletter { flex-direction: column; align-items: stretch; }
    .bh-footer-newsletter-form input[type="email"] { flex: 1; min-width: 0; width: 100%; }
}

/* ---------- Wishlist heart on package cards ---------- */
.bh-wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    color: var(--bh-gray-400);
    text-decoration: none;
    transition: transform 0.12s ease, color 0.12s ease;
}
.bh-wishlist-btn:hover { transform: scale(1.12); color: var(--bh-primary); }
.bh-wishlist-btn.active { color: #e11d48; }

/* ---------- Reviews section on package page ---------- */
.bh-review-item {
    padding: 16px 0;
    border-bottom: 1px dashed var(--bh-gray-200);
}
.bh-review-item:last-child { border-bottom: none; }
.bh-review-stars { color: #f59e0b; letter-spacing: 2px; font-size: 0.9rem; }
.bh-review-meta { font-size: 0.74rem; color: var(--bh-gray-400); margin-top: 3px; }

.bh-card-combo-box { position: relative; }
.bh-wishlist-btn form { display: contents; }

/* ============ MOBILE HORIZONTAL SWIPE CAROUSEL (WheelersFood style) ============ */
@media (max-width: 768px) {
    .bh-packages-grid {
        display: flex !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 14px !important;
        padding: 4px 16px 16px !important;
        margin-left: -8px !important;
        margin-right: -8px !important;
        scrollbar-width: none !important;
    }

    .bh-packages-grid::-webkit-scrollbar { display: none !important; }

    .bh-packages-grid > .bh-card {
        flex: 0 0 75vw !important;
        min-width: 75vw !important;
        max-width: 75vw !important;
        scroll-snap-align: start !important;
    }

    /* Peek effect: show hint of next card */
    .bh-packages-grid::after {
        content: '';
        flex: 0 0 16px;
        min-width: 16px;
    }
}

/* ============ PRELOADER (Big Holidays Online) ============ */
#bhPreloader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.3s ease;
}

.bh-preloader-ring-wrap {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bh-preloader-ring {
    position: absolute;
    inset: 0;
    border: 5px solid #e5e7eb;
    border-top-color: var(--bh-primary);
    border-radius: 50%;
    animation: bhPreloaderSpin 1s linear infinite;
}

.bh-preloader-ring-wrap img { width: 60px; height: 60px; object-fit: contain; z-index: 2; }

.bh-preloader-text {
    margin-top: 16px;
    font-size: 0.88rem;
    color: var(--bh-gray-500);
}

@keyframes bhPreloaderSpin { to { transform: rotate(360deg); } }

/* ============ GLOBAL HEADING SCALE ============ */
h1, h2, h3, h4, h5 {
    color: var(--bh-dark);
    line-height: var(--bh-linehead);
}

h1 { font-size: var(--bh-font-h1); font-weight: var(--bh-weight-h1); }
h2 { font-size: var(--bh-font-h2); font-weight: var(--bh-weight-h2); }
h3 { font-size: var(--bh-font-h3); font-weight: var(--bh-weight-h3); }
h4 { font-size: var(--bh-font-subheading); font-weight: var(--bh-weight-subheading); }
h5 { font-size: var(--bh-font-subheading); font-weight: var(--bh-weight-subheading); }

.subheading, .bh-subheading { font-size: var(--bh-font-subheading); font-weight: var(--bh-weight-subheading); line-height: var(--bh-linehead); }
.small, .bh-small, small { font-size: var(--bh-font-small); font-weight: var(--bh-weight-small); }

.bh-btn, .bh-card-add, .tx-search-btn, .tx-filter-submit, .tx-add-cart-btn,
.tx-sidebar-btn, .bh-login-btn, .bh-sticky-cart-btn, .tx-cta-btn {
    font-size: var(--bh-font-button);
    font-weight: var(--bh-weight-button);
}

.bh-page-head h1, .bh-page-head h2 { margin-bottom: 2px; }

/* ============ PAGE BACKGROUND ============ */
body { background: #f6f6f7; }

/* User pill visible on white header */
.bh-user-pill {
    background: #ffffff;
    border: 1px solid var(--bh-gray-200);
}
.bh-user-pill:hover { background: var(--bh-gray-50); }

/* ================================================================
   TRAVELX HOMEPAGE — Mobile-first redesign
   Color: Navy #1a237e primary, Orange #ff6d00 CTA
   ================================================================ */

:root {
    --tx-navy: #1a237e;
    --tx-navy-dark: #0d1442;
    --tx-navy-light: #283593;
    --tx-orange: #ff6d00;
    --tx-orange-dark: #e65100;
    --tx-bg: #f0f4f8;
    --tx-card: #ffffff;
    --tx-text: #1a1a2e;
    --tx-muted: #6b7280;
    --tx-border: #e5e7eb;
    --tx-radius: 12px;
    --tx-radius-sm: 8px;
    --tx-radius-lg: 16px;
}

/* ---- TX Header ---- */
.tx-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--tx-card);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    padding: 0 16px;
}

.tx-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 45px;
    max-width: 600px;
    margin: 0 auto;
}

.tx-hamburger {
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 0;
    border-radius: 8px;
    transition: background 0.15s;
}

.tx-hamburger:hover { background: rgba(26,35,126,0.06); }

.tx-hamburger span {
    display: block;
    width: 20px;
    height: 3px;
    background: var(--tx-navy);
    border-radius: 2px;
    transition: 0.2s ease;
}

.tx-logo-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
    text-decoration: none;
}

.tx-logo-center .tx-logo-img {
    height: 31px;
    width: auto;
    object-fit: contain;
}

.tx-logo-center .tx-logo-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--tx-navy);
}

.tx-logo-center .tx-logo-sub {
    font-size: 9px;
    font-weight: 500;
    color: var(--tx-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 1px;
}

.tx-avatar-btn {
    width: 0px;
    height: 0px;
    border-radius: 50%;
    border: none;
    background: var(--tx-navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s;
}

.tx-avatar-btn:hover { transform: scale(1.08); }

.tx-login-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    text-decoration: none;
    line-height: 1;
    margin-top: 7px;
}
.tx-login-text {
    color: #666;
    text-align: center;
    font-size: 9px;
    line-height: 1.15;
}

.tx-cart-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--tx-navy);
    text-decoration: none;
    transition: color 0.15s;
}
.tx-cart-link:hover { color: var(--tx-orange); }
.tx-cart-link svg { display: block; }

.tx-cart-badge {
    position: absolute;
    top: 2px;
    right: 0;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    background: var(--tx-orange);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
    padding: 0 4px;
}

/* ---- TX Header Search ---- */
.tx-search {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 10px 16px 14px;
    background: var(--tx-card);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}

.tx-search.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tx-search-form {
    display: flex;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(26,35,126,0.25);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.tx-search-input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    padding: 11px 14px;
    font-size: 14px;
    color: var(--tx-navy);
    background: transparent;
}

.tx-search-input::placeholder { color: var(--tx-muted); }

.tx-search-submit {
    border: none;
    background: var(--tx-navy);
    color: #fff;
    width: 46px;
    height: 44px;
    cursor: pointer;
    font-size: 15px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

.tx-search-submit:hover { background: var(--tx-orange); }

.tx-search-toggle {
    width: 36px;
    height: 36px;
    border: none;
    background: none;
    color: var(--tx-navy);
    cursor: pointer;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.15s;
}

.tx-search-toggle:hover { color: var(--tx-orange); }

/* ---- TX Mobile Nav Drawer ---- */
.tx-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
}

.tx-mobile-overlay.open { opacity: 1; visibility: visible; }

.tx-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 280px;
    max-width: 85vw;
    background: var(--tx-card);
    z-index: 1300;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: 4px 0 24px rgba(0,0,0,0.15);
}

.tx-drawer.open { transform: translateX(0); }

.tx-drawer-header {
    padding: 20px 18px;
    border-bottom: 1px solid var(--tx-border);
    display: flex;
    align-items: center;
    gap: 12px;
}

.tx-drawer-header .tx-logo-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: contain;
    border: 2px solid var(--tx-border);
}

.tx-drawer-header .tx-drawer-brand {
    font-size: 16px;
    font-weight: 800;
    color: var(--tx-navy);
}

.tx-drawer-nav {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
}

.tx-drawer-nav a,
.tx-drawer-nav button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--tx-text);
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: background 0.12s;
}

.tx-drawer-nav a:hover,
.tx-drawer-nav button:hover { background: rgba(26,35,126,0.04); }

.tx-drawer-nav .tx-drawer-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.tx-drawer-divider {
    height: 1px;
    background: var(--tx-border);
    margin: 6px 16px;
}

/* ---- TX Hero / Search Card ---- */
.tx-hero {
    background: linear-gradient(170deg, #e8eaf6 0%, var(--tx-bg) 100%);
    padding: 28px 16px 24px;
}

.tx-hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.tx-hero-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.tx-hero-text {
    flex: 1 1 auto;
    min-width: 0;
}

.tx-hero-image {
    flex: 0 0 auto;
    width: 280px;
    height: auto;
    border-radius: var(--tx-radius-lg);
    object-fit: cover;
}

.tx-hero-heading {
    font-size: 22px;
    font-weight: 800;
    color: var(--tx-navy);
    text-align: left;
    line-height: 1.3;
    margin-bottom: 4px;
}

@media (max-width: 600px) {
    .tx-hero-title-row {
        flex-direction: column;
        gap: 16px;
    }
    .tx-hero-image {
        width: 100%;
        max-width: 340px;
    }
    .tx-hero-heading,
    .tx-hero-sub {
        text-align: center;
    }
}

.tx-hero-sub {
    font-size: 13px;
    color: var(--tx-muted);
    text-align: left;
    margin-bottom: 18px;
}

.tx-search-card {
    background: var(--tx-card);
    border-radius: var(--tx-radius-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 20px 16px;
}

.tx-search-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.tx-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.tx-field-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--tx-muted);
}

.tx-field-input {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 1.5px solid var(--tx-border);
    border-radius: var(--tx-radius-sm);
    background: var(--tx-bg);
    transition: border-color 0.15s;
}

.tx-field-input:focus-within {
    border-color: var(--tx-navy);
    background: #fff;
}

.tx-field-icon {
    font-size: 16px;
    color: var(--tx-navy);
    flex-shrink: 0;
}

.tx-field-input input,
.tx-field-input select {
    border: none;
    outline: none;
    background: transparent;
    font-size: 13px;
    font-weight: 600;
    color: var(--tx-text);
    width: 100%;
    padding: 0;
}

.tx-field-input select {
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.tx-search-btn {
    grid-column: 1 / -1;
    margin-top: 4px;
    padding: 13px;
    border: none;
    border-radius: var(--tx-radius-sm);
    background: var(--tx-navy);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
    text-align: center;
    text-decoration: none;
    display: block;
}

.tx-search-btn:hover { background: var(--tx-navy-dark); transform: translateY(-1px); }
.tx-search-btn:active { transform: translateY(0); }

/* ---- TX Filter Pills ---- */
.tx-filters {
    max-width: 600px;
    margin: 0 auto;
    padding: 18px 16px 6px;
}

.tx-filters-row {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.tx-filters-row::-webkit-scrollbar { display: none; }

/* ---- Desktop Top Categories (mirrors the mobile circle design) ---- */
.tx-top-cats {
    max-width: 600px;
    margin: 0 auto;
    padding: 12px 16px 2px;
}

.tx-top-cats-row {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
}

.tx-top-cats-row::-webkit-scrollbar { display: none; }

.tx-top-cat {
    flex: 0 0 92px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: var(--tx-muted);
    text-decoration: none;
    transition: color 0.15s;
}

.tx-top-cat:hover { color: var(--tx-navy); }

.tx-top-cat .cat-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid #c8c8c8;
    background: #e8f8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.6);
    transition: box-shadow .15s ease, transform .15s ease;
    overflow: hidden;
}

.tx-top-cat .cat-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tx-top-cat:hover .cat-icon {
    border-color: var(--tx-orange);
    box-shadow: 0 0 0 3px rgba(223,120,46,.18);
    transform: translateY(-2px);
}

.tx-top-cats-row > .tx-top-cat:nth-child(2) .cat-icon { background: #e8f3ff; }
.tx-top-cats-row > .tx-top-cat:nth-child(3) .cat-icon { background: #e8fbfa; }
.tx-top-cats-row > .tx-top-cat:nth-child(4) .cat-icon { background: #ffe8ec; }
.tx-top-cats-row > .tx-top-cat:nth-child(5) .cat-icon { background: #e5f8fb; }
.tx-top-cats-row > .tx-top-cat:nth-child(6) .cat-icon { background: #f2ecff; }
.tx-top-cats-row > .tx-top-cat:nth-child(7) .cat-icon { background: #fff4e0; }

.tx-pill {
    flex-shrink: 0;
    padding: 8px 18px;
    border-radius: 24px;
    border: 1.5px solid var(--tx-border);
    background: var(--tx-card);
    color: var(--tx-muted);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
    white-space: nowrap;
}

.tx-pill:hover { border-color: var(--tx-navy); color: var(--tx-navy); }

.tx-pill.active {
    background: var(--tx-orange);
    border-color: var(--tx-orange);
    color: #fff;
}

/* ---- TX Package List ---- */
.tx-section {
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
}

.tx-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0 12px;
}

.tx-section-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--tx-navy);
}

.tx-section-title .best-seller-count {
    font-size: 12px;
    font-weight: 400;
    margin-left: 6px;
    color: #6b7280;
}

.tx-section-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--tx-orange);
    text-decoration: none;
    transition: color 0.12s;
}

.tx-section-link:hover { color: var(--tx-orange-dark); }

/* ---- TX Horizontal Package Card ---- */
.tx-pkg-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-bottom: 8px;
}

.tx-pkg-card {
    display: flex;
    background: #fff;
    border: 1px solid #c5dcdc;
    border-radius: 25px;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    color: inherit;
    text-decoration: none;
}

.tx-pkg-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.tx-pkg-thumb-wrap {
    flex: 0 0 33%;
    width: 33%;
    aspect-ratio: 1 / 1;
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: linear-gradient(160deg, #e8eaf6, #f0f4f8);
    margin: 2px;
}

.tx-pkg-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: linear-gradient(160deg, #f0f2f5, #e6e9ee);
}

.tx-pkg-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(160deg, #e8eaf6, #f0f4f8);
}

.tx-thumb-rating {
    position: absolute;
    left: 8px;
    top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    font-size: 11px;
    line-height: 1;
    white-space: nowrap;
    z-index: 2;
}
.tx-thumb-rating .fa-star { color: #f59e0b; font-size: 11px; }
.tx-thumb-rating-num { font-weight: 800; color: #f57f17; }
.tx-thumb-rating-sep { color: #9ca3af; }
.tx-thumb-rating-count { color: #6b7280; font-weight: 600; }

@media (max-width: 600px) {
    .tx-thumb-rating {
        font-size: 8px;
        padding: 3px 7px;
        gap: 4px;
        left: 6px;
        top: 6px;
        background: rgba(255, 255, 255, 0.55);
        border: none;
        box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
    }
    .tx-thumb-rating .fa-star { font-size: 8px; }
}


.tx-pkg-body {
    flex: 1;
    min-width: 0;
    padding: 0 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tx-pkg-rating {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    align-self: flex-start;
    gap: 4px;
    font-size: 12px;
    color: var(--tx-navy);
}

.tx-pkg-rating-star {
    color: #f59e0b;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
}
.tx-pkg-rating-star .fa-star {
    font-size: 12px;
    line-height: 1;
}

.tx-pkg-rating-num {
    font-weight: 800;
    color: #f57f17;
}

.tx-pkg-rating-sep { color: var(--tx-muted); }
.tx-pkg-rating-count { color: var(--tx-muted); font-weight: 500; }

.tx-pkg-title-row {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
    min-width: 0;
}

.tx-pkg-title {
    font-size: 14px;
    font-weight: 300;
    color: var(--tx-text);
    line-height: 1.25;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}

.tx-pkg-dur-badge {
    font-size: 12px;
    font-weight: 500;
    color: var(--tx-muted);
    white-space: nowrap;
}

.tx-pkg-locations {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--tx-muted);
}

.tx-pkg-locations .fa-location-dot { color: #3b8b93; font-size: 12px; }
.tx-pkg-loc-text { line-height: .8; font-weight: 600; }
.tx-pkg-loc-more { color: var(--tx-primary); font-weight: 700; text-decoration: none; }
.tx-pkg-loc-more:hover { text-decoration: underline; }
.tx-pkg-loc-ellipsis { color: var(--tx-text); }

.tx-pkg-buy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 0;
    flex-wrap: wrap;
    line-height: .8;
}

.tx-pkg-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.tx-pkg-price .tx-price-old {
    font-size: 12px;
    color: var(--tx-muted);
    text-decoration: line-through;
}

.tx-pkg-price .tx-price-current {
    font-size: 15px;
    font-weight: 700;
    color: #ff4d3a;
}

.tx-pkg-price .tx-currency {
    font-size: 17px;
    font-weight: 800;
    color: #ff4d3a;
}

.tx-pkg-cta {
    padding: 6px 9px;
    border-radius: 999px;
    background: #09baf0;
    color: #fff;
    font-size: 9px;
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.15;
    text-align: center;
    transition: background 0.15s, transform 0.1s;
}

.tx-pkg-cta:hover { background: #0899c5; transform: translateY(-1px); }

.tx-pkg-cta.disabled {
    background: #e0e0e0;
    color: #9e9e9e;
    cursor: not-allowed;
    pointer-events: none;
}

.tx-pkg-feature-bar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-top: 0;
    padding-top: 0px;
    border-top: 0px solid #f0f0f0;
    font-size: 10px;
}

.tx-pkg-feature {
    min-width: 0;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 3px;
    font-size: 10px;
    color: var(--tx-text);
    text-align: left;
    line-height: .8;
    white-space: normal;
}

.tx-pkg-feature-label { display: inline-block; }

.tx-pkg-feature > i {
    color: #3b8b93;
    font-size: 18px;
}

/* ---- Mobile: package card flush to left screen edge ---- */
@media (max-width: 767px) {
    .tx-section {
        padding-left: 0;
        padding-right: 0;
    }
    .tx-pkg-card {
        border-radius: 14px;
        margin: 0;
        padding: 0;
        width: 100%;
        max-width: 100%;
    }
    .tx-pkg-body,
    .tx-pkg-thumb-wrap {
        margin: 0;
        padding: 0;
    }
    .tx-pkg-thumb-wrap {
        border-radius: 0;
    }
    .tx-user-content {
        padding-left: 0;
        padding-right: 0;
    }
    .bh-sticky-cart-inner {
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }
    .tx-pkg-title { font-size: 14px; font-weight: 800; min-height: auto; }
    .tx-pkg-feature-bar { font-size: 12px; }
    .tx-pkg-feature { font-size: 12px; }
    .tx-pkg-feature > i { font-size: 16px; }
    .tx-pkg-locations { font-size: 12px; }
}

@media (max-width: 500px) {
    .tx-pkg-title { font-size: 14px; font-weight: 800; min-height: auto; }
}

/* ---- TX CTA Banner ---- */
.tx-cta-banner {
    max-width: 600px;
    margin: 28px auto 0;
    padding: 0 16px;
}

.tx-cta-inner {
    background: var(--tx-navy);
    border-radius: var(--tx-radius-lg);
    padding: 28px 24px;
    text-align: center;
    color: #fff;
}

.tx-cta-inner h3 {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.tx-cta-inner p {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    max-width: 400px;
    margin: 0 auto 16px;
    line-height: 1.5;
}

.tx-cta-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    background: var(--tx-orange);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s, transform 0.1s;
}

.tx-cta-btn:hover { background: var(--tx-orange-dark); transform: translateY(-1px); }

/* ---- TX Responsive ---- */
@media (min-width: 768px) {
    .tx-hero-heading { font-size: 28px; }
    .tx-pkg-list { display: grid; grid-template-columns: 1fr; gap: 16px; }
    .tx-search-grid { gap: 16px; }
}

/* ================================================================
   TRAVELX — Packages Listing Page
   ================================================================ */

.tx-listing-header {
    padding: 24px 16px 0;
    max-width: 600px;
    margin: 0 auto;
}

.tx-listing-header h1 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
    color: var(--tx-navy);
    background: none;
    padding: 0;
    line-height: 1.2;
    border-radius: 0;
    margin: 0;
    text-align: left;
}

.tx-listing-header p {
    font-size: 13px;
    color: var(--tx-muted);
    margin-top: 2px;
}

.tx-filter-bar {
    max-width: 760px;
    margin: 10px auto 0;
    padding: 0 12px;
}

.tx-filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    background: #fff;
    border: 1.5px solid var(--tx-border);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

.tx-filter-form .tx-field {
    flex: 1 1 0;
    min-width: 0;
    width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tx-filter-form .tx-field:first-child {
    flex-basis: 100%;
    width: 100%;
}

.tx-filter-form .tx-field-input {
    padding: 8px 10px;
}

.tx-filter-form .tx-field-input .tx-field-icon {
    font-size: 14px;
}

.tx-filter-form .tx-field-input select,
.tx-filter-form .tx-field-input input {
    font-size: 13px;
}

.tx-filter-actions {
    display: flex;
    align-items: stretch;
    gap: 8px;
    flex: 1 1 0;
    width: 0;
    min-width: 0;
}

.tx-filter-submit {
    flex: 1;
    padding: 6px 16px;
    border: none;
    border-radius: var(--tx-radius-sm);
    background: #3b8b93;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: background 0.15s;
}

.tx-filter-submit:hover { background: #2e6f76; }

.tx-filter-reset {
    padding: 10px 16px;
    border: 1.5px solid var(--tx-border);
    border-radius: var(--tx-radius-sm);
    background: #fff;
    color: var(--tx-muted);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s;
}

.tx-filter-reset:hover { border-color: var(--tx-navy); color: var(--tx-navy); }

.tx-pagination,
.bh-pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    padding: 20px 16px 32px;
    max-width: 640px;
    margin: 0 auto;
}

.tx-pagination nav,
.bh-pagination nav {
    width: 100%;
    margin: 0 auto;
}

/* Mobile block: prev / next pills */
.tx-pagination nav > div:first-child,
.bh-pagination nav > div:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

/* Desktop block: showing-text + page numbers, hidden on mobile */
.tx-pagination nav > div:last-child,
.bh-pagination nav > div:last-child {
    display: none;
}

@media (min-width: 641px) {
    .tx-pagination nav > div:first-child,
    .bh-pagination nav > div:first-child {
        display: none;
    }
    .tx-pagination nav > div:last-child,
    .bh-pagination nav > div:last-child {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        width: 100%;
    }
    .tx-pagination .shadow-sm,
    .bh-pagination .shadow-sm {
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .tx-pagination nav > div:last-child > div:first-child p,
    .bh-pagination nav > div:last-child > div:first-child p {
        font-size: 13px;
        color: var(--tx-muted);
        margin: 0;
        white-space: nowrap;
    }
}

/* Pill buttons — links and leaf button spans (Tailwind default pagination view) */
.tx-pagination a,
.tx-pagination .cursor-not-allowed,
.tx-pagination .cursor-default,
.bh-pagination a,
.bh-pagination .cursor-not-allowed,
.bh-pagination .cursor-default {
    min-width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 999px;
    border: 1.5px solid var(--tx-border);
    background: var(--tx-card);
    font-size: 13px;
    font-weight: 600;
    color: var(--tx-text);
    text-decoration: none;
    transition: all 0.15s;
}

.tx-pagination a:hover,
.bh-pagination a:hover {
    background: #d10000;
    border-color: #d10000;
    color: #fff;
}

.tx-pagination .cursor-default,
.bh-pagination .cursor-default {
    background: #d10000;
    border-color: #d10000;
    color: #fff;
    cursor: default;
}

.tx-pagination .cursor-not-allowed,
.bh-pagination .cursor-not-allowed {
    color: var(--tx-muted);
    opacity: 0.5;
    cursor: not-allowed;
}

.tx-pagination svg,
.bh-pagination svg {
    width: 16px;
    height: 16px;
}

.tx-empty {
    text-align: center;
    padding: 60px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.tx-empty-icon { font-size: 3rem; margin-bottom: 12px; opacity: 0.4; }

.tx-empty h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--tx-navy);
    margin-bottom: 6px;
}

.tx-empty p {
    color: var(--tx-muted);
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.tx-empty-link {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 8px;
    background: var(--tx-navy);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s;
}

.tx-empty-link:hover { background: var(--tx-navy-dark); }

/* ================================================================
   TRAVELX — Package Detail Page
   ================================================================ */

.tx-detail-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 16px;
}

.tx-breadcrumb {
    font-size: 12px;
    color: var(--tx-muted);
    padding: 16px 0 12px;
}

.tx-breadcrumb a {
    color: var(--tx-navy);
    text-decoration: none;
    font-weight: 600;
}

.tx-breadcrumb a:hover { text-decoration: underline; }

.tx-detail-hero {
    position: relative;
    border-radius: var(--tx-radius-lg);
    overflow: hidden;
    aspect-ratio: 16 / 8;
    background: linear-gradient(160deg, #e8eaf6, #f0f4f8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tx-detail-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: linear-gradient(160deg, #f0f2f5, #e6e9ee);
}

.tx-detail-hero .tx-detail-emoji { font-size: 4rem; }

.tx-detail-hero .tx-discount-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(46, 125, 50, 0.92);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(4px);
}

.tx-detail-hero .tx-rating-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    color: #f57f17;
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(4px);
}

.tx-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .tx-detail-grid { grid-template-columns: 1fr 300px; gap: 26px; }
}

.tx-detail-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tx-detail-meta h1 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 800;
    color: var(--tx-navy);
    line-height: 1.25;
}

.tx-detail-meta .tx-cat-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--tx-navy);
    margin-bottom: 4px;
}

.tx-detail-meta .tx-cat-label a {
    color: inherit;
    text-decoration: none;
}

.tx-detail-meta .tx-cat-label a:hover { text-decoration: underline; }

.tx-detail-info {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--tx-muted);
    margin-top: 8px;
}

.tx-detail-info span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* TX Panels */
.tx-panel {
    background: var(--tx-card);
    border-radius: var(--tx-radius);
    border: 1px solid var(--tx-border);
    padding: 18px;
}

.tx-panel-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--tx-navy);
    margin-bottom: 12px;
}

.tx-inc-exc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 600px) {
    .tx-inc-exc-grid { grid-template-columns: 1fr 1fr; }
}

/* TX Itinerary */
.tx-itinerary-item {
    border: 1px solid var(--tx-border);
    border-radius: var(--tx-radius-sm);
    overflow: hidden;
}

.tx-itinerary-item + .tx-itinerary-item { margin-top: 8px; }

.tx-itinerary-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    font-weight: 700;
    font-size: 13px;
    color: var(--tx-text);
    background: var(--tx-bg);
    transition: background 0.12s;
}

.tx-itinerary-item summary::-webkit-details-marker { display: none; }
.tx-itinerary-item summary:hover { background: #e8eaf6; }

.tx-day-badge {
    flex-shrink: 0;
    background: var(--tx-navy);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.tx-itinerary-item .bh-rich { padding: 14px 0 0; font-size: 0.88rem; }

/* TX Checklist */
.tx-list-check {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tx-list-check li {
    display: flex;
    gap: 8px;
    font-size: 13px;
    color: var(--tx-text);
}

.tx-list-check li::before {
    content: '✓';
    color: #2e7d32;
    font-weight: 800;
    flex-shrink: 0;
}

.tx-list-cross li::before { content: '✕'; color: #c62828; }

/* TX Sidebar */
.tx-sidebar {
    position: sticky;
    top: 72px;
}

.tx-price-box {
    background: var(--tx-card);
    border: 1px solid var(--tx-border);
    border-radius: var(--tx-radius);
    padding: 18px;
}

.tx-price-old {
    font-size: 13px;
    color: var(--tx-muted);
    text-decoration: line-through;
}

.tx-price-now {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--tx-navy);
}

.tx-price-note {
    display: block;
    font-size: 11px;
    color: var(--tx-muted);
    margin-top: 2px;
}

.tx-add-cart-btn {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 12px;
    border: none;
    border-radius: var(--tx-radius-sm);
    background: var(--tx-navy);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.15s;
}

.tx-add-cart-btn:hover { background: var(--tx-navy-dark); }

.tx-sidebar-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.tx-sidebar-btn {
    flex: 1;
    padding: 10px;
    border: 1.5px solid var(--tx-border);
    border-radius: var(--tx-radius-sm);
    background: var(--tx-card);
    color: var(--tx-text);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s;
}

.tx-sidebar-btn:hover { border-color: var(--tx-navy); color: var(--tx-navy); }

.tx-sidebar-btn.wishlisted { border-color: #e11d48; color: #e11d48; }

.tx-share-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--tx-border);
    font-size: 12px;
    font-weight: 600;
    color: var(--tx-muted);
}

.tx-share-row a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--tx-bg);
    border: 1px solid var(--tx-border);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.12s;
}

.tx-share-row a:hover { background: #e8eaf6; border-color: var(--tx-navy); }

.tx-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
    padding: 7px 0;
    border-bottom: 1px dashed var(--tx-border);
}

.tx-summary-row:last-of-type { border-bottom: none; }
.tx-summary-row strong { color: var(--tx-text); }

/* TX Reviews */
.tx-reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    padding: 20px 16px 0;
    max-width: 900px;
    margin: 0 auto;
}

.tx-reviews-header h2 {
    font-size: 17px;
    font-weight: 800;
    color: var(--tx-navy);
}

.tx-reviews-meta {
    font-size: 12px;
    color: var(--tx-muted);
    font-weight: 600;
}

.tx-review-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 16px;
}

.tx-review-item {
    padding: 16px 0;
    border-bottom: 1px dashed var(--tx-border);
}

.tx-review-item:last-child { border-bottom: none; }

.tx-review-stars {
    color: #f59e0b;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.tx-review-meta {
    font-size: 11px;
    color: var(--tx-muted);
    margin-top: 4px;
}

/* TX Detail page CTA strip */
.tx-detail-cta-strip {
    max-width: 900px;
    margin: 0 auto;
    padding: 24px 16px 32px;
}

.tx-detail-cta-inner {
    background: var(--tx-navy);
    border-radius: var(--tx-radius);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.tx-detail-cta-inner p {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.tx-detail-cta-inner a {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 8px;
    background: var(--tx-orange);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s;
}

.tx-detail-cta-inner a:hover { background: var(--tx-orange-dark); }

/* ================================================================
   TRAVELX — All Devices Responsive
   Mobile-first: base = mobile, then tablet, then desktop
   ================================================================ */

/* ---- Desktop nav bar (hidden on mobile/tablet) ---- */
.tx-desktop-nav {
    display: none;
}

.tx-header-actions-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tx-header-actions-row .bh-user-dropdown {
    position: relative;
}

/* ---- Hide cart in mobile header ---- */
@media (max-width: 767px) {
    .tx-cart-link { display: none; }
}

/* ---- Mobile only: keep hamburger + logo together, no gap ---- */
@media (max-width: 767px) {
    .tx-header-row { justify-content: flex-start; }
    .tx-logo-center { margin-right: auto; }
    .tx-header-actions-row { margin-left: auto; gap: 8px; }
}

/* ============ TABLET (768px+) ============ */
@media (min-width: 768px) {
    /* Header */
    .tx-header { padding: 0 24px; }
    .tx-header-row {
        max-width: 720px;
        height: 45px;
    }
    .tx-hamburger { display: none; }

    .tx-desktop-nav {
        display: flex;
        align-items: center;
        gap: 4px;
        margin-left: auto;
        margin-right: 16px;
    }

    .tx-desktop-nav a {
        font-size: 13px;
        font-weight: 600;
        color: var(--tx-muted);
        text-decoration: none;
        padding: 8px 14px;
        border-radius: 8px;
        transition: all 0.15s;
    }

    .tx-desktop-nav a:hover { color: var(--tx-navy); background: rgba(26,35,126,0.04); }
    .tx-desktop-nav a.active { color: var(--tx-navy); font-weight: 700; background: #e8eaf6; }

    /* Hero */
    .tx-hero { padding: 32px 24px 28px; }
    .tx-hero-inner { max-width: 720px; }
    .tx-hero-heading { font-size: 30px; }
    .tx-hero-sub { font-size: 14px; }
    .tx-search-card { padding: 24px; }
    .tx-search-grid { gap: 16px; }

    /* Filters */
    .tx-filters { max-width: 720px; padding: 20px 24px 8px; }
    .tx-pill { padding: 9px 22px; font-size: 13px; }
    .tx-top-cats { max-width: 720px; padding: 22px 24px 2px; }

    /* Package cards — full-width horizontal list */
    .tx-section { max-width: 720px; }
    .tx-pkg-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* CTA banner */
    .tx-cta-banner { max-width: 720px; }
    .tx-cta-inner { padding: 32px 32px; }
    .tx-cta-inner h3 { font-size: 22px; }
    .tx-cta-inner p { font-size: 14px; }

    /* Packages listing */
    .tx-listing-header { max-width: 720px; padding: 28px 24px 0; }
    .tx-listing-header h1 { font-size: 26px; }
    .tx-listing-header p { font-size: 14px; }
    .tx-filter-bar { max-width: 720px; padding: 0 24px; }
    .tx-filter-form { gap: 12px; }
    .tx-filter-form .tx-field-input select,
    .tx-filter-form .tx-field-input input { font-size: 13px; }
    .tx-filter-actions { gap: 10px; }
    .tx-pagination { max-width: 720px; padding: 24px 24px 40px; }

    /* Detail page */
    .tx-detail-wrap { max-width: 720px; }
    .tx-detail-hero { aspect-ratio: 16 / 7; }
    .tx-detail-meta h1 { font-size: 1.6rem; }
    .tx-detail-info { font-size: 14px; gap: 18px; }
    .tx-panel { padding: 22px; }
    .tx-panel-title { font-size: 16px; }
    .tx-reviews-header { max-width: 720px; padding: 24px 24px 0; }
    .tx-reviews-header h2 { font-size: 19px; }
    .tx-review-card { max-width: 720px; padding: 0 24px; }
    .tx-review-item { padding: 18px 0; }
    .tx-review-item p { font-size: 14px; }
    .tx-detail-cta-strip { max-width: 720px; padding: 28px 24px 40px; }
    .tx-detail-cta-inner { padding: 24px 28px; }
    .tx-detail-cta-inner p { font-size: 15px; }

    /* Sidebar price */
    .tx-price-now { font-size: 1.7rem; }
    .tx-add-cart-btn { font-size: 14px; padding: 14px; }
}

/* ============ DESKTOP (1024px+) ============ */
@media (min-width: 1024px) {
    /* Header */
    .tx-header { padding: 0 32px; }
    .tx-header-row {
        max-width: 1100px;
        height: 45px;
        gap: 20px;
    }
    .tx-logo-center .tx-logo-name { font-size: 20px; }
    .tx-logo-center .tx-logo-sub { font-size: 10px; }

    .tx-desktop-nav a {
        font-size: 14px;
        padding: 10px 16px;
    }

    .tx-avatar-btn { width: 0px; height: 0px; font-size: 11px; }

    /* Hero */
    .tx-hero { padding: 40px 32px 36px; }
    .tx-hero-inner { max-width: 900px; }
    .tx-hero-heading { font-size: 36px; }
    .tx-hero-sub { font-size: 15px; margin-bottom: 24px; }
    .tx-search-card { padding: 28px 28px; border-radius: 20px; box-shadow: 0 6px 30px rgba(0,0,0,0.1); }
    .tx-search-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
    .tx-field-label { font-size: 12px; }
    .tx-field-input { padding: 12px 14px; }
    .tx-field-input input,
    .tx-field-input select { font-size: 14px; }
    .tx-search-btn { padding: 14px; font-size: 15px; border-radius: 10px; }

    /* Filters */
    .tx-filters { max-width: 900px; padding: 24px 32px 8px; }
    .tx-pill { padding: 10px 24px; font-size: 13px; }
    .tx-top-cats { max-width: 900px; padding: 24px 32px 2px; }
    .tx-pill:hover { background: var(--tx-bg); transform: translateY(-1px); }

    /* Package cards — full-width horizontal list */
    .tx-section { max-width: 1000px; }
    .tx-section-title { font-size: 20px; }
    .tx-pkg-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .tx-pkg-card {
        border-radius: 14px;
        transition: box-shadow 0.25s, transform 0.25s;
    }
    .tx-pkg-card:hover { box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12); transform: translateY(-3px); }
    .tx-pkg-title { font-size: 14px; font-weight: 300; }
    .tx-pkg-price .tx-price-current { font-size: 15px; font-weight: 700; }
    .tx-pkg-cta { padding: 6px 8px; font-size: 9px; }
    .tx-pkg-body { padding: 0 0.5rem; }

    /* CTA banner */
    .tx-cta-banner { max-width: 900px; margin-top: 36px; }
    .tx-cta-inner { padding: 36px 40px; border-radius: 20px; }
    .tx-cta-inner h3 { font-size: 24px; }
    .tx-cta-inner p { font-size: 15px; max-width: 480px; }
    .tx-cta-btn { padding: 14px 32px; font-size: 14px; border-radius: 10px; }

    /* Packages listing */
    .tx-listing-header { max-width: 900px; padding: 32px 32px 0; }
    .tx-listing-header h1 { font-size: 28px; }
    .tx-filter-bar { max-width: 900px; padding: 0 32px; }
    .tx-filter-form .tx-field-input select,
    .tx-filter-form .tx-field-input input { font-size: 14px; }
    .tx-filter-submit { font-size: 14px; padding: 6px 16px; }
    .tx-filter-reset { font-size: 14px; padding: 10px 16px; }
    .tx-pagination { max-width: 900px; padding: 28px 32px 48px; }
    .tx-empty { padding: 80px 32px; }

    /* Detail page */
    .tx-detail-wrap { max-width: 960px; padding: 0 32px; }
    .tx-detail-hero { aspect-ratio: 21 / 9; border-radius: 20px; }
    .tx-detail-hero .tx-discount-badge,
    .tx-detail-hero .tx-rating-badge { font-size: 13px; padding: 8px 16px; }
    .tx-detail-meta h1 { font-size: 1.8rem; }
    .tx-detail-info { font-size: 14px; }
    .tx-panel { padding: 24px; border-radius: var(--tx-radius-lg); }
    .tx-panel-title { font-size: 17px; margin-bottom: 14px; }
    .tx-itinerary-item summary { font-size: 14px; padding: 14px 16px; }
    .tx-itinerary-item .bh-rich { font-size: 0.9rem; }
    .tx-list-check li { font-size: 14px; }

    /* Sidebar */
    .tx-sidebar .tx-price-box { padding: 22px; border-radius: var(--tx-radius-lg); }
    .tx-price-now { font-size: 1.8rem; }
    .tx-add-cart-btn { font-size: 15px; padding: 14px; border-radius: 10px; }
    .tx-sidebar-btn { font-size: 13px; padding: 11px 14px; }
    .tx-summary-row { font-size: 14px; padding: 8px 0; }

    /* Reviews */
    .tx-reviews-header { max-width: 960px; padding: 28px 32px 0; }
    .tx-reviews-header h2 { font-size: 21px; }
    .tx-review-card { max-width: 960px; padding: 0 32px; }
    .tx-review-item { padding: 20px 0; }
    .tx-review-item strong { font-size: 15px; }
    .tx-review-item p { font-size: 14px; }
    .tx-review-meta { font-size: 12px; }

    /* Detail CTA */
    .tx-detail-cta-strip { max-width: 960px; padding: 32px 32px 48px; }
    .tx-detail-cta-inner { padding: 28px 32px; border-radius: var(--tx-radius-lg); }
    .tx-detail-cta-inner p { font-size: 16px; }
    .tx-detail-cta-inner a { padding: 12px 28px; font-size: 14px; border-radius: 10px; }

    /* Footer gets wider */
    .bh-footer-inner { max-width: 1100px; padding: 52px 32px 28px; }
    .bh-footer-brand h3 { font-size: 1.5rem; }
    .bh-footer-col h4 { font-size: 0.92rem; }
    .bh-footer-links a, .bh-footer-links .bh-footer-text { font-size: 0.85rem; }
    .bh-footer-bottom { font-size: 0.82rem; }
}

/* ============ LARGE DESKTOP (1280px+) ============ */
@media (min-width: 1280px) {
    .tx-header-row { max-width: 1200px; }
    .tx-hero-inner { max-width: 1000px; }
    .tx-hero-heading { font-size: 40px; }
    .tx-search-card { padding: 32px; }
    .tx-search-grid { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 20px; }
    .tx-search-btn { grid-column: 1 / -1; }
    .tx-filters { max-width: 1000px; }
    .tx-section { max-width: 1200px; }
    .tx-top-cats { max-width: 1000px; }
    .tx-pkg-list { grid-template-columns: repeat(4, 1fr); }
    .tx-cta-banner { max-width: 1200px; }
    .tx-listing-header { max-width: 1000px; }
    .tx-filter-bar { max-width: 1000px; }
    .tx-pagination { max-width: 1000px; }
    .tx-detail-wrap { max-width: 1100px; }
    .tx-reviews-header { max-width: 1100px; }
    .tx-review-card { max-width: 1100px; }
    .tx-detail-cta-strip { max-width: 1100px; }

    /* Vertical compact cards for 4-per-row desktop grid */
    .tx-pkg-card {
        flex-direction: column;
        gap: 10px;
    }
    .tx-pkg-thumb-wrap {
        width: 100%;
        flex: none;
        aspect-ratio: 16 / 10;
        margin: 0;
    }
    .tx-pkg-body { padding: 0px 10px 20px 16px; }
    .tx-pkg-buy { flex-wrap: wrap; }
    .tx-pkg-cta { font-size: 10px; }
}

/* ================================================================
   TRAVELX — Admin Panel Overrides
   ================================================================ */

/* Override bh-primary for admin pages */
.tx-admin {
    --bh-primary: #1a237e;
    --bh-primary-dark: #0d1442;
    --bh-yellow: #ff6d00;
    --bh-success: #2e7d32;
}

.tx-admin .bh-admin-shell { background: #f0f4f8; }

.tx-admin .bh-admin-sidebar {
    background: #0d1442;
    border-right: 1px solid rgba(255,255,255,0.06);
}

.tx-admin .bh-admin-logo {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.tx-admin .bh-admin-nav-link:hover { background: rgba(255,255,255,0.08); }
.tx-admin .bh-admin-nav-link.active { background: #1a237e; color: #fff; }
.tx-admin .bh-admin-nav-link.active::before { background: #ff6d00; }

.tx-admin .bh-admin-main {
    background: #f0f4f8;
    min-height: 100vh;
}

.tx-admin .bh-admin-topbar h1 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0d1442;
}

/* TX Admin stat cards */
.tx-admin .bh-stat-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.tx-admin .bh-stat-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.tx-admin .bh-stat-card .icon {
    background: #e8eaf6;
    border-radius: 10px;
}

.tx-admin .bh-stat-card .num { color: #0d1442; }

/* TX Admin tables */
.tx-admin .bh-table-wrap {
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.tx-admin .bh-table th {
    background: #e8eaf6;
    color: #1a237e;
    font-size: 0.72rem;
    letter-spacing: 0.8px;
}

.tx-admin .bh-table tbody tr:hover { background: #f5f7fa; }

/* TX Admin panels */
.tx-admin .bh-panel {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

.tx-admin .bh-panel-title {
    color: #1a237e;
    font-size: 0.95rem;
    font-weight: 800;
}

/* TX Admin buttons */
.tx-admin .bh-btn-primary {
    background: #1a237e;
    border-color: #1a237e;
}

.tx-admin .bh-btn-primary:hover {
    background: #0d1442;
    border-color: #0d1442;
}

.tx-admin .bh-btn-outline {
    border-color: #1a237e;
    color: #1a237e;
}

.tx-admin .bh-btn-outline:hover {
    background: #e8eaf6;
    border-color: #1a237e;
}

.tx-admin .bh-btn-yellow {
    background: #ff6d00;
    border-color: #ff6d00;
    color: #fff;
}

.tx-admin .bh-btn-yellow:hover {
    background: #e65100;
    border-color: #e65100;
}

/* TX Admin form inputs */
.tx-admin .bh-input,
.tx-admin .bh-select,
.tx-admin .bh-textarea {
    border-color: #d1d5db;
    border-radius: 8px;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.tx-admin .bh-input:focus,
.tx-admin .bh-select:focus,
.tx-admin .bh-textarea:focus {
    border-color: #1a237e;
    box-shadow: 0 0 0 3px rgba(26,35,126,0.1);
}

/* TX Admin toolbar */
.tx-admin .bh-admin-toolbar {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px;
}

/* TX Admin badges */
.tx-admin .bh-badge { border-radius: 20px; font-size: 0.68rem; }
.tx-admin .bh-badge-pending { background: #fff8e1; color: #f57f17; border-color: #ffe082; }
.tx-admin .bh-badge-confirmed { background: #e8f5e9; color: #2e7d32; border-color: #a5d6a7; }
.tx-admin .bh-badge-completed { background: #e3f2fd; color: #1565c0; border-color: #90caf9; }
.tx-admin .bh-badge-cancelled { background: #fce4ec; color: #c62828; border-color: #ef9a9a; }

/* TX Admin pagination */
.tx-admin .bh-pagination a { border-radius: 8px; }
.tx-admin .bh-pagination .current { background: #1a237e; border-color: #1a237e; }

/* TX Admin summary rows */
.tx-admin .bh-summary-row { border-bottom-color: #e5e7eb; }
.tx-admin .bh-summary-total { background: #e8eaf6; border-radius: 8px; }
.tx-admin .bh-summary-total .amount { color: #1a237e; }

/* TX Admin alerts */
.tx-admin .bh-alert-success { background: #e8f5e9; color: #2e7d32; border-color: #a5d6a7; border-radius: 10px; }
.tx-admin .bh-alert-error { background: #fce4ec; color: #c62828; border-color: #ef9a9a; border-radius: 10px; }

/* TX Admin responsive sidebar */
@media (max-width: 900px) {
    .tx-admin .bh-admin-sidebar {
        position: fixed;
        z-index: 1300;
        left: 0;
        top: 0;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 4px 0 24px rgba(0,0,0,0.2);
        width: 260px;
    }

    .tx-admin .bh-admin-sidebar.open { transform: translateX(0); }

    .tx-admin .bh-admin-main { padding: 16px; }

    .tx-admin .bh-admin-toggle {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 16px;
        border: 1.5px solid #e5e7eb;
        border-radius: 8px;
        background: #fff;
        color: #1a237e;
        font-size: 13px;
        font-weight: 700;
        cursor: pointer;
    }

    .tx-admin .bh-admin-2col { grid-template-columns: 1fr !important; }

    /* Mobile sidebar overlay */
    .tx-admin .bh-admin-sidebar-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 1299;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s, visibility 0.25s;
    }

    .tx-admin .bh-admin-sidebar-overlay.open { opacity: 1; visibility: visible; }
}

@media (min-width: 901px) {
    .tx-admin .bh-admin-toggle { display: none !important; }
    .tx-admin .bh-admin-sidebar-overlay { display: none; }
}

/* ================================================================
   TRAVELX — User Panel Overrides
   ================================================================ */

.tx-user .tx-header { box-shadow: 0 1px 4px rgba(0,0,0,0.06); }

/* TX User page headers */
.tx-user-page {
    max-width: 860px;
    margin: 0 auto;
    padding: 24px 16px 0;
}

.tx-user-page h1 {
    font-size: 22px;
    font-weight: 800;
    color: var(--tx-navy);
}

.tx-user-page p {
    font-size: 13px;
    color: var(--tx-muted);
    margin-top: 2px;
}

/* TX User stats strip */
.tx-user-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 16px 0 20px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 16px;
}

.tx-user-stat {
    background: var(--tx-card);
    border: 1px solid var(--tx-border);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    transition: box-shadow 0.2s;
}

.tx-user-stat:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.06); }

.tx-user-stat .tx-stat-num {
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--tx-navy);
}

.tx-user-stat .tx-stat-lbl {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--tx-muted);
    margin-top: 2px;
}

/* TX User content wrapper */
.tx-user-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 16px 32px;
}

/* TX User panels */
.tx-user .tx-panel {
    background: var(--tx-card);
    border: 1px solid var(--tx-border);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}

.tx-user .tx-panel-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--tx-navy);
    margin-bottom: 14px;
}

/* TX User form grid */
.tx-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.tx-form-grid .tx-form-full { grid-column: 1 / -1; }

@media (max-width: 600px) {
    .tx-form-grid { grid-template-columns: 1fr; }
    .tx-user-stats { grid-template-columns: 1fr; gap: 10px; }
}

/* TX User form groups */
.tx-form-group { display: flex; flex-direction: column; gap: 5px; }

.tx-form-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--tx-text);
}

.tx-form-input {
    padding: 10px 12px;
    border: 1.5px solid var(--tx-border);
    border-radius: 8px;
    font-size: 14px;
    color: var(--tx-text);
    background: var(--tx-bg);
    transition: border-color 0.15s, box-shadow 0.15s;
    outline: none;
}

.tx-form-input:focus {
    border-color: var(--tx-navy);
    box-shadow: 0 0 0 3px rgba(26,35,126,0.1);
    background: #fff;
}

.tx-form-input::placeholder { color: var(--tx-muted); }

.tx-form-error {
    font-size: 12px;
    color: #c62828;
    margin-top: 2px;
}

/* TX User buttons */
.tx-btn {
    display: inline-block;
    padding: 11px 22px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.15s;
    border: none;
}

.tx-btn-primary {
    background: var(--tx-navy);
    color: #fff;
}

.tx-btn-primary:hover { background: var(--tx-navy-dark); transform: translateY(-1px); }

.tx-btn-orange {
    background: var(--tx-orange);
    color: #fff;
}

.tx-btn-orange:hover { background: var(--tx-orange-dark); transform: translateY(-1px); }

.tx-btn-outline {
    background: var(--tx-card);
    border: 1.5px solid var(--tx-border);
    color: var(--tx-text);
}

.tx-btn-outline:hover { border-color: var(--tx-navy); color: var(--tx-navy); }

.tx-btn-sm { padding: 9px 18px; font-size: 12px; }

/* TX User booking cards */
.tx-booking-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tx-booking-card {
    background: var(--tx-card);
    border: 1px solid var(--tx-border);
    border-radius: 12px;
    padding: 18px;
    transition: box-shadow 0.2s;
}

.tx-booking-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.06); }

.tx-booking-header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.tx-booking-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--tx-text);
}

.tx-booking-meta {
    font-size: 12px;
    color: var(--tx-muted);
    margin-top: 4px;
}

.tx-booking-price {
    font-size: 18px;
    font-weight: 900;
    color: var(--tx-navy);
}

.tx-booking-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.tx-booking-hotel {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 9px 12px;
    background: #f2f6fd;
    border: 1px solid #dfe7f7;
    border-radius: 10px;
    font-size: 12px;
    color: var(--tx-muted);
}

.tx-booking-hotel-icon { font-size: 14px; line-height: 1; }

.tx-booking-hotel-txt strong { color: var(--tx-navy); }

.tx-booking-req {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 9px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.tx-booking-req-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }

.tx-booking-req.status-requested { background: #fff6dd; color: #946200; border: 1px solid #f3dfa5; }
.tx-booking-req.status-approved { background: #e8f7ee; color: #0f6b3e; border: 1px solid #bfe8cf; }
.tx-booking-req.status-rejected { background: #fdecec; color: #a30000; border: 1px solid #f5c2c2; }


/* TX User success page */
.tx-success-wrap {
    max-width: 600px;
    margin: 32px auto;
    padding: 0 16px;
}

.tx-success-card {
    background: var(--tx-card);
    border: 1px solid var(--tx-border);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
}

.tx-success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: #e8f5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #2e7d32;
    border: 3px solid #a5d6a7;
}

.tx-success-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--tx-navy);
}

.tx-success-subtitle {
    font-size: 14px;
    color: var(--tx-muted);
    margin-top: 6px;
}

.tx-booking-number {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 10px;
    background: #e8eaf6;
    border: 1.5px dashed #9fa8da;
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 1.5px;
    color: var(--tx-navy);
    margin: 14px 0 6px;
}

.tx-success-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .tx-user-page h1 { font-size: 18px; }
    .tx-success-card { padding: 24px 18px; }
    .tx-booking-header { flex-direction: column; }
}

@media (min-width: 768px) {
    .tx-user-page { padding: 28px 24px 0; }
    .tx-user-page h1 { font-size: 26px; }
    .tx-user-content { padding: 0 24px 40px; }
    .tx-user-stats { padding: 0 24px; }
}

@media (min-width: 1024px) {
    .tx-user-page { padding: 32px 32px 0; }
    .tx-user-page h1 { font-size: 28px; }
    .tx-user-content { padding: 0 32px 48px; max-width: 960px; }
    .tx-user-stats { padding: 0 32px; max-width: 960px; }
    .tx-success-wrap { max-width: 660px; }
}

/* ============================================================
   HEADER REDESIGN — WHEELER'S FOOD THEME (red band + pills)
   ============================================================ */
.tx-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #edf5f5ed;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    padding: 0px 10px 0px 0px;
}

.tx-header-row { height: 45px; }

.tx-hamburger { color: #1565c0; }
.tx-hamburger span { background: #1565c0; }

.tx-search-toggle {
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.65);
    color: #1565c0;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
}
.tx-search-toggle:hover { color: #0d47a1; background: #fff; }

/* Always hide search toggle — search is only in mobile bottom nav */
.tx-search-toggle { display: none !important; }

.tx-logo-center .tx-logo-name { color: #0d47a1; }
.tx-logo-center .tx-logo-sub { color: #1565c0; }

.tx-avatar-btn {
    border: none;
    background: #fff;
    color: #1565c0;
    margin-bottom: 6px;
}

.tx-desktop-nav a {
    font-size: 13px;
    font-weight: 600;
    color: rgba(13,71,161,0.92);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.18s;
}
.tx-desktop-nav a:hover { color: #0d47a1; background: rgba(255,255,255,0.55); }
.tx-desktop-nav a.active {
    color: #0d47a1;
    background: #fff;
    border-color: #fff;
    font-weight: 800;
}

.tx-cart-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.65);
    color: #1565c0;
    transition: background 0.18s, color 0.18s;
}
.tx-cart-link:hover { color: #0d47a1; background: #fff; }

.tx-cart-badge { background: #fabb00; color: #1c0101; }

.tx-avatar-btn {
    border: none;
    background: #fff;
    color: #1565c0;
}

/* ---- Language Dropdown ---- */
.tx-lang-dropdown { position: relative; }
.tx-lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    border: none;
    border-radius: 20px;
    background: rgba(255,255,255,0.65);
    padding: 5px 12px 5px 6px;
    cursor: pointer;
    transition: background 0.18s;
    height: 38px;
}
.tx-lang-btn:hover { background: #fff; }
.tx-flag-icon {
    width: 24px;
    height: 18px;
    border-radius: 3px;
    object-fit: cover;
}
.tx-lang-text {
    font-size: 12px;
    font-weight: 700;
    color: #1565c0;
    letter-spacing: 0.3px;
}
.tx-lang-arrow {
    font-size: 9px;
    color: #1565c0;
    transition: transform 0.2s;
}
.tx-lang-dropdown.open .tx-lang-arrow { transform: rotate(180deg); }
.tx-lang-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 170px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.14);
    z-index: 1000;
    overflow: hidden;
    padding: 6px 0;
}
.tx-lang-dropdown.open .tx-lang-menu { display: block; }
.tx-lang-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: background 0.12s;
}
.tx-lang-item:hover { background: #f0f4ff; }
.tx-lang-item.active { color: #1565c0; font-weight: 700; background: #e8eaf6; }
.tx-lang-item img {
    width: 22px;
    height: 16px;
    border-radius: 2px;
    object-fit: cover;
}

/* Language dropdown - responsive adjustments */
@media (max-width: 767px) {
    .tx-lang-text { font-size: 10px; }
    .tx-flag-icon { width: 16px; height: 12px; }
    .tx-lang-btn { padding: 0px 10px 0px 7px; height: 26px; gap: 7px; }
}

/* ---- Mobile Search Overlay ---- */
.bh-mobile-search-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    align-items: flex-start;
    justify-content: center;
    padding-top: 60px;
}
.bh-mobile-search-overlay.open {
    display: flex;
}
.bh-mobile-search-bar {
    width: 92%;
    max-width: 500px;
    animation: bhMobSearchIn 0.2s ease;
}
@keyframes bhMobSearchIn {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.bh-mobile-search-form {
    display: flex;
    align-items: center;
    gap: 0;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.18);
}
.bh-mobile-search-close {
    border: none;
    background: transparent;
    font-size: 20px;
    color: #666;
    padding: 14px 10px 14px 14px;
    cursor: pointer;
    flex-shrink: 0;
}
.bh-mobile-search-close:hover { color: #333; }
.bh-mobile-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    padding: 14px 0;
    color: #222;
    background: transparent;
}
.bh-mobile-search-input::placeholder { color: #aaa; }
.bh-mobile-search-submit {
    border: none;
    background: #1565c0;
    color: #fff;
    font-size: 16px;
    padding: 14px 18px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.15s;
}
.bh-mobile-search-submit:hover { background: #0d47a1; }

/* ============================================================
   SECTION / CATEGORY HEADING BANNERS — WHEELER'S FOOD THEME
   (yellow curved band, bold uppercase dark text)
   ============================================================ */
.tx-section-title {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-width: 240px;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #222;
    background: linear-gradient(90deg, #f0b400 0%, #fabb00 100%);
    padding: 0 26px 0 18px;
    line-height: 40px;
    border-radius: 0 700px 0 0;
    position: relative;
    margin: 0 0 0 calc(50% - 50vw);
}

.tx-listing-header h1 {
    display: block;
    width: auto;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
    color: var(--tx-navy);
    background: none;
    padding: 0;
    line-height: 1.2;
    border-radius: 0;
    margin: 0;
}

.tx-section-header {
    padding: 8px 0 10px;
}

.tx-listing-header p {
    font-size: 13px;
    color: var(--tx-muted);
    margin: 6px 0 0;
    text-align: left;
}

@media (max-width: 640px) {
    .tx-section-title {
        font-size: 14px;
        line-height: 34px;
        letter-spacing: 0.5px;
        padding: 0 18px 0 12px;
        min-width: 200px;
    }
    .tx-listing-header h1 { font-size: 16px; }
}

/* ============================================================
   FONT FAMILY — WHEELER'S FOOD MATCH
   Roboto for all headings and body
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
}

.tx-logo-center .tx-logo-name,
.bh-brand-title,
.bh-mobile-menu-header div:last-child,
.tx-drawer-header .tx-drawer-brand,
.bh-footer-brand h3,
.tx-hero-heading {
}

/* ============================================================
   MOBILE APP BOTTOM NAV — consistent on every page
   ============================================================ */
.bh-app-nav { display: none; }

@media (max-width: 768px) {
.bh-app-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: fixed;
    bottom: 10px;
    left: 12px;
    right: 12px;
    width: auto;
    height: 56px;
    z-index: 990;
    padding: 6px 8px;
    background: rgba(255,255,255,.97);
    border: 1px solid #e6e6e6;
    border-radius: 30px;
    box-shadow: 0 8px 26px rgba(0,0,0,.12);
    backdrop-filter: blur(6px);
}
.bh-app-nav .nav-item {
    color: #666;
    text-decoration: none;
    text-align: center;
    font-size: 9px;
    line-height: 1.15;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
}
.bh-app-nav .nav-item.active {
    color: #ff6d00;
    font-weight: 600;
}
.bh-app-nav .nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 26px;
    width: 38px;
    font-size: 19px;
    line-height: 26px;
    border-radius: 14px;
    color: inherit;
}
.bh-app-nav .nav-item.active .nav-icon {
    background: #fff0e0;
}
.bh-app-nav .bh-nav-search {
    border: none;
    background: transparent;
    cursor: pointer;
    font: inherit;
    color: inherit;
}

    .bh-sticky-cart { bottom: 76px !important; }
    body { padding-bottom: 76px; }

    .bh-footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .bh-footer-inner { padding: 32px 16px 20px; }
    .bh-footer-brand h3 { font-size: 1.1rem; }
    .bh-footer-brand p { font-size: 0.78rem; }
    .bh-footer-col h4 { font-size: 0.8rem; margin-bottom: 8px; }
    .bh-footer-links a, .bh-footer-links p { font-size: 0.75rem; padding: 2px 0; }
    .bh-footer-newsletter { flex-direction: column; align-items: stretch; }
    .bh-footer-bottom { font-size: 0.7rem; padding-top: 14px; }

    .tx-cart-link { width: 28px; height: 28px; }
    .tx-cart-link svg { width: 16px; height: 16px; }
}
@media (max-width: 360px) {
    .bh-app-nav .nav-item { font-size: 8px; }
    .bh-app-nav .nav-icon { height: 22px; width: 30px; font-size: 16px; line-height: 22px; }
}

/* ============================================================
   SUCCESS MODAL — admin save confirmation popup
   ============================================================ */
.bh-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.bh-modal.open { display: flex; }
.bh-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .55);
}
.bh-modal-box {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 30px 26px 24px;
    text-align: center;
    width: min(92vw, 420px);
    box-shadow: 0 20px 50px rgba(0,0,0,.28);
    animation: bh-modal-pop .25s ease;
}
@keyframes bh-modal-pop {
    from { transform: scale(.85); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
}
.bh-modal-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: var(--bh-success, #16a34a);
    color: #fff;
    font-size: 34px;
    font-weight: 800;
    line-height: 64px;
    box-shadow: 0 6px 16px rgba(22, 163, 74, .35);
}
.bh-modal-box h3 {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 700;
    color: var(--bh-dark, #222);
}
.bh-modal-box p {
    margin: 0 0 22px;
    color: #475569;
    font-size: 14px;
    line-height: 1.55;
    word-break: break-word;
}
.bh-modal-ok {
    display: inline-block;
    padding: 10px 32px;
    border: none;
    border-radius: 10px;
    background: var(--bh-success, #16a34a);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: filter .15s ease;
}
.bh-modal-ok:hover { filter: brightness(1.08); }
.bh-modal-ok:focus { outline: 3px solid rgba(22, 163, 74, .4); outline-offset: 2px; }

/* ================================================================
   Listing cards = home (bh-mob-home tour-card) design — ALL viewports
   Placed last so it wins over earlier card + desktop-grid rules.
   ================================================================ */
.tx-pkg-list {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
}
.tx-pkg-list > .tx-pkg-card,
.tx-pkg-list .tx-pkg-body,
.tx-pkg-list .tx-pkg-thumb-wrap {
    margin: 0;
    padding: 1px;
    width: 100%;
    max-width: 100%;
    border-radius: 14px;
    overflow: hidden;
}
.tx-pkg-list > .tx-pkg-card {
    flex-direction: row;
}
.tx-pkg-list .tx-pkg-thumb-wrap {
    flex: 0 0 33%;
    width: 33%;
    aspect-ratio: 1 / 1;
    margin-right: 10px;
}
.tx-pkg-list .tx-pkg-body.textp {
    margin-left: 0;
    position: relative;
}
.tx-pkg-list .tx-pkg-cta {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 2;
    padding: 4px 23px;
    background: #3b8b93;
    color: #fff;
    font-size: 11px;
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
    text-align: center;
    transition: background 0.15s, transform 0.1s;
    margin-right: 10px;
    flex-shrink: 0;
}
.tx-pkg-list .tx-pkg-body .tx-pkg-buy {
    flex-wrap: nowrap;
}
.tx-pkg-list .tx-pkg-body {
    font-size: 12px;
}
.tx-pkg-list .tx-pkg-body .tx-pkg-locations,
.tx-pkg-list .tx-pkg-body .tx-pkg-feature-bar,
.tx-pkg-list .tx-pkg-body .tx-pkg-feature {
    font-size: 12px;
}
.tx-pkg-list .tx-pkg-body .tx-pkg-feature .tx-pkg-feature-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--tx-muted);
}
.tx-pkg-list .tx-pkg-body .tx-pkg-dur-badge {
    font-size: 12px;
}

/* ================================================================
   Desktop (1024px+): 3 cards per row, vertical cards, full-width CTA
   ================================================================ */
@media (min-width: 1024px) {
    .tx-pkg-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
        align-items: stretch;
    }
    .tx-pkg-list > .tx-pkg-card {
        flex-direction: column;
        align-items: stretch;
    }
    .tx-pkg-list .tx-pkg-thumb-wrap {
        flex: none;
        width: 100%;
        aspect-ratio: 16 / 10;
        margin: 0;
    }
    .tx-pkg-list .tx-pkg-body.textp {
        position: static;
        margin: 0;
        padding: 12px 14px 16px;
    }
    .tx-pkg-list .tx-pkg-body .tx-pkg-buy {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        flex-wrap: nowrap;
    }
    .tx-pkg-list .tx-pkg-cta {
        position: static;
        transform: none;
        margin: 0;
        padding: 11px 12px;
        border-radius: 8px;
        font-size: 13px;
        letter-spacing: 0.4px;
    }
    .tx-pkg-list .tx-pkg-body {
        font-size: 13px;
    }
    .tx-pkg-list .tx-pkg-body .tx-pkg-locations,
    .tx-pkg-list .tx-pkg-body .tx-pkg-feature-bar,
    .tx-pkg-list .tx-pkg-body .tx-pkg-feature {
        font-size: 13px;
    }
    .tx-pkg-list .tx-pkg-body .tx-pkg-feature .tx-pkg-feature-label {
        font-size: 13px;
    }
    .tx-pkg-list .tx-pkg-body .tx-pkg-dur-badge {
        font-size: 13px;
    }
    .tx-pkg-list .tx-pkg-title {
        font-size: 15px;
    }
}

/* ============ PWA INSTALL INDICATOR + MENU ============ */
.bh-install-indicator {
    position: fixed;
    right: 16px;
    bottom: 22px;
    z-index: 980;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #3b8b93;
    font-size: 24px;
    box-shadow: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.15s, background 0.15s;
}

.bh-install-logo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #ffffff;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    box-sizing: border-box;
    box-shadow: none;
}

.bh-install-indicator:hover { background: transparent; transform: translateY(-1px); }

.bh-install-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff4d3a;
    border: 2px solid #fff;
    animation: bh-install-pulse 1.8s ease-in-out infinite;
}

@keyframes bh-install-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.35); opacity: 0.75; }
}

.bh-install-menu {
    position: fixed;
    right: 12px;
    bottom: 80px;
    z-index: 981;
    width: 240px;
    background: #fff;
    border: 1px solid var(--tx-border);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.bh-install-menu[hidden] { display: none; }

.bh-install-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 11px 12px;
    border: none;
    border-radius: 8px;
    background: none;
    color: var(--tx-text);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s;
}

.bh-install-menu-item i { color: #3b8b93; width: 18px; text-align: center; }

.bh-install-menu-item:hover { background: #eef7f8; }

.bh-install-sheet {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.55);
}

.bh-install-sheet[hidden] { display: none; }

.bh-install-sheet-inner {
    width: 100%;
    max-width: 340px;
    background: #fff;
    border-radius: 16px;
    padding: 26px 22px;
    text-align: center;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}

.bh-install-sheet .install-sheet-icon {
    font-size: 40px;
    color: #3b8b93;
}

.bh-install-sheet h3 {
    font-family: var(--bh-font-display, inherit);
    font-size: 18px;
    margin: 12px 0 8px;
    color: var(--tx-text);
}

.bh-install-sheet p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--tx-muted);
    margin: 0 0 18px;
}

.bh-install-sheet-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: var(--tx-radius-sm);
    background: #3b8b93;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s;
}

.bh-install-sheet-btn:hover { background: #2e6f76; }
