body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #ffa688;
    font-family: Arial, sans-serif;
    transition: all 0.3s;
}
.pruduct{
    display: flex;
    align-items: center;
    background-color: #e3e2e2;
    justify-content: center;
    padding: 20px;
    flex-direction: column;
    gap: 10px;
    border-radius: 10%;
    transition: all 0.3s;

}
.pruduct img{
    width: 100%;
    height: auto;
    box-shadow: 0 5px 20px rgba(60, 118, 233, 0.9);
    border-radius: 5%;
    
}
.pruduct h3{
    margin: 0;
    color: rgb(0, 0, 0);

}
.pruduct .stock{
    color: red;
    margin: 0;
    font-size: 20px;
    text-decoration: line-through;
    
}
.pruduct .kkhat {
    color: red;
    font-size: 20px;
    text-decoration: underline;

}

.pruduct .sad{
    font-size: 19px;
    margin: 0;
    color: black;

}

.pruduct button {
    background-color: steelblue;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(64, 100, 219, 0.9);
}

.pruduct button:hover {
    background-color: tomato;
    transform: translateY(-6px) scale(1.1) translateZ(10px);
    box-shadow: 0 5px 20px rgba(174, 50, 50, 0.9);
}

.pruduct button:active {
    background-color: crimson;
    transform: translateY(6px) scale(0.9);
    box-shadow: none;
}
.light-cont {
    position: fixed;
    bottom: 7px;
    left: 7px;
    z-index: 999;
    background-color:#ffa688;
    transition: all 0.3s;
}
.light-button {
    background-color: rgb(160, 160, 160);
    padding: 30px 30px;
    border-radius: 100%;
    transition: all 0.3;
}
.light-button:hover{
    transition: all 0.3s;
    transform: translateY(-5px) scale(1.03);
}
.light-button:active{
    transition: all 0.3s;
    background-color: rgb(80, 80, 80);
    transform: translateY(5px) scale(0.97);
}