    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Inter', sans-serif;
        background: linear-gradient(180deg, #0a1a1a 0%, #0d1f1f 50%, #0a1a1a 100%);
        min-height: 100vh;
        color: #f5f5f0;
        position: relative;
    }

    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('https://i.ibb.co/p60sgbYR/menu-Back-Overlay.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0.50;
        pointer-events: none;
        z-index: 0;
    }

    .container {
        max-width: 480px;
        margin: 0 auto;
        padding: 40px 24px;
        position: relative;
        z-index: 1;
    }

    /* Header */
    .header {
        text-align: center;
        margin-bottom: 40px;
    }

    .logo-img {
        width: 100px;
        height: 100px;
        object-fit: contain;
        margin: 0 auto 20px;
        display: block;
        filter: drop-shadow(0 0 20px rgba(212, 184, 150, 0.3));
    }

    .brand-name {
        font-family: 'Playfair Display', serif;
        font-size: 28px;
        font-weight: 500;
        color: #d4b896;
        line-height: 1.2;
        margin-bottom: 8px;
        letter-spacing: 2px;
        text-shadow: 0 2px 10px rgba(212, 184, 150, 0.3);
    }

    .brand-tagline {
        font-size: 12px;
        color: #4ade80;
        font-weight: 400;
        letter-spacing: 4px;
        text-shadow: 0 0 10px rgba(74, 222, 128, 0.3);
    }

    /* New decorative separator with glow */
    .separator {
        width: 120px;
        height: 2px;
        background: linear-gradient(90deg, transparent, #c9a876, #d4b896, #c9a876, transparent);
        margin: 0 auto 36px;
        box-shadow: 0 0 15px rgba(201, 168, 118, 0.5);
    }

    /* Enhanced Quick Actions with icons */
    .quick-actions {
        display: flex;
        gap: 12px;
        margin-bottom: 28px;
    }

    .action-btn {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 18px 16px;
        text-decoration: none;
        border-radius: 16px;
        font-weight: 500;
        font-size: 13px;
        letter-spacing: 0.3px;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }

    .action-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
    }

    .action-btn:active {
        transform: scale(0.97);
    }

    .action-btn img {
        width: 200px;
        height: auto;
        object-fit: contain;
    }

    .action-btn.google {
        background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
        color: #333;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .action-btn.tripadvisor {
        background: linear-gradient(135deg, #34E0A1 0%, #00AA6C 100%);
        color: #000;
    }

    /* More attractive social section */
    .section-title {
        font-family: 'Playfair Display', serif;
        font-size: 24px;
        font-weight: 500;
        margin-bottom: 18px;
        text-align: center;
        color: #d4b896;
        letter-spacing: 3px;
        text-shadow: 0 2px 10px rgba(212, 184, 150, 0.3);
    }

    .social-grid {
        display: flex;
        gap: 6px;
        justify-content: center;
        margin-bottom: 36px;
    }

    .social-btn {
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .social-btn:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }

    .social-btn:active {
        transform: scale(0.92);
    }

    .social-btn svg {
        width: 20px;
        height: 20px;
        fill: #fff;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    }

    /* Enhanced Menu Section with category tabs */
    .menu-container {
        margin-bottom: 50px;
    }

    .menu-tabs {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        z-index: 1000;
        background: linear-gradient(135deg, rgba(13, 34, 34, 0.95) 0%, rgba(15, 40, 40, 0.95) 100%);
        backdrop-filter: blur(10px);
        padding: 12px 20px;
        border-radius: 30px;
        border: 1px solid rgba(42, 64, 64, 0.8);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(201, 168, 118, 0.2);
        max-width: calc(100% - 48px);
    }

    .menu-tab {
        padding: 12px 20px;
        background: transparent;
        border: 1px solid #2a4040;
        border-radius: 25px;
        color: #8aa0a0;
        font-size: 13px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }

    .menu-tab:hover {
        background: rgba(201, 168, 118, 0.2);
        border-color: rgba(201, 168, 118, 0.6);
        color: #d4b896;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(201, 168, 118, 0.3);
    }

    .menu-tab.active {
        background: linear-gradient(135deg, #c9a876 0%, #d4b896 100%);
        color: #0a1a1a;
        border-color: #c9a876;
        box-shadow: 0 4px 15px rgba(201, 168, 118, 0.5);
        transform: translateY(-2px);
    }

    .menu-section {
        background: linear-gradient(135deg, #0d2222 0%, #0f2828 100%);
        border-radius: 20px;
        padding: 28px 24px;
        border: 1px solid #1a3535;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }

    .menu-category {
        margin-bottom: 32px;
        display: none;
    }

    .menu-category.active {
        display: block;
    }

    .category-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-top: 15px;
        margin-bottom: 18px;
        padding-bottom: 12px;
        border-bottom: 1px solid #1a3535;
    }

    .category-icon {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .category-icon svg {
        width: 32px;
        height: 32px;
        stroke: #c9a876;
        stroke-width: 1.5;
        fill: none;
    }

    .footer-title {
        font-family: 'Playfair Display', serif;
        font-size: 15px;
        font-weight: 500;
        color: #d4b896;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }

    .category-title {
        font-family: 'Playfair Display', serif;
        font-size: 22px;
        font-weight: 500;
        color: #d4b896;
        letter-spacing: 1px;
    }

    .menu-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        border-bottom: 1px dashed #1a3030;
    }

    .menu-item:last-child {
        border-bottom: none;
    }

    .item-name {
        font-weight: 400;
        font-size: 14px;
        color: #e8e8e0;
        letter-spacing: 0.3px;
    }

    .item-price {
        font-weight: 500;
        color: #c9a876;
        font-size: 14px;
        white-space: nowrap;
        text-shadow: 0 0 10px rgba(201, 168, 118, 0.3);
    }

    .item-actions {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-left: 16px;
    }

    .add-btn {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(201, 168, 118, 0.3) 0%, rgba(212, 184, 150, 0.25) 100%);
        border: 1px solid rgba(201, 168, 118, 0.6);
        color: #d4b896;
        font-size: 20px;
        font-weight: 300;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        flex-shrink: 0;
        line-height: 1;
        padding: 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .add-btn:hover {
        background: linear-gradient(135deg, rgba(201, 168, 118, 0.5) 0%, rgba(212, 184, 150, 0.4) 100%);
        border-color: rgba(201, 168, 118, 0.9);
        transform: scale(1.1) rotate(90deg);
        box-shadow: 0 4px 15px rgba(201, 168, 118, 0.4);
    }

    .add-btn:active {
        transform: scale(0.95);
    }

    .add-btn svg {
        width: 18px;
        height: 18px;
        stroke: #d4b896;
        stroke-width: 2.5;
        stroke-linecap: round;
        fill: none;
    }

    .add-btn.added {
        background: linear-gradient(135deg, rgba(74, 222, 128, 0.3) 0%, rgba(74, 222, 128, 0.25) 100%);
        border-color: rgba(74, 222, 128, 0.6);
    }

    .add-btn.added:hover {
        background: linear-gradient(135deg, rgba(74, 222, 128, 0.5) 0%, rgba(74, 222, 128, 0.4) 100%);
        border-color: rgba(74, 222, 128, 0.9);
    }

    .add-btn.added svg {
        stroke: #4ade80;
    }

    .add-btn svg.plus-icon {
        display: block;
    }

    .add-btn svg.close-icon {
        display: none;
    }

    .add-btn.added svg.plus-icon {
        display: none;
    }

    .add-btn.added svg.close-icon {
        display: block;
    }

    /* Quantity Control */
    .qty-control {
        display: flex;
        align-items: center;
        gap: 8px;
        /* background: rgba(13, 34, 34, 0.6); */
        border-radius: 20px;
        padding: 2px;
        animation: fadeIn 0.3s ease;
    }

    .qty-btn {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(201, 168, 118, 0.2) 0%, rgba(212, 184, 150, 0.15) 100%);
        border: 1px solid rgba(201, 168, 118, 0.5);
        color: #d4b896;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 16px;
        padding: 0;
    }

    .qty-btn:hover {
        background: rgba(201, 168, 118, 0.4);
        transform: scale(1.1);
        border-color: #d4b896;
    }

    .qty-btn:active {
        transform: scale(0.95);
    }

    .qty-val {
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        color: #f5f5f0;
        min-width: 24px;
        text-align: center;
        font-size: 15px;
        text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    }

    .qty-btn svg {
        width: 14px;
        height: 14px;
        stroke: currentColor;
        stroke-width: 2.5;
        fill: none;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    /* ********************************************************************************** */


    .footer-review-btn {
        display: inline-block;
        /* margin-top: 10px; */
        padding: 10px 20px;
        background: linear-gradient(135deg, #c9a876 0%, #d4b896 100%);
        color: #0a1a1a;
        text-decoration: none;
        border-radius: 25px;
        font-size: 13px;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(201, 168, 118, 0.3);
    }

    .footer-review-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(201, 168, 118, 0.4);
        background: linear-gradient(135deg, #d4b896 0%, #e8ccab 100%);
    }

    .note-card {
        display: flex;
        align-items: center;
        gap: 15px;
        background: rgba(212, 184, 150, 0.05);
        border: 1px solid rgba(212, 184, 150, 0.1);
        border-radius: 12px;
        padding: 12px 20px;
        margin: 0 auto 30px;
        max-width: 90%;
        backdrop-filter: blur(5px);
    }

    /* ************************************************************************************ */

    /* Floating Cart Icon */
    .cart-icon {
        position: fixed;
        bottom: 100px;
        right: 20px;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: linear-gradient(135deg, #c9a876 0%, #d4b896 100%);
        border: 2px solid rgba(201, 168, 118, 0.8);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(201, 168, 118, 0.4);
        z-index: 9998;
        transition: all 0.3s ease;
        color: #0a1a1a;
    }

    .cart-icon:hover {
        transform: scale(1.1);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 30px rgba(201, 168, 118, 0.6);
    }

    .cart-icon svg {
        width: 28px;
        height: 28px;
        stroke: #0a1a1a;
        stroke-width: 2;
        fill: none;
    }

    .cart-badge {
        position: absolute;
        top: -5px;
        right: -5px;
        background: #4ade80;
        color: #0a1a1a;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 600;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .cart-icon.empty .cart-badge {
        display: none;
    }

    /* Cart Modal */
    .cart-modal-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(10, 26, 26, 0.95);
        backdrop-filter: blur(10px);
        z-index: 10001;
        overflow-y: auto;
        animation: fadeIn 0.3s ease;
    }

    .cart-modal-overlay.active {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding: 20px;
    }

    .cart-modal-content {
        background: linear-gradient(135deg, #0d2222 0%, #0f2828 100%);
        border-radius: 20px;
        padding: 32px 24px;
        margin: 20px auto;
        max-width: 480px;
        width: 100%;
        border: 1px solid #1a3535;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        position: relative;
        animation: slideUp 0.3s ease;
        max-height: 90vh;
        overflow-y: auto;
    }

    .cart-modal-title {
        font-family: 'Playfair Display', serif;
        font-size: 24px;
        font-weight: 500;
        color: #d4b896;
        margin-bottom: 24px;
        text-align: center;
        letter-spacing: 2px;
        text-shadow: 0 2px 10px rgba(212, 184, 150, 0.3);
    }

    .cart-items {
        margin-bottom: 24px;
        max-height: 400px;
        overflow-y: auto;
    }

    .cart-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px;
        margin-bottom: 12px;
        background: rgba(26, 53, 53, 0.5);
        border: 1px solid #1a3535;
        border-radius: 12px;
    }

    .cart-item-info {
        flex: 1;
    }

    .cart-item-name {
        font-weight: 500;
        font-size: 14px;
        color: #e8e8e0;
        margin-bottom: 4px;
    }

    .cart-item-price {
        font-weight: 500;
        color: #c9a876;
        font-size: 14px;
    }

    .cart-item-remove {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: rgba(239, 68, 68, 0.2);
        border: 1px solid rgba(239, 68, 68, 0.4);
        color: #ef4444;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        margin-left: 12px;
    }

    .cart-item-remove:hover {
        background: rgba(239, 68, 68, 0.4);
        transform: scale(1.1);
    }

    .cart-item-remove svg {
        width: 16px;
        height: 16px;
        stroke: #ef4444;
        stroke-width: 2.5;
    }

    .cart-total {
        padding: 20px;
        margin-bottom: 24px;
        background: rgba(201, 168, 118, 0.1);
        border: 1px solid rgba(201, 168, 118, 0.3);
        border-radius: 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .cart-total-label {
        font-weight: 500;
        font-size: 16px;
        color: #d4b896;
    }

    .cart-total-price {
        font-weight: 600;
        font-size: 20px;
        color: #4ade80;
        text-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
    }

    .cart-empty {
        text-align: center;
        padding: 40px 20px;
        color: #8aa0a0;
        font-size: 14px;
    }

    .send-order-btn {
        width: 100%;
        padding: 16px 24px;
        background: linear-gradient(135deg, rgba(74, 222, 128, 0.3) 0%, rgba(74, 222, 128, 0.25) 100%);
        border: 1px solid rgba(74, 222, 128, 0.6);
        border-radius: 16px;
        color: #4ade80;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 1px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .send-order-btn:hover:not(:disabled) {
        background: linear-gradient(135deg, rgba(74, 222, 128, 0.5) 0%, rgba(74, 222, 128, 0.4) 100%);
        border-color: rgba(74, 222, 128, 0.9);
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(74, 222, 128, 0.4);
    }

    .send-order-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    @media (max-width: 480px) {
        .cart-icon {
            bottom: 90px;
            right: 15px;
            width: 50px;
            height: 50px;
        }

        .cart-icon svg {
            width: 24px;
            height: 24px;
        }

        /* Cart Modal Mobile Optimization */
        .cart-modal-content {
            padding: 24px 20px;
            max-height: 85vh;
            margin: 10px;
            width: calc(100% - 20px);
        }

        .cart-modal-title {
            font-size: 26px;
            /* Larger title */
            margin-bottom: 20px;
        }

        .cart-item {
            padding: 16px;
            /* More touch space */
            margin-bottom: 16px;
        }

        .cart-item-name {
            font-size: 16px;
            /* Larger text */
            margin-bottom: 6px;
        }

        .cart-item-price {
            font-size: 15px;
            /* Larger price */
        }

        .cart-item-remove {
            width: 38px;
            /* Larger remove button */
            height: 38px;
        }

        .cart-item-remove svg {
            width: 18px;
            height: 18px;
        }

        .cart-total {
            padding: 20px;
        }

        .cart-total-label {
            font-size: 18px;
        }

        .cart-total-price {
            font-size: 24px;
            /* Big total */
        }

        .send-order-btn {
            font-size: 18px;
            padding: 18px;
        }

        #checkStatusLink {
            font-size: 16px !important;
            /* Bigger font for mobile visibility */
            padding: 12px 20px !important;
            display: block !important;
            margin-top: 16px !important;
        }
    }

    /* Footer */
    .footer {
        text-align: center;
        margin-top: 36px;
        padding-top: 24px;
        padding-bottom: 100px;
        border-top: 1px solid #1a3030;
    }

    .footer p {
        font-size: 12px;
        color: #5a7a7a;
        letter-spacing: 0.5px;
    }

    .wifi-info {
        background: linear-gradient(135deg, #0d2222 0%, #0f2828 100%);
        border-radius: 12px;
        padding: 16px;
        margin-bottom: 16px;
        border: 1px solid #1a3535;
    }

    .wifi-info p {
        font-size: 13px;
        color: #8aa0a0;
    }

    .wifi-info strong {
        color: #4ade80;
    }

    /* Scroll-to button */
    #sc-btn {
        position: fixed;
        top: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: none;
        background: #ff5500;
        cursor: pointer;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.2s, opacity 0.2s;
    }

    #sc-btn:hover {
        transform: scale(1.1);
    }

    #sc-btn img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
    }

    /* Reviews & Social Modal Button */
    .reviews-btn {
        width: 100%;
        padding: 16px 24px;
        margin-bottom: 24px;
        background: linear-gradient(135deg, rgba(201, 168, 118, 0.3) 0%, rgba(212, 184, 150, 0.25) 100%);
        border: 1px solid rgba(201, 168, 118, 0.6);
        border-radius: 16px;
        color: #d4b896;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 1px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-align: center;
        position: relative;
        overflow: hidden;
        animation: glowingPulse 2s ease-in-out infinite;
        box-shadow:
            0 4px 15px rgba(0, 0, 0, 0.3),
            0 0 5px rgba(201, 168, 118, 0.4),
            0 0 10px rgba(212, 184, 150, 0.3),
            inset 0 0 10px rgba(201, 168, 118, 0.1);
        text-shadow: 0 0 10px rgba(212, 184, 150, 0.5);
    }

    .reviews-btn::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg,
                transparent,
                rgba(212, 184, 150, 0.1),
                transparent);
        animation: shimmer 3s infinite;
    }

    /* @keyframes glowingPulse {

      0%,
      100% {
        box-shadow:
          0 4px 15px rgba(0, 0, 0, 0.3),
          0 0 20px rgba(201, 168, 118, 0.4),
          0 0 30px rgba(212, 184, 150, 0.3),
          0 0 40px rgba(201, 168, 118, 0.2),
          inset 0 0 10px rgba(201, 168, 118, 0.1);
        border-color: rgba(201, 168, 118, 0.6);
        text-shadow: 0 0 10px rgba(212, 184, 150, 0.5);
      }

      50% {
        box-shadow:
          0 4px 15px rgba(0, 0, 0, 0.3),
          0 0 30px rgba(201, 168, 118, 0.6),
          0 0 50px rgba(212, 184, 150, 0.5),
          0 0 70px rgba(201, 168, 118, 0.4),
          inset 0 0 15px rgba(201, 168, 118, 0.2);
        border-color: rgba(201, 168, 118, 0.9);
        text-shadow: 0 0 15px rgba(212, 184, 150, 0.8), 0 0 25px rgba(212, 184, 150, 0.6);
      }
    } */

    @keyframes shimmer {
        0% {
            transform: translateX(-100%) translateY(-100%) rotate(45deg);
        }

        100% {
            transform: translateX(100%) translateY(100%) rotate(45deg);
        }
    }

    .reviews-btn:hover {
        background: linear-gradient(135deg, rgba(201, 168, 118, 0.4) 0%, rgba(212, 184, 150, 0.35) 100%);
        border-color: rgba(201, 168, 118, 1);
        transform: translateY(-2px) scale(1.02);
        animation: none;
        box-shadow:
            0 6px 25px rgba(0, 0, 0, 0.4),
            0 0 40px rgba(201, 168, 118, 0.8),
            0 0 60px rgba(212, 184, 150, 0.6),
            0 0 80px rgba(201, 168, 118, 0.4),
            inset 0 0 20px rgba(201, 168, 118, 0.3);
        text-shadow: 0 0 20px rgba(212, 184, 150, 1), 0 0 30px rgba(212, 184, 150, 0.8);
    }

    .reviews-btn:active {
        transform: translateY(0) scale(0.98);
        animation: none;
    }

    .reviews-btn b {
        position: relative;
        z-index: 1;
    }

    /* Modal Overlay */
    .modal-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(10, 26, 26, 0.95);
        backdrop-filter: blur(10px);
        z-index: 10000;
        overflow-y: auto;
        animation: fadeIn 0.3s ease;
    }

    .modal-overlay.active {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding: 20px;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .modal-content {
        background: linear-gradient(135deg, #0d2222 0%, #0f2828 100%);
        border-radius: 20px;
        padding: 32px 24px;
        margin: 20px auto;
        max-width: 480px;
        width: 100%;
        border: 1px solid #1a3535;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        position: relative;
        animation: slideUp 0.3s ease;
    }

    @keyframes slideUp {
        from {
            transform: translateY(30px);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .modal-close {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(201, 168, 118, 0.2);
        border: 1px solid rgba(201, 168, 118, 0.4);
        color: #d4b896;
        font-size: 20px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        line-height: 1;
    }

    .modal-close:hover {
        background: rgba(201, 168, 118, 0.4);
        transform: rotate(90deg);
    }

    .modal-title {
        font-family: 'Playfair Display', serif;
        font-size: 24px;
        font-weight: 500;
        color: #d4b896;
        margin-bottom: 24px;
        text-align: center;
        letter-spacing: 2px;
        text-shadow: 0 2px 10px rgba(212, 184, 150, 0.3);
    }

    .modal-section {
        margin-bottom: 32px;
    }

    .modal-section-title {
        font-family: 'Playfair Display', serif;
        font-size: 18px;
        font-weight: 500;
        color: #d4b896;
        margin-bottom: 16px;
        letter-spacing: 1px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .modal-section-title svg {
        width: 20px;
        height: 20px;
        stroke: #c9a876;
        stroke-width: 1.5;
        fill: none;
    }

    .review-links {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .review-link {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 16px;
        background: rgba(26, 53, 53, 0.5);
        border: 1px solid #1a3535;
        border-radius: 12px;
        text-decoration: none;
        color: #e8e8e0;
        transition: all 0.3s ease;
    }

    .review-link:hover {
        background: rgba(201, 168, 118, 0.1);
        border-color: rgba(201, 168, 118, 0.5);
        transform: translateX(5px);
    }

    .review-link-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .review-link-text {
        flex: 1;
    }

    .review-link-title {
        font-weight: 500;
        font-size: 14px;
        margin-bottom: 4px;
        color: #d4b896;
    }

    .review-link-desc {
        font-size: 12px;
        color: #8aa0a0;
    }

    .modal-social-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    @media (max-width: 480px) {
        .modal-content {
            padding: 24px 20px;
            margin: 10px;
        }

        .modal-title {
            font-size: 20px;
        }

        .review-link {
            padding: 12px;
        }

        .modal-social-grid {
            grid-template-columns: 1fr;
        }
    }

    /* Responsive adjustments for floating tabs */
    @media (max-width: 768px) {
        .menu-tabs {
            bottom: 15px;
            padding: 10px 16px;
            gap: 8px;
            max-width: calc(100% - 32px);
        }

        .menu-tab {
            padding: 10px 16px;
            font-size: 12px;
        }

        .footer {
            padding-bottom: 90px;
        }
    }

    @media (max-width: 480px) {
        .menu-tabs {
            bottom: 10px;
            padding: 8px 12px;
            gap: 6px;
        }

        .menu-tab {
            padding: 8px 14px;
            font-size: 11px;
        }

        .footer {
            padding-bottom: 85px;
        }
    }

    /* Table Number Modal */
    .modal-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(10, 26, 26, 0.95);
        backdrop-filter: blur(10px);
        z-index: 10000;
        overflow-y: auto;
        animation: fadeIn 0.3s ease;
    }

    .modal-overlay.active {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding: 20px;
    }

    .modal-content {
        background: linear-gradient(135deg, #0d2222 0%, #0f2828 100%);
        border-radius: 20px;
        padding: 32px 24px;
        margin: 20px auto;
        max-width: 480px;
        width: 100%;
        border: 1px solid #1a3535;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        position: relative;
        animation: slideUp 0.3s ease;
        text-align: center;
    }

    .modal-title {
        font-family: 'Playfair Display', serif;
        font-size: 26px;
        font-weight: 500;
        color: #d4b896;
        margin-bottom: 12px;
        text-shadow: 0 2px 10px rgba(212, 184, 150, 0.3);
    }

    .table-input-container {
        position: relative;
        margin-bottom: 24px;
    }

    #tableSubmitBtn {
        margin-bottom: 0;
    }

    @media (max-width: 480px) {
        .modal-content {
            padding: 24px 20px;
            margin: 10px;
        }

        .modal-title {
            font-size: 20px;
        }
    }

    /* Active Order Pulse Animation */
    @keyframes pulse-glow {
        0% {
            box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4);
        }

        70% {
            box-shadow: 0 0 0 15px rgba(74, 222, 128, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
        }
    }

    .cart-icon.ongoing-order {
        background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
        border-color: #4ade80;
        animation: pulse-glow 2s infinite;
        /* Ensure it's visible even if empty class is present, 
         though we'll likely remove 'empty' via JS logic */
        display: flex !important;
    }

    .cart-icon.ongoing-order svg {
        stroke: #0a1a1a;
        /* Dark icon on bright green bg */
        fill: none;
    }

    /* Highlight the check status link button */
    a#checkStatusLink.ongoing-highlight {
        display: block !important;
        background: rgba(74, 222, 128, 0.2);
        padding: 12px 16px;
        border-radius: 12px;
        border: 1px solid rgba(74, 222, 128, 0.4);
        margin-top: 14px;
        color: #4ade80 !important;
        font-weight: 600;
        text-align: center;
        text-decoration: none;
        animation: pulse 2s infinite;
        box-shadow: 0 4px 12px rgba(74, 222, 128, 0.2);
    }

    .cart-icon.empty {
        display: none;
    }

    .note-card {
        display: flex;
        align-items: center;
        gap: 15px;
        background: rgba(212, 184, 150, 0.05);
        border: 1px solid rgba(212, 184, 150, 0.1);
        border-radius: 12px;
        padding: 12px 20px;
        margin: 0 auto 30px;
        max-width: 90%;
        backdrop-filter: blur(5px);
    }

    .menu-note {
        text-align: left;
        font-size: 13px;
        color: #8aa0a0;
        margin: 0;
        line-height: 1.4;
        font-style: italic;
    }

    .note-icon svg {
        width: 20px;
        height: 20px;
        stroke: #c9a876;
        opacity: 0.8;
    }

    /* Reviews & Social Modal Styles */
    .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(8px);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 10000;
        padding: 20px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .modal-overlay.active {
        display: flex;
        opacity: 1;
    }

    .modal-content {
        background: #0a1a1a;
        border: 1px solid rgba(201, 168, 118, 0.2);
        border-radius: 24px;
        width: 100%;
        max-width: 500px;
        max-height: 90vh;
        overflow-y: auto;
        position: relative;
        padding: 40px 30px;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
        transform: translateY(20px);
        transition: transform 0.3s ease;
    }

    .modal-overlay.active .modal-content {
        transform: translateY(0);
    }

    .modal-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: #8aa0a0;
        font-size: 32px;
        cursor: pointer;
        line-height: 1;
        transition: color 0.3s;
    }

    .modal-close:hover {
        color: #ef4444;
    }

    .modal-title {
        font-family: 'Playfair Display', serif;
        color: #d4b896;
        font-size: 24px;
        margin-bottom: 30px;
        text-align: center;
    }

    .modal-section {
        margin-bottom: 30px;
    }

    .modal-section-title {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #e8e8e0;
        font-size: 16px;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .modal-section-title svg {
        width: 18px;
        height: 18px;
        fill: #c9a876;
    }

    .review-links {
        display: grid;
        gap: 15px;
    }

    .review-link {
        display: flex;
        align-items: center;
        gap: 15px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 16px;
        padding: 15px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .review-link:hover {
        background: rgba(201, 168, 118, 0.08);
        border-color: rgba(201, 168, 118, 0.2);
        transform: translateX(5px);
    }

    .review-link-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .review-link-text {
        flex: 1;
    }

    .review-link-title {
        color: #e8e8e0;
        font-weight: 600;
        font-size: 15px;
        margin-bottom: 2px;
    }

    .review-link-desc {
        color: #8aa0a0;
        font-size: 12px;
    }

    .modal-social-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .modal-social-grid .review-link {
        padding: 12px;
    }