  .menu-tabs {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
        margin: 60px 0;
    }

    .tab-btn {
        background: transparent;
        border: 2px solid var(--gold-crayola);
        color: var(--white);
        padding: 12px 24px;
        border-radius: 30px;
        font-family: var(--fontFamily-forum);
        font-weight: var(--weight-bold);
        text-transform: uppercase;
        cursor: pointer;
        transition: var(--transition-1);
    }

    .tab-btn.active,
    .tab-btn:hover {
        background: var(--gold-crayola);
        color: var(--smoky-black-1);
    }

    .menu-listing {
        padding: 0 2rem;
        margin: 0 auto;
        max-width: 1400px;
    }

    .menu-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 32px;
        margin-bottom: 60px;
        align-items: stretch;
    }

    @media (min-width: 1200px) {
        .menu-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    .menu-card {
        background: linear-gradient(145deg, var(--eerie-black-2) 0%, rgba(42, 42, 42, 0.95) 100%);
        border-radius: 24px;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        display: flex;
        flex-direction: column;
        height: 100%;
        position: relative;
        border: 1px solid rgba(198, 164, 100, 0.1);
        box-shadow:
            0 4px 24px rgba(0, 0, 0, 0.15),
            0 2px 8px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    .menu-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.25),
            0 8px 16px rgba(0, 0, 0, 0.15),
            0 0 0 1px rgba(198, 164, 100, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .menu-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--gold-crayola) 0%, #ffd700 50%, var(--gold-crayola) 100%);
        border-radius: 24px 24px 0 0;
    }

    .card-content {
        padding: 32px 24px 24px;
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 20px;
        position: relative;
    }

    .card-header {
        text-align: center;
        position: relative;
    }

    .plan-badge {
        display: inline-block;
        background: var(--gold-crayola);
        color: var(--smoky-black-1);
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: var(--weight-bold);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 16px;
    }

    .card-title {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 12px;
        color: var(--white);
        font-weight: var(--weight-bold);
        text-align: center;
    }

    .card-text {
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.6;
        text-align: center;
        font-size: 0.95rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        min-height: 72px;
    }

    .duration-section {
        background: rgba(198, 164, 100, 0.1);
        border-radius: 16px;
        padding: 16px;
        text-align: center;
        border: 1px solid rgba(198, 164, 100, 0.2);
    }

    .duration-label {
        color: var(--gold-crayola);
        font-size: 0.8rem;
        font-weight: var(--weight-semiBold);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 4px;
    }

    .duration-value {
        color: var(--white);
        font-size: 1.1rem;
        font-weight: var(--weight-bold);
    }

    .pricing-section {
        background: rgba(42, 42, 42, 0.6);
        border-radius: 16px;
        padding: 20px;
        border: 1px solid rgba(198, 164, 100, 0.15);
    }

    .pricing-header {
        text-align: center;
        margin-bottom: 16px;
    }

    .pricing-title {
        color: var(--gold-crayola);
        font-size: 0.9rem;
        font-weight: var(--weight-bold);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .price-list {
        list-style: none;
        padding: 0;
        margin: 0;
        space-y: 8px;
    }

    .price-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.2s ease;
    }

    .price-item:last-child {
        border-bottom: none;
    }

    .price-item:hover {
        background: rgba(198, 164, 100, 0.05);
        border-radius: 8px;
        padding-left: 8px;
        padding-right: 8px;
    }

    .price-frequency {
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.9rem;
        font-weight: var(--weight-medium);
    }

    .price-amount {
        color: var(--gold-crayola);
        font-weight: var(--weight-bold);
        font-size: 1rem;
    }

    .card-footer {
        margin-top: auto;
        padding-top: 20px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-label {
        color: var(--white);
        font-size: 0.9rem;
        margin-bottom: 10px;
        display: block;
        font-weight: var(--weight-semiBold);
        text-align: center;
    }

    .form-control {
        background: rgba(42, 42, 42, 0.8);
        color: var(--white);
        border: 2px solid rgba(198, 164, 100, 0.3);
        border-radius: 12px;
        padding: 14px 16px;
        font-size: 0.9rem;
        width: 100%;
        cursor: pointer;
        outline: none;
        transition: all 0.3s ease;
        appearance: none;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23c6a464' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
        background-position: right 12px center;
        background-repeat: no-repeat;
        background-size: 16px;
        padding-right: 40px;
    }

    .form-control:focus {
        border-color: var(--gold-crayola);
        box-shadow: 0 0 0 3px rgba(198, 164, 100, 0.15);
        background-color: rgba(42, 42, 42, 0.95);
    }

    .form-control option {
        background: var(--smoky-black-1);
        color: var(--white);
        padding: 12px;
    }

    .buy-btn {
        background: linear-gradient(135deg, var(--gold-crayola) 0%, #ffd700 100%);
        color: var(--smoky-black-1);
        border: none;
        padding: 16px 24px;
        border-radius: 12px;
        font-weight: var(--weight-bold);
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        width: 100%;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
        overflow: hidden;
    }

    .buy-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
        transition: left 0.5s ease;
    }

    .buy-btn:hover::before {
        left: 100%;
    }

    .buy-btn:hover {
        transform: translateY(-2px);
        box-shadow:
            0 8px 25px rgba(198, 164, 100, 0.4),
            0 4px 12px rgba(0, 0, 0, 0.15);
        background: linear-gradient(135deg, #ffd700 0%, var(--gold-crayola) 100%);
    }

    .buy-btn:active {
        transform: translateY(0);
        box-shadow: 0 2px 8px rgba(198, 164, 100, 0.3);
    }

    .no-plans-card {
        text-align: center;
        padding: 60px 24px;
        background: rgba(42, 42, 42, 0.5);
        border: 2px dashed rgba(198, 164, 100, 0.3);
        border-radius: 24px;
        color: rgba(255, 255, 255, 0.7);
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .menu-grid {
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .menu-listing {
            padding: 0 1rem;
        }

        .card-content {
            padding: 24px 20px 20px;
        }

        .menu-card {
            min-height: auto;
        }

        .card-title {
            font-size: 1.3rem;
        }
    }

    @media (max-width: 480px) {
        .card-content {
            padding: 20px 16px 16px;
        }

        .buy-btn {
            padding: 14px 20px;
        }
    }

    /* Font Size Overrides - Add this to your existing style block */

    /* Plan Badge - Make it more prominent */
    .menu-card .plan-badge {
        font-size: 10px !important;
        font-weight: var(--weight-bold) !important;
        padding: 8px 18px !important;
    }

    /* Card Title - Increase significantly */
    .menu-card .card-title {
        font-size: 20px !important;
        line-height: 1.2 !important;
        font-weight: var(--weight-bold) !important;
        margin-bottom: 16px !important;
    }

    /* Card Description Text - Make more readable */
    .menu-card .card-text {
        font-size: 13px !important;
        line-height: 1.5 !important;
        color: rgba(255, 255, 255, 0.85) !important;
        margin-bottom: 20px !important;
    }

    /* Duration Section */
    .menu-card .duration-label {
        font-size: 0.9rem !important;
        font-weight: var(--weight-bold) !important;
        letter-spacing: 1.2px !important;
    }

    .menu-card .duration-value {
        font-size: 1.3rem !important;
        font-weight: var(--weight-bold) !important;
    }

    /* Pricing Section Header */
    .menu-card .pricing-title {
        font-size: 1rem !important;
        font-weight: var(--weight-bold) !important;
        letter-spacing: 1.2px !important;
    }

    /* Price List Items */
    .menu-card .price-frequency {
        font-size: 1rem !important;
        font-weight: var(--weight-medium) !important;
    }

    .menu-card .price-amount {
        font-size: 1.1rem !important;
        font-weight: var(--weight-bold) !important;
    }

    /* Form Label */
    .menu-card .form-label {
        font-size: 1rem !important;
        font-weight: var(--weight-semiBold) !important;
        margin-bottom: 12px !important;
    }

    /* Select Dropdown */
    .menu-card .form-control {
        font-size: 1rem !important;
        padding: 16px 18px !important;
        font-weight: var(--weight-medium) !important;
    }

    .menu-card .form-control option {
        font-size: 1rem !important;
        padding: 12px !important;
    }

    /* Buy Button */
    .menu-card .buy-btn {
        font-size: 1.1rem !important;
        font-weight: var(--weight-bold) !important;
        padding: 18px 24px !important;
        letter-spacing: 1.5px !important;
    }



    .food-type-badge {
        position: absolute !important;
        top: 12px !important;
        right: 12px !important;
        color: white !important;
        font-size: 9px !important;
        font-weight: var(--weight-bold) !important;
        padding: 2px 6px !important;
        border-radius: 15px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        z-index: 10 !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
        border: 2px solid rgba(255, 255, 255, 0.2) !important;
        backdrop-filter: blur(4px) !important;
        transition: all 0.3s ease !important;
    }

    /* Veg Badge - Fresh Green Gradient */
    .food-type-badge.veg {
        background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
    }

    /* Non-Veg Badge - Bold Red Gradient */
    .food-type-badge.non-veg {
        background: linear-gradient(135deg, #dc3545 0%, #ff6b6b 100%) !important;
    }

    /* Hover effect for food type badge */
    .menu-card:hover .food-type-badge {
        transform: scale(1.05) !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25) !important;
    }

    /* Add some spacing to prevent overlap with the golden top border */
    .menu-card {
        position: relative !important;
    }

    /* Ensure the card content doesn't interfere */
    .menu-card .card-content {
        position: relative !important;
        z-index: 1 !important;
    }

    /* Mobile adjustments */
    @media (max-width: 768px) {
        .food-type-badge {
            top: 8px !important;
            right: 8px !important;
            font-size: 10px !important;
            padding: 4px 10px !important;
        }
    }