﻿.section-title {
    color: var(--primary);
    font-size: 2.4rem;
    text-align: center;
    margin: 40px 0 30px;
    font-weight: 700;
    position: relative;
}

    .section-title::after {
        content: '';
        width: 100px;
        height: 5px;
        background: linear-gradient(to right, var(--gold), var(--primary));
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 3px;
    }

.food-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(200, 16, 46, 0.15);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .food-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 25px 50px rgba(200, 16, 46, 0.28);
    }

.card-img-container {
    position: relative;
    height: 245px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.food-card:hover .card-image {
    transform: scale(1.1);
}

/* Badge Tỉnh */
.location-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #c8102e, #e63939);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

/* Nội dung card */
.card-body {
    padding: 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

    .card-title a {
        color: #2c1810;
    }

        .card-title a:hover {
            color: var(--primary);
        }

.card-desc {
    color: #555;
    font-size: 1.02rem;
    line-height: 1.6;
    margin-bottom: 18px;
    flex-grow: 1;
}

/* Thông tin meta + stats */
.card-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 0.98rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
}

.rating {
    color: #f39c12;
    font-weight: bold;
}

/* Stats - Phần "wao" nhất */
.card-stats {
    background: linear-gradient(135deg, #fffaf0, #fff1f0);
    padding: 14px 12px;
    border-radius: 14px;
    display: flex;
    justify-content: space-around;
    margin: 18px 0;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.05);
}

.stat-item {
    text-align: center;
    font-size: 0.95rem;
}

    .stat-item i {
        color: var(--primary);
        margin-bottom: 4px;
        display: block;
    }

/* Tags */
.card-tags {
    margin-top: auto;
    padding-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag-item {
    background: linear-gradient(135deg, #fff1f0, #ffe6e6);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

.tag-empty {
    color: #aaa;
    font-style: italic;
}
