/* Best Food Items (под шаблон, аккуратные тени, мягкие углы) */
.best-food-section {
    position: relative;
}

.best-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
    padding: 18px 18px 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
    border: 1px solid rgba(0, 0, 0, .04);
}

.best-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
}

.best-card__thumb {
    display: grid;
    place-items: center;
    margin-bottom: 14px;
}

.best-card__thumb img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    background: #fafafa;
    /* светлый фон под гайдлайн, без желтизны */
    border-radius: 14px;
}

.best-card__body {
    margin-top: 2px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.best-card__title {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    margin: 0 0 2px;
    color: #0b0b0c;
}

.best-card__meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 6px;
}

.best-card__price {
    font-weight: 800;
    font-size: 20px;
}

.best-card__btn {
    margin-top: auto;
    border-radius: 12px;
    padding: 10px 14px;
}

/* Заголовочная зона секции в мобильной версии (iPhone SE — базовый ориентир) */
@media (max-width: 667px) {
    .title-area h2.title {
        font-size: 24px !important;
        line-height: 1.3;
        font-weight: 700;
    }

    .title-area .sub-title {
        font-size: 16px !important;
        letter-spacing: 0.5px;
    }

    .best-card__title {
        font-size: 16px;
    }

    .best-card__price {
        font-size: 18px;
    }
}