* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins',sans-serif;
    box-sizing: border-box;
}
section{
    
}
section .container{
    width: 100%;
    min-height: 100vh;
    
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 0;
}

.Product{
    width: 90%;
    max-width: 750px;
    display: flex;
}

.gallery {
    flex-basis: 47%;
    background: #FFF;
    transform: scale(1.08);
    box-shadow: -10px 5px 10px 10px rgb(0,0,0,0.1);
    position: relative;
}

.gallery img {
    width: 100%;
    display: block;
    padding-top: 100px;
}

.details{
    flex-basis: 53%;
    background: #FFF;
    padding: 40px;
    padding-left: 60px;
    box-shadow: -10px 5px 10px 10px rgb(0, 0, 0, 0.1);
    font-size: 13px;
    font-weight: 500;
    color: #777;
}

.details h1{
    color: #333;
    font-size: 35px;
}

.details h2{
    color:#555;
    font-size: 30px;
    font-weight: 600;
}

.details h3{
    color: #ff0202;
    margin-bottom: 20px;

}

.details form{
    font-size: 15px;
    font-weight: 400;
}

.size-select{
        display: flex;
        align-items: center;
        margin-top: 50px;
}
.size-select p{
    width: 70px;
}
.size-select input:checked + span {
    color: #146C94;
    font-weight: 600; 
}
.size-select input {
    display: none;
}
.size-select span{
    padding: 5px;
    margin-right: 10px;
    cursor: pointer;
}
.color-select {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.color-select p{
    width: 75px;
}
.color-select span{
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-right: 15px;
    cursor: pointer;
}
.Color-1{
    background: red;
}
.Color-2{
    background: #00d874;
}
.Color-3 {
    background: blue;
}
.Color-4 {
    background: pink;
}
.color-select input{
    display: none;
}
.color-select input:checked + span {
    transform: scale(0.7);
    box-shadow: 0 0 0 4px #FFF,0 0 0 6px #146C94;
} 
.quantity-select{
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.quantity-select p{
    width: 75px;
}
.quantity-select input {
    background: #eee;
    border: 0;
    outline: 0;
    padding: 2px 2px 2px 15px;
    width: 50px;
    border-radius: 12px;
    
}
form .link {
    background: #146C94;
    color: #FFF;
    font-size: 17px;
    width: 100%;
    padding: 10px;
    border-radius: 30px;
    border: 0;
    outline: 0;
    margin-top:50px;
    box-shadow: 0 10px 10px rgba(34, 29, 74, 0.25);
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}
form .link a{
    cursor: pointer;
    text-decoration: none;
    color: #fff;
}
.controls{
    position: absolute;
    bottom: 40px;
    right: 20px;
}


.btn.active {
    background: #eee;
}

footer{
    /* position: fixed;
    bottom: 0; */
    width: 100%;
}
footer mark {
    padding: 8px 30px;
    border-radius: 7px;
}

footer a {
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    color: #003;
}