/* Стили для секции деталей */
#product-details {
    /*     max-width: 1280px; */
}

#product-details .product-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    margin-top: 80px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

#product-details .product-info img {
    max-width: 50%;
    border-radius: 10px;
}

#product-details .info-text {
    max-width: 45%;
}

#product-details h2 {
    color: #288008;
    margin-bottom: 20px;
}

/* Секция почему выгодно купить */
.why-buy {
    text-align: center;
    margin-bottom: 40px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.why-buy h3 {
    color: #288008;
    margin-bottom: 20px;
}

/* Иконки с преимуществами */
.benefits {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.benefit-item {
    text-align: center;
    max-width: 250px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    padding: 20px;
}

.benefit-item:hover {
    transform: scale(1.1);
}

.benefit-item img {
    max-width: 100px;
    margin-bottom: 10px;
    padding: 20px;
}

.benefit-item h4 {
    color: #288008;
    margin-bottom: 10px;
}

.benefit-item p {
    text-align: start;
}

/* Иконки со сферой применения */
.sulphur_aplication {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.sulphur_aplication-item {
    text-align: center;
    max-width: 180px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    padding: 20px;
}

.sulphur_aplication-item:hover {
    transform: scale(1.1);
}

.sulphur_aplication-item img {
    max-width: 100px;
    margin-bottom: 10px;
    padding: 20px;
}

.sulphur_aplication-item h4 {
    color: #288008;
    margin-bottom: 10px;
}

.sulphur_aplication-item p {
    text-align: start;
}


/* Галерея изображений */
.gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.gallery-container img {
    max-width: 200px;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-container img:hover {
    transform: scale(1.05);
}

/* Адаптивность */
@media (max-width: 768px) {
    #product-details .product-info img {
        max-width: 100%;
    }

    .product-info {
        flex-direction: column;
        text-align: center;
    }


    #product-details .info-text {
        max-width: 100%;
    }

    .benefits {
        flex-direction: column;
        align-items: center;
    }

    .benefit-item {
        margin-bottom: 20px;
    }

    .sulphur_aplication {
        flex-direction: column;
        align-items: center;
    }

    .sulphur_aplication-item {
        margin-bottom: 20px;
    }
}