/* ========== Основные отступы и оформление секций ========== */
.section-header {
    margin-top: 20px;
    margin-bottom: 12px;
    text-align: center;
}

.section-title {
    font-size: 2.0em;
    font-weight: 700;
    color: #222;
}

.section-description {
    color: #333;
    font-size: 1.12em;
    margin-bottom: 16px;
}

.section-divider {
    display: block;
    margin: 18px auto 12px auto;
    width: 52px;
    height: 4px;
    background: #008850;
    border-radius: 2px;
}

.section-divider2 {
    display: block;
    margin: 22px auto 12px auto;
    width: 40px;
    height: 4px;
    background: #00ab4c;
    border-radius: 2px;
}

.text-center { text-align: center; }
.text-info { color: #17a2b8; }

/* ========== Оформление товаров ========== */
.products-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-top: 18px;
    margin-bottom: 24px;
}

.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    margin-bottom: 18px;
}

.product-image-wrap {
    border: 3px solid #00ab4c;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 2px 8px #0001;
    width: 330px;           /* КВАДРАТ! */
    height: 330px;          /* КВАДРАТ! */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
    margin-bottom: 14px;
    overflow: hidden;
}
.product-image-wrap:hover {
    box-shadow: 0 8px 32px #00ab4c22;
    border-color: #008f3c;
    transform: scale(1.08);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.product-title {
    margin-top: 3px;
    font-size: 1.15em;
    font-weight: 700;
    color: #666;                /* Серый под стиль сайта */
    text-align: center;
    letter-spacing: 0.01em;
}


/* ========== Остальное оформление (контакты, разделы) ========== */
.section-bg {
    background: #f7fbfa;
    border-radius: 12px;
    padding: 12px 0 20px 0;
}

/* Для вау-анимаций, если подключено wow.js */
.wow.fadeInUp {
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-fill-mode: both;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translate3d(0, 40px, 0); }
    to   { opacity: 1; transform: none; }
}
