body{
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #4facfe, #8e44ad);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.contanier{
    background: #fff;
    overflow: hidden;
    width: 360px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    text-align: center;
    padding: 20px;
}

.logo {
    text-align: left;
}
.logo img {
    width: 60px;
}
.product_image {
    width: 100%;
    border-radius: 10px;
}

.title{
    font-weight: bold;
    font-size: 18px;
    margin-top: 10px;
    display: flex;
    margin-left: 10px;
}

.description{
    font-size: 14px;
    color: #777;
    margin-right: 10px;
    margin: 10px 0;
    display: flex;  
}

.rating{
    margin-right: 240px;
}

.checked{
    color: rgb(228, 228, 30);
}

.color_options{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    gap: 10px;
    font-weight: bold;
}

.color_input{
    display: none;
}

.color_lable{
    height: 20px;
    width: 20px;
    border-radius: 50%;
    cursor: pointer;
    display: inline-block;
    border: 2px solid transparent;
    transition: border 0.2s ease;
}

.color_input:checked + .color_lable {
    border: 2px solid black;
}

.blue { background: #0074D9; }
.pink { background: #FF1493; }
.yellow { background: #FFD700; }

.price {
    font-size: 24px;
    font-weight: bold;
}

.price small {
    display: block;
    font-size: 12px;
    color: gray;
}

.add_to_cart {
    margin-top: 15px;
    background: linear-gradient(to right, #4facfe, #8e44ad);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
}
