/* Основные стили для секции с продукцией */
#products {
    max-width: 1280px;
    margin: 30px auto;
    padding: 40px 20px;
    text-align: center;
}

#products h2 {
    color: #288008;
    margin-bottom: 30px;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-item {
    display: flex;
    flex-direction: column;
    background-color: #f9f9f9;
    border: 1px solid white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    max-width: 300px;
    text-align: left;
    transition: transform 0.3s;
}

.product-item img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.product-item h3 {
    color: #288008;
    font-size: 20px;
    margin-bottom: 10px;
}

.product-item p {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.product-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
    color: #288008;
    text-decoration: underline;
    font-weight: bold;
}

/* Анимация при наведении */
.product-item:hover {
    transform: scale(1.05);
}

/* Адаптивность */
@media (max-width: 991px) {
    .products-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 375px) {
    .products-container {
        grid-template-columns: repeat(1, 1fr);
    }
}