.signature-dishes {
    padding: 80px 6%;
    background: #fff;
    margin-top:300px;
}

.section-title {
    text-align: center;
    font-size: 38px;
    font-family: "Playfair Display", serif;
    margin-bottom: 60px;
}

.signature-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.dish-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: transform .3s ease;
}

.dish-card:hover {
    transform: translateY(-8px);
}

.dish-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.dish-title {
    font-size: 18px;
    margin: 16px;
}

.dish-desc {
    font-size: 14px;
    color: #666;
    margin: 0 16px 16px;
}

.dish-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
}

.dish-price {
    font-weight: bold;
    color: #ff6600;
}

.signature-grid .add-to-cart-btn {
    background: #ff6600;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
}
