﻿@charset "utf-8";
.grains-banner {
    margin-top: 20px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.grains-banner picture,
.grains-banner img {
    display: block;
    width: 100%;
    height: auto;
}

.benefits-section {
    margin-top: 10px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.benefit-box {
    border-radius: 18px;
    padding: 26px 24px;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.benefit-box h2 {
    margin: 0 0 18px;
    color: #ffffff;
    text-align: center;
}

.benefit-box--green {
    background: linear-gradient(135deg, #4b9b31 0%, #2f7e1f 100%);
}

.benefit-box--orange {
    background: linear-gradient(135deg, #ff8a00 0%, #f26500 100%);
}

.benefit-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.benefit-list li {
    position: relative;
    padding: 0 0 14px 28px;
    margin-bottom: 14px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.35);
    font-size: 17px;
    line-height: 1.5;
}

.benefit-list li:last-child {
    margin-bottom: 0;
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: #fff3a8;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.product-card {
    border: 1px solid #ece5db;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    transition: transform .2s ease, box-shadow .2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10);
}

.product-card a {
    display: block;
    padding: 14px;
    text-align: center;
}

.product-card img {
    width: 100%;
    max-width: 170px;
    height: auto;
    object-fit: contain;
    margin: 0 auto 12px;
}

.product-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.3;
    color: #990000;
}

.product-card p {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #d12b2b;
}

@media (max-width: 991.98px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .home-page {
        padding: 18px 12px 36px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .benefit-box {
        padding: 20px 18px;
    }
}

/* футер */

