﻿body {
    font-family: Arial, sans-serif;
   
}


.sec2{
    
    padding-right: 5%;
    height: 100%;
    width:  150px;
    margin-top: 7%;
    margin-right: 20%;
   
}
.nounderline {
    color: black;
    text-decoration: underline;
    text-decoration: none;
}
.product-details {
    display: flex;
    margin: 20px;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
    max-width: 800px;
    background-color: #f9f9f9;
}

.product-image {
    max-width: 300px;
    max-height: 300px;
    margin-right: 20px;
}

.product-info {
    flex: 1;
}

.product-name {
    font-size: 24px;
    margin-bottom: 10px;
}

.product-description {
    font-size: 16px;
    margin-bottom: 20px;
}

.product-price {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.add-to-cart {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

    .add-to-cart:hover {
        background-color: #45a049;
    }
