/* === Featured Foods Section === */

.food-menu-main {
    background: var(--orange);
    padding: 4rem 1rem;
}

.food-container-main {
    max-width: 1200px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.food-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.food-menu-box-main {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.food-menu-box-main:hover {
    transform: translateY(-5px);
}

.food-menu-img-main {
    height: 200px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.food-menu-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.food-menu-desc-main {
    padding: 1.5rem;
}

.food-menu-desc-main .title-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.food-menu-desc-main h4 {
    color: #333;
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
}

.food-price-main {
    color: var(--red);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

/* Hide the old description */
.food-detail-main {
    display: none;
}

.food-menu-buttons {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
     justify-content: center; /* ✅ Center the text horizontally */
    text-align: center;  
}

.food-menu-buttons .btn {
    padding: 0.7rem 1.4rem;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.food-menu-buttons .btn-primary {
    background: var(--green);
    color: var(--white);
}

.food-menu-buttons .btn-primary:hover {
    background: var(--red);
}

.food-menu-buttons .btn-secondary {
    background: #fff;
    color: var(--green);
    border: 1px solid var(--green);
}

.food-menu-buttons .btn-secondary:hover {
    background: var(--green);
    color: var(--white);
}

.see-all-btn {
    display: inline-block;
    background: var(--green);
    color: var(--white);
    padding: 0.7rem 1.8rem;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 2rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.title-with-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.5rem 0;
}

.food-price-inline {
    font-size: 1.2rem;
    color: var(--red);
    font-weight: 700;
}

.see-all-btn:hover {
    background: var(--red);
    transform: translateY(-2px);
}

/* === Mobile Styling === */
@media (max-width: 768px) {
    .food-menu-desc-main {
        padding: 1rem;
    }

    .food-menu-desc-main .title-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }

    .food-menu-desc-main h4 {
        font-size: 1rem;
    }

    .food-price-main {
        font-size: 1rem;
    }

    .food-menu-buttons {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 0.8rem;
    }
    
       .title-with-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
        font-size: 1rem;
    }

    .food-price-inline {
        font-size: 1rem;

    .food-menu-buttons .btn {
        width: 100%;
        font-size: 0.95rem;
        padding: 0.75rem;
        text-align: center;
    }
}
