main {
    padding-top: 100px;
    min-height: 100vh;
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;

    align-items: center;
    flex-direction: column;
}

.product-container {
    display: flex;

    width: 100%;
}

.product-photo {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;


}

.product-photo img {
    width: 100%;

}

.product-info {
    width: 50%;
    padding: 10px 10px 10px 35px;

}

.product-info h3 {
    font-size: 2rem;
}

.product-info h1 {
    font-size: 3rem;
}

.product-info p {
    margin: 10px 0;
    font-size: 1.2rem;
}
.product-info .color-select{
    display: flex;
    gap: 50px;
    align-items: center;

}
.color-select input{
    display: none;
}
.color-select label{
    --product-color: #d8a8a8;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--product-color);
    user-select: none;
    cursor: pointer;

}
.color-select label:hover{
    --product-color: #ff0000;
}
.color-select input:checked + label{
    border: 5px solid #000000;
}
.product-info button {
    margin-top: 10px;
    background-color: #B3D8A8;
    color: #25564A;
    font-family: var(--title-font);
    font-weight: bold;
    font-size: 1.5rem;
    padding: 10px 40px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    transition: 1s;
}

.product-info button:hover {

    background-color: #25564A;
    color: #B3D8A8;
}

.product-photo-slide {
    margin: 100px 0;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: white;
    /* overflow-x: scroll; */
    display: flex;
    align-items: center;
    position: relative;
}



.product-photo-slide::after {

    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(107, 107, 175, 0) 10%, rgba(9, 9, 121, 0) 20%, rgba(48, 48, 142, 0) 80%, rgba(183, 183, 215, 0) 90%, rgba(255, 255, 255, 1) 100%);
    height: 100%;
    width: 100%;
    gap: 30px;
    pointer-events: none;
}

.product-photo-slide img {
    cursor: pointer;
    height: 90%;
    /* width: 100%; */
    max-width: 10vw;
    object-fit: cover;
    border-radius: 30px;
}

main>video {
    width: 100%;
    max-height: 70vh;
}

main .product-details {
    margin-top: 100px;
    margin-bottom: 100px;
    width: 100%;
}

main .Specifications {
    margin-top: 50px;
    width: 100%;
}
main .Specifications h1{
    margin: 10px;
}
main .Specifications table {
    font-family: var(--text-font);
    width: 100%;
    background-color: lightgray;
}

main .Specifications table tr,
main .Specifications table td {
background-color: white;
padding: 10px;
}

main .Specifications table tr td:nth-of-type(1) {
    width: 20%;
    font-weight: bold;
}

main .Specifications table tr td:nth-of-type(2) {
    width: 80%;
}
main .Specifications table tr td ul{
    padding-left: 20px;
}
main .Specifications table tr td ul li{

}

@media(max-width: 1300px) {
    main {
        padding-top: 10px;
    }

    .product-container {
        flex-direction: column;
    }

    .product-photo {
        width: 100%;
    }

    .product-info {
        width: 100%;
        padding: 10px;
    }

    .product-photo-slide {
        height: 150px;
        width: 90%;
        
    }
    
.product-photo-slide img {

    max-width: 15vw;

}


}