.productContainer{
    display: flex;
    justify-content: space-between;
    gap: 35px;
}

.leftProductPage{
    display: flex;
    justify-content: start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
    width: 520px;
}

.productGallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.productMainImage img {
    width: 520px;
    aspect-ratio: 18/13;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    transition: 0.3s ease;
}

.newsSliderWrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 520px;
    gap: 10px;
}

.productThumbsSlider {
    flex: 1;
    min-width: 0;
}

.sliderButtons {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 120px;
}

.productThumb img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.productThumb img:hover {
    transform: scale(1.05);
}

@media(min-width: 320px) and (max-width: 860px){
    .newsContainer{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .leftProductPage{
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .productGallery {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        max-width: 520px;
    }

    .productMainImage img {
        width: 100%;
        aspect-ratio: 1/1;
    }

    .newsSliderWrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        max-width: 300px;
        gap: 10px;
    }

    .productThumbsSlider {
        flex: 1;
        min-width: 0;
    }

    .sliderButtons {
        display: flex;
        justify-content: center;
        gap: 10px;
        width: 100%;
    }

    .productThumb img {
        width: 100%;
        border-radius: 10px;
        cursor: pointer;
        transition: transform 0.2s ease;
    }
}



@media(min-width: 860px) and (max-width: 1200px){
    .leftProductPage{
        display: flex;
        justify-content: center;
        max-width: 420px;
    }

    .productGallery {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        max-width: 420px;
    }

    .productMainImage img {
        width: 100%;
        aspect-ratio: 1/1;
    }

    .newsSliderWrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        max-width: 420px;
        gap: 10px;
    }

    .productThumbsSlider {
        flex: 1;
        min-width: 0;
    }

    .sliderButtons {
        display: flex;
        justify-content: center;
        gap: 10px;
        width: 100%;
    }

    .productThumb img {
        width: 100%;
        border-radius: 10px;
        cursor: pointer;
        transition: transform 0.2s ease;
    }
}

.deliveryContent{
    width: 100%;
    border-radius: 10px;
    background: #242726;
    color: #fff;
    padding: 25px;
    margin-top: 35px;
}

.deliveryContent p {
    font-size: 14px !important;
    font-weight: unset;
    margin-top: 10px;
    margin-bottom: 15px !important;
}

.deliveryContent a {
    font-weight: unset;
    font-size: 16px;
    margin-top: 10px;
}

.deliveryContent h1 {
    font-size: 32px;
}

.deliveryContent h2 {
    font-size: 18px !important;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.deliveryContent h3 {
    font-size: 16px !important;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.deliveryContent h2, .deliveryContent h3, .deliveryContent h4, .deliveryContent h5, .deliveryContent h6{
    margin-bottom: 15px !important;
} 

.deliveryContent ul,
.deliveryContent ol {
    padding-left: 20px !important;
    margin-top: 10px !important;
    margin-bottom: 15px !important;
    font-size: 14px;
}

.deliveryContent ul {
    list-style: disc !important;
}

.deliveryContent ul li {
    margin-top: 15px;
    list-style: outside;
}

.deliveryContent ol {
    list-style: decimal !important;
}

.deliveryContent ol li {
    margin-bottom: 5px !important;
}

.deliveryContent table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
    font-size: 14px;
}

.deliveryContent table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
    font-size: 14px;
    margin-bottom: 20px;
}

.deliveryContent thead tr {
    background-color: #6B8A7A;
    color: white;
}

.deliveryContent thead th {
    padding: 14px;
    text-align: left;
    background-color: #6B8A7A;
}

.deliveryContent thead th:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.deliveryContent thead th:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.deliveryContent tbody tr:nth-child(even) {
    background-color: #F0E8E3;
    color: #242726;
}

.deliveryContent tbody td {
    padding: 14px;
    border: none;
}

.deliveryContent tbody td:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.deliveryContent tbody td:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

@media(min-width: 320px) and (max-width: 860px){
    .productContainer{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .deliveryContent{
        width: 100%;
        padding: 15px;
        margin-top: 35px;
    }
}

.rightProductPage{
    flex: 1;
}

.productStatus{
    display: inline-block;
    background: #6B8A7A;
    padding: 10px 20px;
    color: #fff;
    border-radius: 10px;
}

.productMainTitle{
    font-size: 30px;
    color: #25433C;
    margin-top: 25px;
}

.productMainText{
    margin-top: 20px;
    color: #242726;
}

.productMainText p{
    font-size: 14px;
}

/* элементы */

.productElementContent{
    display: flex;
    align-items: center;
    margin-top: 25px;
    gap: 40px;
}

.productPrice span{
    display: inline-block;
    color: #6B8A7A;
    font-size: 12px;
}

.productPrice p{
    color: #25433C;
    font-weight: bold;
    font-size: 18px;
}

.productCartControls{
    display: flex;
    align-items: center;
    gap: 5px;
}

.productCartButton{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #6B8A7A;
    color: #fff;
    transition: .4s;
    cursor: pointer;
}

.productCartButton img{
    width: 12px;
}

.productCartButton:hover{
    background: #25433C;
}

.productCartInput{
    text-align: center;
    height: 45px;
    width: 70px;
    border-radius: 10px;
    color: #242726;
    border: 1px solid #6B8A7A;
}

@media(min-width: 320px) and (max-width: 550px){
    .productMainInfo{
        text-align: center;
    }

    .productStatus{
        padding: 10px 20px;
        border-radius: 10px;
    }

    .productMainTitle{
        text-align: left;
        font-size: 20px;
        color: #25433C;
        margin-top: 25px;
    }

    .productMainText{
        margin-top: 20px;
        color: #242726;
        text-align: left;
    }

    .productMainText p{
        font-size: 14px;
    }

    .productElementContent{
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex-wrap: wrap;
        align-items: center;
        margin-top: 25px;
        gap: 40px;
    }

    .productPrice{
        text-align: center;
    }
}


@media(min-width: 550px) and (max-width: 920px){
    .productElementContent{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin-top: 25px;
        gap: 40px;
        width: 100%;
    }
}

/* хар-ки */

.characteristicContent{
    margin-top: 35px;
}

.characteristicContent h2{
    font-size: 16px;
    color: #242726;
}

.characteristicContent table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
    font-size: 14px;
    color: #25433C;
    margin-top: 20px;
}

.characteristicContent tbody tr {
    background-color: white;
}

.characteristicContent tbody tr:nth-child(odd) {
    background-color: #F0E8E3;
}

.characteristicContent tbody td {
    padding: 14px;
    border: none;
}

.characteristicContent tbody td:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.characteristicContent tbody td:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* дополнительные услуги */

.additionalServices{
    margin-top: 35px;
}

.additionalServices h2{
    font-size: 16px;
    color: #242726;
}

.additionalServices table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
    font-size: 14px;
    color: #25433C;
    margin-top: 25px;
}

.additionalServices thead tr {
    background-color: #6B8A7A;
    color: white;
}

.additionalServices thead th {
    padding: 14px;
    text-align: left;
    background-color: #6B8A7A;
}

.additionalServices thead th:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.additionalServices thead th:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.additionalServices tbody tr {
    background-color: white;
}

.additionalServices tbody tr a{
    text-decoration: underline;
    color: #1B3A3F;
}

.additionalServices tbody tr a:hover{
    color: #25433C;
    text-decoration: none;
}

.additionalServices tbody tr:nth-child(even) {
    background-color: #F0E8E3;
}

.additionalServices tbody td {
    padding: 14px;
    border: none;
}

.additionalServices tbody td:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.additionalServices tbody td:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.productStaticPhotos {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
    width: 100%;
}

.productStaticPhotos .productThumb {
    flex: 0 0 calc(33.33% - 10px);
    max-width: 100px;
    cursor: pointer;
}

.productStaticPhotos .productThumb img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
}

.relatedProducts{
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 35px;
}


@media (max-width: 1200px){
    .relatedProducts{
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px){
    .relatedProducts{
        grid-template-columns: 1fr;
        gap: 15px;
    }
}