/* ============================= */
/* 🔥 CHEF SPECIAL SECTION CSS */
/* ============================= */

/* SECTION CONTAINER */
.featured-dish {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    padding: 40px;
    margin: 40px auto;

    background: #f8f8f8;
    border-radius: 16px;

    max-width: 1200px;
    width: 100%;

    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* LEFT SIDE */
.featured-left {
    flex: 1;
    min-width: 280px;
}

.featured-left h5 {
    font-size: 14px;
    color: #777;
    margin-bottom: 5px;
}

.featured-left h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.featured-left p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

/* PRICE */
.price {
    font-size: 20px;
    font-weight: bold;
    color: #ff5722;
    margin-bottom: 15px;
}

/* BUTTON */
.btn-primary {
    display: inline-block;
    padding: 10px 22px;
    background: linear-gradient(135deg, #ff5722, #ff784e);
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
}

/* RIGHT SIDE IMAGE */
.featured-right {
    flex: 1;
    text-align: center;
}

.featured-right img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 12px;
}

/* ============================= */
/* 📱 TABLET */
/* ============================= */
@media (max-width: 992px) {

    .featured-dish {
        padding: 30px;
        gap: 25px;
    }

    .featured-left h2 {
        font-size: 24px;
    }
}

/* ============================= */
/* 📱 MOBILE */
/* ============================= */
@media (max-width: 768px) {

    .featured-dish {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .featured-left {
        order: 2;
    }

    .featured-right {
        order: 1;
    }

    .featured-right img {
        max-width: 100%;
    }

    .featured-left h2 {
        font-size: 22px;
    }

    .price {
        font-size: 18px;
    }
}