


.details-product {
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    margin-top: -70px;
}
@media (max-width: 991px){
    .details-product {

        margin-top: 10px;

    }

}




#cvcb{
    margin-top: -150px;
    background-color: #f8f9fa;

} 

@media (max-width: 991px){

    #cvcb{
        margin-top: -30px;
        background-color: #f8f9fa;
    
    } 
}


.product-container {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    width: 100%;
}

.product-image {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    text-align: center;
}

.product-image img {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
    border-radius: 8px;
}

.product-details {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

/* .product-price {
    font-size: 22px;
    color: #d9534f;
    font-weight: bold;
    margin-bottom: 10px;
} */

.product-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.product-options {
    margin-bottom: 15px;
}

.product-options label {
    font-size: 16px;
    margin-right: 10px;
}

.product-options input {
    width: 50px;
    padding: 5px;
    font-size: 16px;
}

.add-to-cart {
    background: black;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
    font-weight: bold;
}

.add-to-cart:hover {
    background: orange;
    color: black;
}

.product-info {
    margin-top: 20px;
    list-style: none;
}

.product-info li {
    font-size: 16px;
    color: #555;
    margin-bottom: 5px;
}




.product-details {
    padding: 20px;
    max-width: 600px;
    margin: auto; /* Centers the block */
}
.product-title {
    font-size: 24px;
    font-weight: bold;
}
.product-description {
    margin: 10px 0;
}
.product-info {
    padding-left: 0;
    list-style-position: inside;
}
