:root {
            --royal-blue: #1a365d;
            --deep-blue: #0d1b2a;
            --navy-blue: #1b3a5f;
            --light-blue: #2c5282;
            --gold: #d4af37;
            --gold-light: #f4d03f;
            --gold-dark: #b8860b;
            --cream: #faf8f5;
            --ivory: #fffff0;
            --warm-white: #fefdfb;
            --charcoal: #2d2d2d;
            --veg-green: #22c55e;
            --nonveg-red: #ef4444;
            --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
            --blue-gradient: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
            --luxury-gradient: linear-gradient(135deg, #0d1b2a 0%, #1a365d 50%, #0d1b2a 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--cream);
            color: var(--charcoal);
            overflow-x: hidden;
        }

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

        .elegant-text {
            font-family: 'Cormorant Garamond', serif;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--deep-blue);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--gold);
            border-radius: 4px;
        }

        /* ========== NAVBAR ========== */
        .navbar {
            background: rgba(13, 27, 42, 0.95) !important;
            backdrop-filter: blur(20px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
            padding: 1rem 0;
            transition: all 0.4s ease;
        }

        .navbar.scrolled {
            padding: 0.5rem 0;
            background: rgba(13, 27, 42, 0.98) !important;
        }

        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--gold) !important;
            letter-spacing: 3px;
        }

        .navbar-brand span {
            color: white;
        }

        .nav-link {
            position: relative;
            font-weight: 500;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.9) !important;
            padding: 0.5rem 1.2rem !important;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: all 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gold-gradient);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 60%;
        }

        .nav-link:hover {
            color: var(--gold) !important;
        }

        .btn-cart-nav {
            margin-left: auto;
            background: var(--gold-gradient);
            color: var(--deep-blue) !important;
            font-weight: 700;
            padding: 0.7rem 1.8rem !important;
            border-radius: 50px;
            border: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.4s ease;
            box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
            text-decoration: none;
        }

        .btn-book-nav:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
            color: var(--deep-blue) !important;
            text-decoration: none;
        }


        /* ========== MENU HERO ========== */
        .menu-hero {
            background: var(--luxury-gradient);
            padding: 8rem 0 4rem;
            position: relative;
            overflow: hidden;
        }

        .menu-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            pointer-events: none;
        }

        .menu-hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            color: white;
        }

        .menu-hero-icon {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .menu-hero-title {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 700;
            margin-bottom: 0.5rem;
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .menu-hero-subtitle {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            font-style: italic;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2rem;
        }

        /* ========== ORDER TYPE SELECTOR ========== */
        .order-type-selector {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .order-type-btn {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(212, 175, 55, 0.3);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .order-type-btn:hover,
        .order-type-btn.active {
            background: var(--gold-gradient);
            border-color: var(--gold);
            color: var(--deep-blue);
        }

        .order-type-btn i {
            font-size: 1.1rem;
        }

        /* ========== SEARCH & FILTER BAR ========== */
        .search-filter-bar {
            background: white;
            padding: 1.5rem 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            margin-top: -3rem;
            position: relative;
            z-index: 20;
        }

        .search-input-wrapper {
            position: relative;
        }

        .search-input {
            width: 100%;
            padding: 1rem 1.5rem 1rem 3.5rem;
            border: 2px solid #e5e5e5;
            border-radius: 50px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .search-input:focus {
            border-color: var(--gold);
            outline: none;
            box-shadow: 0 5px 20px rgba(212, 175, 55, 0.15);
        }

        .search-icon {
            position: absolute;
            left: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            font-size: 1.1rem;
        }

        .filter-btns {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .filter-btn {
            padding: 0.6rem 1.5rem;
            border: 2px solid #e5e5e5;
            background: white;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: var(--deep-blue);
            border-color: var(--deep-blue);
            color: white;
        }

        .filter-btn.veg-only:hover,
        .filter-btn.veg-only.active {
            background: var(--veg-green);
            border-color: var(--veg-green);
        }

        .filter-btn.nonveg-only:hover,
        .filter-btn.nonveg-only.active {
            background: var(--nonveg-red);
            border-color: var(--nonveg-red);
        }

        /* ========== CATEGORY TABS ========== */
        .category-tabs-wrapper {
            position: sticky;
            top: 70px;
            z-index: 100;
            background: white;
            padding: 1rem 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            margin-top: 2rem;
        }

        .category-tabs {
            display: flex;
            gap: 0.5rem;
            overflow-x: auto;
            padding: 0.5rem 1rem;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .category-tabs::-webkit-scrollbar {
            display: none;
        }

        .category-tab {
            flex-shrink: 0;
            padding: 0.75rem 1.5rem;
            background: #f5f5f5;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .category-tab:hover {
            background: #e5e5e5;
        }

        .category-tab.active {
            background: var(--gold-gradient);
            color: var(--deep-blue);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }

        .category-tab i {
            font-size: 1rem;
        }

        /* ========== MENU SECTIONS ========== */
        .menu-section {
            padding: 3rem 0;
        }

        .menu-category {
            margin-bottom: 4rem;
            scroll-margin-top: 150px;
        }

        .category-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid #eee;
        }

        .category-icon {
            width: 60px;
            height: 60px;
            background: var(--gold-gradient);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--deep-blue);
        }

        .category-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--deep-blue);
            margin: 0;
        }

        .category-count {
            background: var(--deep-blue);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-left: auto;
        }

        /* Subcategory */
        .subcategory {
            margin-bottom: 2.5rem;
        }

        .subcategory-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--royal-blue);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .subcategory-title::after {
            content: '';
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
        }

        /* ========== DISH CARDS ========== */
        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 1.5rem;
        }

        .dish-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .dish-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .dish-card.out-of-stock {
            opacity: 0.6;
            pointer-events: none;
        }

        .dish-card.out-of-stock::after {
            content: 'Out of Stock';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(-15deg);
            background: var(--nonveg-red);
            color: white;
            padding: 0.5rem 2rem;
            font-weight: 700;
            font-size: 0.9rem;
            border-radius: 5px;
            z-index: 10;
        }

        .dish-image-wrapper {
            position: relative;
            height: 180px;
            overflow: hidden;
        }

        .dish-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .dish-card:hover .dish-image {
            transform: scale(1.1);
        }

        .dish-type-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            width: 24px;
            height: 24px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 5;
        }

        .dish-type-badge.veg {
            background: white;
            border: 2px solid var(--veg-green);
        }

        .dish-type-badge.veg::after {
            content: '';
            width: 10px;
            height: 10px;
            background: var(--veg-green);
            border-radius: 50%;
        }

        .dish-type-badge.nonveg {
            background: white;
            border: 2px solid var(--nonveg-red);
        }

        .dish-type-badge.nonveg::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-bottom: 10px solid var(--nonveg-red);
        }

        .dish-bestseller {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: var(--gold-gradient);
            color: var(--deep-blue);
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            z-index: 5;
        }

        .dish-content {
            padding: 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .dish-name {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--deep-blue);
            margin-bottom: 0.5rem;
        }

        .dish-description {
            font-size: 0.85rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 1rem;
            flex: 1;
        }

        .dish-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
        }

        .dish-price {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--gold-dark);
        }

        .dish-price-variants {
            font-size: 0.85rem;
            color: #666;
        }

        .dish-price-variants span {
            color: var(--gold-dark);
            font-weight: 700;
        }

        .btn-add-cart {
            background: var(--blue-gradient);
            color: white;
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-add-cart:hover {
            background: var(--gold-gradient);
            color: var(--deep-blue);
            transform: scale(1.05);
        }

        .btn-add-cart.added {
            background: var(--veg-green);
        }

        /* Quantity selector */
        .quantity-selector {
            display: none;
            align-items: center;
            gap: 0.5rem;
            background: var(--deep-blue);
            border-radius: 50px;
            padding: 0.3rem;
        }

        .quantity-selector.show {
            display: flex;
        }

        .qty-btn {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: none;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .qty-btn:hover {
            background: var(--gold);
            color: var(--deep-blue);
        }

        .qty-value {
            color: white;
            font-weight: 700;
            min-width: 30px;
            text-align: center;
        }

        /* ========== FLOATING CART ========== */
        .floating-cart {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
        }

        .cart-toggle-btn {
            width: 70px;
            height: 70px;
            background: var(--gold-gradient);
            border-radius: 50%;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--deep-blue);
            cursor: pointer;
            box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
            transition: all 0.3s ease;
            position: relative;
        }

        .cart-toggle-btn:hover {
            transform: scale(1.1);
        }

        .cart-toggle-btn .cart-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: var(--nonveg-red);
            color: white;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            font-size: 0.85rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 3px solid white;
        }

        /* Cart Panel */
        .cart-panel {
            position: fixed;
            top: 0;
            right: -450px;
            width: 100%;
            max-width: 450px;
            height: 100vh;
            background: white;
            box-shadow: -10px 0 50px rgba(0, 0, 0, 0.15);
            z-index: 1001;
            transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            display: flex;
            flex-direction: column;
        }

        .cart-panel.open {
            right: 0;
        }

        .cart-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .cart-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        .cart-header {
            background: var(--deep-blue);
            color: white;
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cart-header h3 {
            margin: 0;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .cart-header h3 i {
            color: var(--gold);
        }

        .cart-close {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .cart-close:hover {
            color: var(--gold);
        }

        .cart-body {
            flex: 1;
            overflow-y: auto;
            padding: 1.5rem;
        }

        .cart-empty {
            text-align: center;
            padding: 3rem 1rem;
        }

        .cart-empty i {
            font-size: 4rem;
            color: #ddd;
            margin-bottom: 1rem;
        }

        .cart-empty h4 {
            color: #999;
            font-weight: 600;
        }

        .cart-item {
            display: flex;
            gap: 1rem;
            padding: 1rem;
            background: #f9f9f9;
            border-radius: 15px;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .cart-item:hover {
            background: #f0f0f0;
        }

        .cart-item-image {
            width: 80px;
            height: 80px;
            border-radius: 12px;
            object-fit: cover;
        }

        .cart-item-details {
            flex: 1;
        }

        .cart-item-name {
            font-weight: 700;
            color: var(--deep-blue);
            margin-bottom: 0.25rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .cart-item-name .type-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        .cart-item-name .type-dot.veg {
            background: var(--veg-green);
        }

        .cart-item-name .type-dot.nonveg {
            background: var(--nonveg-red);
        }

        .cart-item-price {
            font-size: 0.9rem;
            color: var(--gold-dark);
            font-weight: 600;
        }

        .cart-item-qty {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 0.5rem;
        }

        .cart-item-qty button {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 2px solid var(--deep-blue);
            background: white;
            color: var(--deep-blue);
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cart-item-qty button:hover {
            background: var(--deep-blue);
            color: white;
        }

        .cart-item-qty span {
            font-weight: 700;
            min-width: 25px;
            text-align: center;
        }

        .cart-item-total {
            text-align: right;
        }

        .cart-item-total .total {
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--deep-blue);
        }

        .cart-item-remove {
            color: var(--nonveg-red);
            cursor: pointer;
            font-size: 0.8rem;
            margin-top: 0.5rem;
        }

        .cart-footer {
            background: #f5f5f5;
            padding: 1.5rem;
            border-top: 1px solid #eee;
        }

        .cart-summary {
            margin-bottom: 1rem;
        }

        .cart-summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .cart-summary-row.total {
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--deep-blue);
            padding-top: 0.75rem;
            border-top: 2px dashed #ddd;
            margin-top: 0.75rem;
        }

        .cart-summary-row .label {
            color: #666;
        }

        .cart-summary-row .value {
            font-weight: 600;
        }

        .btn-checkout {
            width: 100%;
            background: var(--gold-gradient);
            color: var(--deep-blue);
            border: none;
            padding: 1rem;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .btn-checkout:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
        }

        /* ========== CHECKOUT MODAL ========== */
        .modal-backdrop-custom {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1050;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .modal-backdrop-custom.show {
            opacity: 1;
            visibility: visible;
        }

        .checkout-modal {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.9);
            width: 95%;
            max-width: 600px;
            max-height: 90vh;
            background: white;
            border-radius: 25px;
            z-index: 1051;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            overflow: hidden;
        }

        .checkout-modal.show {
            opacity: 1;
            visibility: visible;
            transform: translate(-50%, -50%) scale(1);
        }

        .checkout-header {
            background: var(--deep-blue);
            color: white;
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .checkout-header h3 {
            margin: 0;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .checkout-header h3 i {
            color: var(--gold);
        }

        .checkout-close {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .checkout-body {
            padding: 2rem;
            max-height: 60vh;
            overflow-y: auto;
        }

        .checkout-section {
            margin-bottom: 2rem;
        }

        .checkout-section-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--deep-blue);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .checkout-section-title i {
            color: var(--gold);
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-label {
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--deep-blue);
            margin-bottom: 0.5rem;
            display: block;
        }

        .form-control-custom {
            width: 100%;
            padding: 0.9rem 1rem;
            border: 2px solid #e5e5e5;
            border-radius: 12px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .form-control-custom:focus {
            border-color: var(--gold);
            outline: none;
            box-shadow: 0 3px 15px rgba(212, 175, 55, 0.15);
        }

        .time-slots {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.75rem;
        }

        .time-slot {
            padding: 0.75rem;
            border: 2px solid #e5e5e5;
            border-radius: 10px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .time-slot:hover,
        .time-slot.selected {
            border-color: var(--gold);
            background: rgba(212, 175, 55, 0.1);
        }

        .time-slot.selected {
            background: var(--gold-gradient);
            color: var(--deep-blue);
        }

        .payment-methods {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .payment-method {
            padding: 1rem 1.25rem;
            border: 2px solid #e5e5e5;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .payment-method:hover,
        .payment-method.selected {
            border-color: var(--gold);
            background: rgba(212, 175, 55, 0.05);
        }

        .payment-method i {
            font-size: 1.5rem;
            color: var(--deep-blue);
            width: 30px;
        }

        .payment-method-info h5 {
            margin: 0;
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--deep-blue);
        }

        .payment-method-info p {
            margin: 0;
            font-size: 0.8rem;
            color: #666;
        }

        .payment-method .radio {
            margin-left: auto;
            width: 22px;
            height: 22px;
            border: 2px solid #ddd;
            border-radius: 50%;
            position: relative;
        }

        .payment-method.selected .radio {
            border-color: var(--gold);
        }

        .payment-method.selected .radio::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 12px;
            height: 12px;
            background: var(--gold);
            border-radius: 50%;
        }

        .checkout-footer {
            background: #f5f5f5;
            padding: 1.5rem 2rem;
            border-top: 1px solid #eee;
        }

        .checkout-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .checkout-total .label {
            font-size: 1rem;
            color: #666;
        }

        .checkout-total .amount {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--deep-blue);
        }

        .btn-place-order {
            width: 100%;
            background: var(--gold-gradient);
            color: var(--deep-blue);
            border: none;
            padding: 1.1rem;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-place-order:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
        }

        /* ========== ORDER CONFIRMATION MODAL ========== */
        .confirmation-modal {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.9);
            width: 95%;
            max-width: 500px;
            background: white;
            border-radius: 25px;
            z-index: 1052;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            text-align: center;
            padding: 3rem 2rem;
        }

        .confirmation-modal.show {
            opacity: 1;
            visibility: visible;
            transform: translate(-50%, -50%) scale(1);
        }

        .confirmation-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #22c55e, #16a34a);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            animation: scaleIn 0.5s ease;
        }

        @keyframes scaleIn {
            0% { transform: scale(0); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }

        .confirmation-icon i {
            font-size: 3rem;
            color: white;
        }

        .confirmation-title {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--deep-blue);
            margin-bottom: 0.5rem;
        }

        .confirmation-message {
            font-size: 1rem;
            color: #666;
            margin-bottom: 1.5rem;
        }

        .order-id {
            background: #f5f5f5;
            padding: 1rem;
            border-radius: 12px;
            margin-bottom: 1.5rem;
        }

        .order-id .label {
            font-size: 0.85rem;
            color: #999;
        }

        .order-id .id {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--gold-dark);
            letter-spacing: 2px;
        }

        .btn-done {
            background: var(--deep-blue);
            color: white;
            border: none;
            padding: 1rem 3rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-done:hover {
            background: var(--gold);
            color: var(--deep-blue);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 991px) {
            .menu-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
        }

        @media (max-width: 767px) {
            .menu-hero {
                padding: 7rem 0 3rem;
            }

            .search-filter-bar {
                padding: 1rem;
                margin-top: -2rem;
            }

            .filter-btns {
                justify-content: flex-start;
                overflow-x: auto;
                flex-wrap: nowrap;
                padding-bottom: 0.5rem;
            }

            .filter-btn {
                flex-shrink: 0;
            }

            .cart-panel {
                max-width: 100%;
            }

            .time-slots {
                grid-template-columns: repeat(2, 1fr);
            }

            .dish-card {
                flex-direction: row;
            }

            .dish-image-wrapper {
                width: 120px;
                height: auto;
                min-height: 120px;
            }

            .dish-content {
                padding: 1rem;
            }

            .dish-name {
                font-size: 1rem;
            }

            .dish-description {
                font-size: 0.8rem;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }

            .dish-footer {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }

            .btn-add-cart {
                width: 100%;
                justify-content: center;
            }
        }

        /* Animation for items */
        .dish-card {
            animation: fadeInUp 0.5s ease forwards;
            opacity: 0;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .dish-card:nth-child(1) { animation-delay: 0.1s; }
        .dish-card:nth-child(2) { animation-delay: 0.15s; }
        .dish-card:nth-child(3) { animation-delay: 0.2s; }
        .dish-card:nth-child(4) { animation-delay: 0.25s; }
        .dish-card:nth-child(5) { animation-delay: 0.3s; }
        .dish-card:nth-child(6) { animation-delay: 0.35s; }

        /* WhatsApp Float */
        .whatsapp-float {
            position: fixed;
            bottom: 110px;
            right: 30px;
            width: 55px;
            height: 55px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
            z-index: 999;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            color: white;
        }