/* google fonts tagesscrift  */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&family=Tagesschrift&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

body{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: aliceblue;
}
.product{
    max-width: 350px;
    width: 80%;
    border-radius: 25px;
    padding: 20px 30px 30px 30px;
    box-shadow: 0 0 5px rgba(0,0,0.2);
    overflow: hidden;
}
/* cover - cover the image with stretch 
contain - fully covers the image */
.product .logo{
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.product .logo img{
    height: 70px;
    width: 70px;
    object-fit: cover;
}

.product .logo i{
    font-size: 35px;
    color: black;
    transition: 1s ease-out;
}

.product .logo i:hover{
    color: bisque;
    cursor: pointer;
}

.product .main-img img{
    height: 300px;
    width: 300px;
    object-fit: cover;
    /* transform: rotate(18deg); */
}

.product .details .ear-bud{
    font-size: 24px;
    font-weight: 500;
}

.product .details p{
    font-size: 12px;
    font-weight: 300;
}

.product .details .stars i{
    margin-top: 5px;
}

.product .color-price .color-opt{
    display: flex;
    align-items: center;
}

.color-price{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.color-price .color-opt .color{
    font-size: 18px;
    font-weight: 18px;
    margin-right: 8px;
}

.color-opt .col-type{
    display: flex;
    gap: 15px;
}

.color-opt .circle{
    cursor: pointer;
}

.color-opt .col-type .circle{
    height: 18px;
    width: 18px;
    background: black;
    border-radius: 50%;
    margin-left: 5px;
}

.color-opt .col-type .circle.black.active{
    box-shadow: 0 0 0 2px #fff,
                0 0 0 4px black;
}

.color-opt .col-type .circle.white{
    background: rgba(143, 138, 138, 0.718);
}

.color-opt .col-type .circle.white.active{
    box-shadow: 0 0 0 2px #fff,
                0 0 0 4px rgba(143, 138, 138, 0.718);
}

.color-price .price{
    display: flex;
    flex-direction: column;
    font-size: 18px;
}

/* .color-price .price-name{
    margin-bottom: 10px;
} */

.color-price .price-name{
    font-size: 12px;
}