

.product{
    padding: 10px;
    color: var(--dark-color);
    font-size: 18px;
}
.product-images{
    flex: 1;
}
.product-images img{
    border-radius: 10px;
    object-fit: cover;
    height: 100%;
    cursor: pointer;
    aspect-ratio: 1/1;
}
.product-images-small{
    max-width: 165px;
}
.product-images-small img{
    min-height: 80px;
    max-height: 150px;
    min-width: 90px;
}
.product-images-main{
    max-width: 500px;
}
.product-images-main img{
    min-height: 272px;
    max-height: 482px;
    min-width: 300px;
}
.product-info h2{
    font-weight: 600;
    font-size: 40px;
}
.product-info-description{
    line-height: 20px;
}
.product-info{
    flex: 3;
    min-width: 300px;
    max-width: 800px;
}
.product-info-parameters span:first-child{
    font-weight: 600;
}
.product-info-parameters > div:nth-child(odd){
    padding-right: 25px;
}
.product-info-parameters > div{
    flex: 1 1 calc(50% - 16px);
    align-items: center;
}
.product-info-parameters-all-link{
    color: var(--green1-color);
    font-weight: 600;
    width: 100%;
    text-align: center;
    cursor: pointer;
}
.product-info-price{
    font-size: 24px;
    font-weight: 500;
}
.product h3{
    font-weight: 600;
    font-size: 32px;
}
.product ol{
    list-style-type: disc;
    padding-left: 20px;
    color: var(--grey2-color);
}
.product-tabs li{
    padding: 16px;
    border-radius: 10px;
    background: var(--light-grey-color);
    flex: 1 1 calc(25% - 32px);
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
    font-weight: 600;
}
.product-tabs li:hover,
.product-tabs  .product-tab-active{
    background: var(--green1-color);
    color: var(--white-color);
    transition: 0.3s;
}
.product-parameters .product-info-parameters{
    background: var(--light-grey-color);
    padding: 24px;
    border-radius: 10px;
}
.product-parameters .product-info-parameters span:last-child{
    color: var(--grey2-color);
}
.product pre{
    line-height: 30px;
    color: var(--grey2-color);
    padding-left: 20px;
}





@media (max-width: 900px) {
    .product-tabs{
        flex-direction: column;
    }
}
@media (max-width: 430px) {
    .product{
        font-size: 14px;
        gap: 20px;
    }
    .product h3{
        font-size: 18px;
    }
    .product-info h2{
        font-size: 20px;
    }
    .product-info-price{
        font-size: 17px;
        font-weight: 500;
    }
    .product-images{
        flex-wrap: wrap;
        flex-direction: column-reverse;
        gap: 12px;
    }
    .product-images-small{
        flex-direction: row;
        max-width: 100%;
        gap: 12px;
    }
    .product-content{
        gap: 12px;
    }
    .product-info{
        gap: 12px;
    }
    .product-info-parameters{
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 12px;
    }
    .product-info-parameters > div:nth-child(odd){
        padding-right: 0;
    }
    .product-tabs{
        gap: 12px;
    }
    .product-tabs > li{
        padding: 12px;
    }
    .product-parameters .product-info-parameters{
        padding: 5px;
    }
    .product-info-parameters-block{
        gap: 12px;
    }
    .product-prices{
        gap: 12px;
    }
    .product-prices > div,
    .product-prices ol{
        gap: 8px;
    }
    .product-prices pre{
        line-height: 23px;
    }
}