/* 
 * LUXE Hotel — Customer App Styles
 * Premium, Dark Mode, Glassmorphism, Mobile-First
 */

:root {
    --bg-dark: #0f0f1a;
    --bg-card: rgba(25, 25, 40, 0.7);
    --text-light: #f5f5f5;
    --text-muted: #cdcdde; /* Further brightened for readability */
    --accent-gold: #c9a84c;
    --accent-red: #e94560;
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.45);
    --header-bg: rgba(15, 15, 26, 0.85);
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* SKELETON LOADING SYSTEM */
.skeleton {
    background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
    border-radius: 8px;
}

@keyframes skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-pill { width: 100px; height: 36px; border-radius: 20px; flex-shrink: 0; }
.skeleton-card { width: 100%; height: 100px; border-radius: 12px; margin-bottom: 12px; }

/* CART INTERACTION FEEDBACK */
@keyframes cart-blink {
    0% { transform: scale(1); }
    25% { transform: scale(1.4); color: var(--accent-gold); }
    50% { transform: scale(1); }
    75% { transform: scale(1.4); color: var(--accent-gold); }
    100% { transform: scale(1); }
}

.cart-pulse {
    animation: cart-blink 0.6s ease-in-out;
}

.mini-toast {
    background: var(--accent-gold) !important;
    color: #000 !important;
    font-weight: 700 !important;
    font-size: 0.75rem !important;
    padding: 5px 12px !important;
    border-radius: 20px !important;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.4) !important;
}

/* IMAGE PREVIEW STYLES */
#imagePreviewModal .modal-content {
    animation: zoomIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.clickable-image {
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.clickable-image:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

[data-theme="light"] {
    --bg-dark: #fcfcfd;
    --bg-card: rgba(255, 255, 255, 0.85);
    --text-light: #1a1a2e;
    --text-muted: #5e6675;
    --accent-gold: #5f27cd;
    /* High-Glow Violet */
    --accent-red: #ff4757;
    --glass-border: rgba(255, 255, 255, 1);
    --glass-shadow: 0 10px 40px rgba(95, 39, 205, 0.1);
    --header-bg: linear-gradient(135deg, #7158e2 0%, #5f27cd 100%);
    --card-shadow: 0 4px 20px rgba(95, 39, 205, 0.05);
}

[data-theme="light"] .glass-header {
    background: linear-gradient(135deg, #7158e2 0%, #5f27cd 100%) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 4px 20px rgba(95, 39, 205, 0.15);
}

[data-theme="light"] .hotel-logo {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

[data-theme="light"] #theme-toggle,
[data-theme="light"] #btn-change-location,
[data-theme="light"] .location-badge,
[data-theme="light"] .badge.border-gold {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
}

[data-theme="light"] .badge.border-gold i {
    color: #ffffff !important;
}

[data-theme="light"] .search-input-group {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

[data-theme="light"] .search-input {
    color: #ffffff !important;
}

[data-theme="light"] .search-input::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

[data-theme="light"] .categories-container {
    background: #f8f9fa !important;
    border-bottom: 1px solid rgba(95, 39, 205, 0.1) !important;
}

[data-theme="light"] .cat-pill {
    background: #ffffff !important;
    border: 1px solid rgba(95, 39, 205, 0.15) !important;
    color: #5e6675 !important;
}

[data-theme="light"] .cat-pill.active {
    background: #7158e2 !important;
    color: #ffffff !important;
    border-color: #7158e2 !important;
    box-shadow: 0 4px 12px rgba(113, 88, 226, 0.3) !important;
}

[data-theme="light"] .menu-card {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-left: 4px solid #7158e2 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
}

[data-theme="light"] .qty-val {
    color: #1a1a2e !important;
}

[data-theme="light"] .qty-control {
    background: rgba(113, 88, 226, 0.05) !important;
    border-color: #7158e2 !important;
}

[data-theme="light"] .qty-btn {
    color: #7158e2 !important;
}

[data-theme="light"] .btn-primary,
[data-theme="light"] .btn-add,
[data-theme="light"] .text-gold {
    background: #7158e2 !important;
    border-color: #7158e2 !important;
    color: #ffffff !important;
}

[data-theme="light"] .text-gold {
    background: transparent !important;
    color: #7158e2 !important;
}

[data-theme="light"] .bottom-nav {
    background: #f8f9ff !important;
    border-top: 1px solid rgba(95, 39, 205, 0.1) !important;
    box-shadow: 0 -4px 20px rgba(95, 39, 205, 0.05) !important;
}

[data-theme="light"] .nav-item {
    color: #a1a1b5 !important;
}

[data-theme="light"] .nav-item.active {
    color: #5f27cd !important;
}

[data-theme="light"] .glass-card,
[data-theme="light"] .modal-content,
[data-theme="light"] .offcanvas {
    background: #ffffff !important;
    color: #1a1a2e !important;
    border-color: rgba(95, 39, 205, 0.1) !important;
}

[data-theme="light"] .text-light,
[data-theme="light"] .text-white {
    color: #1a1a2e !important;
}

[data-theme="light"] .stepper::before {
    background: rgba(95, 39, 205, 0.1) !important;
}

[data-theme="light"] .step-icon {
    background: #f8f9fa !important;
    border-color: rgba(95, 39, 205, 0.1) !important;
    color: #a1a1b5 !important;
}

[data-theme="light"] .step.active .step-icon {
    background: #5f27cd !important;
    color: #ffffff !important;
    box-shadow: 0 0 15px rgba(95, 39, 205, 0.3) !important;
}

[data-theme="light"] .step.completed .step-icon {
    background: #28a745 !important;
    color: #ffffff !important;
}

.app-container label {
    color: #f5f5f5 !important;
    font-weight: 500 !important;
    margin-bottom: 6px !important;
    display: block !important;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.small {
    font-size: 0.8rem !important;
    /* Fixed size for legibility */
    line-height: 1.4;
}

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

.hotel-logo {
    font-weight: 600;
    color: #fff;
}

.text-gold {
    color: var(--accent-gold) !important;
}

.text-red {
    color: var(--accent-red) !important;
}

.bg-gold {
    background-color: var(--accent-gold) !important;
    color: #000 !important;
}

.bg-red {
    background-color: var(--accent-red) !important;
    color: #fff !important;
}

.shadow-gold {
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3) !important;
}

/* Glassmorphism Utilities */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
}

.glass-header {
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

[data-theme="light"] .glass-header .hotel-logo,
[data-theme="light"] .glass-header i {
    color: #ffffff !important;
}

[data-theme="light"] .cat-pill {
    background: #ffffff;
    border-color: rgba(45, 42, 119, 0.2);
    color: #2d2a77;
}

[data-theme="light"] .cat-pill.active {
    background: #2d2a77 !important;
    color: #ffffff !important;
    border-color: #2d2a77 !important;
}

[data-theme="light"] .menu-card {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.glass-nav {
    background: rgba(20, 20, 35, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid var(--glass-border);
}

/* App Container */
.app-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.view-section {
    display: none;
    flex: 1;
    animation: fadeIn 0.3s ease;
}

.view-section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Login View */
#view-login {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 20px;
    background: radial-gradient(circle at top right, rgba(201, 168, 76, 0.15) 0%, rgba(15, 15, 26, 1) 50%);
}

.login-wrapper {
    width: 100%;
    max-width: 400px;
}

.custom-input {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid var(--glass-border) !important;
    color: #ffffff !important;
    border-radius: 12px;
}

.custom-input::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

select.custom-input option {
    background: #1a1a2e;
    color: #fff;
}

input.form-control,
select.form-select,
textarea.form-control {
    color: #ffffff !important;
}

.custom-input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-gold);
    color: #fff;
    box-shadow: 0 0 0 0.25rem rgba(201, 168, 76, 0.25);
}

/* Header */
.app-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    padding: 6px 12px;
}

.search-input-group {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 4px 12px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.search-input-group:focus-within {
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.2);
}

.search-input {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 0.85rem;
    width: 100%;
    outline: none !important;
    padding: 0;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

#theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
    z-index: 1040;
    position: relative;
}

#theme-toggle:active {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

/* Bottom Navigation */
.bottom-nav,
.view-mode-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    display: flex !important;
    flex-direction: row !important;
}

.view-mode-footer {
    border-top: 1px solid var(--glass-border);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-item i {
    font-size: 1.5rem;
    margin-bottom: 2px;
}

.nav-item span {
    font-size: 0.75rem;
    font-weight: 500;
}

.nav-item.active {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.categories-container {
    position: sticky;
    top: 50px;
    z-index: 1020;
    background: var(--bg-dark);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    margin-top: 0;
    padding-top: 8px;
    padding-bottom: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.categories-container::-webkit-scrollbar {
    display: none;
}

.cat-pill {
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cat-pill.active {
    background: #c9a84c !important;
    color: #000 !important;
    border-color: #ffffff !important;
    border-width: 2px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.6);
    transform: scale(1.1);
    z-index: 5;
}

/* Cart Flying Animation */
.cart-flyer {
    position: fixed;
    z-index: 10000;
    width: 45px;
    height: 45px;
    background: #c9a84c;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    box-shadow: 0 0 25px rgba(201, 168, 76, 1), 0 0 50px rgba(201, 168, 76, 0.5);
    font-size: 1.2rem;
    overflow: hidden;
    border: 2px solid #ffffff;
}

.cart-flyer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes cartBump {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

.cart-bump {
    animation: cartBump 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Menu Items */
.menu-card {
    position: relative;
    padding: 12px 15px;
    margin-bottom: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
    overflow: visible;
    /* Allow background to scale out */
    background: transparent !important;
    border: none !important;
    --roll-rotation: 0deg;
    --roll-scale: 1;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-left: 4px solid var(--accent-gold) !important;
    border-radius: 12px;
    z-index: -1;
    transition: transform 0.2s ease-out;
    transform: perspective(1000px) rotateX(var(--roll-rotation)) scale(var(--roll-scale));
    will-change: transform;
}

.menu-card:hover {
    z-index: 20;
}

.menu-card:hover::before {
    transform: perspective(1000px) rotateX(0deg) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


.veg-badge {
    width: 14px;
    height: 14px;
    border: 1px solid #28a745;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}

.veg-badge::after {
    content: '';
    width: 6px;
    height: 6px;
    background: #28a745;
    border-radius: 50%;
}

.non-veg-badge {
    border-color: #dc3545;
}

.non-veg-badge::after {
    background: #dc3545;
}

.btn-add {
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    border-radius: 8px;
    padding: 6px 16px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-add:active {
    background: var(--accent-gold);
    color: #000;
}

.qty-control {
    display: flex;
    align-items: center;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--accent-gold);
    border-radius: 8px;
    overflow: hidden;
}

.qty-btn {
    background: transparent;
    border: none;
    color: var(--accent-gold);
    padding: 6px 12px;
}

.qty-val {
    color: #fff;
    font-weight: bold;
    min-width: 24px;
    text-align: center;
}

/* Location Selection Modal */
.location-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.2s;
}

.location-card.selected {
    border-color: var(--accent-gold);
    background: rgba(201, 168, 76, 0.1);
}

/* Custom Modals & Offcanvas */
.custom-modal .modal-content,
.custom-offcanvas {
    background: rgba(20, 20, 30, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    color: #fff;
}

.custom-offcanvas {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

/* Cart Item */
.cart-item {
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

/* Order Status Stepper */
.stepper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.stepper::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 15px;
    bottom: 15px;
    width: 2px;
    background: var(--glass-border);
}

.step {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
    opacity: 0.5;
}

.step.active {
    opacity: 1;
}

.step.active .step-icon {
    background: var(--accent-gold);
    color: #000;
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.5);
    animation: pulse 2s infinite;
}

.step.completed .step-icon {
    background: #28a745;
    color: #fff;
}

.step-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(201, 168, 76, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(201, 168, 76, 0);
    }
}

/* Chat */
.chat-container {
    height: calc(100vh - 140px);
    display: flex;
    flex-direction: column;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-bubble {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 16px;
    font-size: 0.95rem;
}

.chat-bubble.admin {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.1);
    border-bottom-left-radius: 4px;
}

.chat-bubble.guest {
    align-self: flex-end;
    background: var(--accent-gold);
    color: #000;
    border-bottom-right-radius: 4px;
}

.chat-time {
    font-size: 0.7rem;
    opacity: 0.7;
    margin-top: 4px;
    display: block;
}

/* Selection Chips (Tables/Rooms) */
.table-chip,
.room-chip {
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    min-width: 60px;
    font-weight: 600;
}

.table-chip:hover,
.room-chip:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-gold);
}

.table-chip.active,
.room-chip.active {
    background: var(--accent-gold);
    color: #000;
    border-color: var(--accent-gold);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

/* Overrides for Bootstrap */
.btn-primary {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #000;
    font-weight: 600;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #b59540 !important;
    border-color: #b59540 !important;
    color: #000 !important;
}

.btn-outline-gold {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.btn-outline-gold:hover {
    background-color: var(--accent-gold);
    color: #000;
}

/* SweetAlert Overrides */
.swal2-popup {
    background: #1a1a2e !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.swal2-title,
.swal2-content,
.swal2-html-container {
    color: #fff !important;
}

.swal2-confirm {
    background-color: var(--accent-gold) !important;
    color: #000 !important;
}

/* Search Bar */
.search-container,
.header-search-bar {
    display: block !important;
}

.categories-container {
    position: sticky;
    top: 50px;
    /* Thinner header height adjustment */
    z-index: 1020;
    background: rgba(15, 15, 26, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    margin-top: 0;
}

.search-input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 2px 2px 2px 10px;
    transition: all 0.3s ease;
}

.search-input-group:focus-within {
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.08);
}

.search-input {
    background: transparent !important;
    border: none !important;
    outline: none !important;
    color: #fff !important;
    flex-grow: 1;
    padding: 4px 10px;
    /* Added padding for left alignment */
    font-size: 0.85rem;
    box-shadow: none !important;
    text-align: left !important;
    /* Force left alignment */
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-btn {
    background: var(--accent-gold);
    border: none;
    color: #000;
    width: 28px;
    height: 28px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-btn:active {
    transform: scale(0.92);
}

.highlight {
    background: rgba(201, 168, 76, 0.3);
    color: var(--accent-gold);
    padding: 0 2px;
    border-radius: 2px;
    font-weight: 600;
}

/* Menu Layout & Item Cards */
.category-section {
    margin-bottom: 40px;
}

.category-title {
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.menu-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 10px 12px;
    margin-bottom: 12px;
    min-height: 90px;
    transition: transform 0.2s;
}

.menu-item-description {
    font-size: 0.68rem;
    color: var(--text-muted);
    line-height: 1.2;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Veg/Non-Veg Indicators */
.veg-badge,
.non-veg-badge {
    width: 12px;
    height: 12px;
    border: 1px solid #ccc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    background: #fff;
    border-radius: 2px;
}

.veg-badge::after {
    content: "";
    width: 6px;
    height: 6px;
    background: #198754;
    border-radius: 50%;
}

.non-veg-badge::after {
    content: "";
    width: 6px;
    height: 6px;
    background: #dc3545;
    border-radius: 50%;
}

#theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
    z-index: 1040;
    position: relative;
    color: #ffffff;
}

[data-theme="light"] #theme-toggle {
    color: #2d2a77 !important;
}

#theme-toggle:active {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

/* Header Logo Refinements */
.header-logo-img {
    height: 24px !important;
    width: 24px !important;
    object-fit: contain;
    background: transparent !important;
    padding: 0 !important;
    margin-right: 8px;
    border: none !important;
}

.hotel-logo {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0;
    color: #fff;
    white-space: nowrap;
    font-family: 'Playfair Display', serif;
}

@media (max-width: 480px) {
    .header-logo-img {
        height: 20px !important;
        width: 20px !important;
    }
    .hotel-logo {
        font-size: 0.95rem;
    }
}