.product-main{
    height: 100vh;
    padding-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pro-cont {
    width: 60%; /* Adjust the width as needed */
    height: 300px; 
}
.pro-row{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.pro-c{
    width: 300px;
    height: 300px;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 5px solid #262262;
    border-radius: 300px;
    font-size: 30px;
    color: #262262;
    font-weight: bold;
    text-align: center;
    transition: 0.5s;
}
.pro-c:hover{
    background-color: #262262;
    color: #ffffff;
}
.pro-container{
    height: fit-content;
    width: 90%;
    margin-left: 5%;
}
.main-con{
    width: 100%;
    height: fit-content;
    padding: 20px;
    border: 1px solid #262262;
    border-radius: 10px;
    margin-top: 20px;
    scale: 0.95;
    transition: 0.5S;
}
.main-con:hover{
    scale: 1.0;
}
.p-c-i{
    width: 400px;
    height: fit-content;
    background-color: #262262;
}
.p-c-i img{
    width: 400px;
    height: fit-content;
}
.p-c-d{
    width: 800px;
    height: fit-content;
    min-height: 400px;
}
.prod-title{
    font-size: 30px;
    font-weight: bold;
    color: #262262;
}
.prod-end{
    font-size: 20px;
    font-weight: bold;
    color: #262262;
}
.pro-row-2 {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.pro-row-2.active {
    display: block;
    opacity: 1;
}
.orderWhats,
.order{
    width: 20%;
    padding: 5px;
    background-color: #262262;
    color: #ffffff;
    border: none;
}
/* product.css */
.pro-2-sub-title{
    margin-top: 20px;
    color: #262262;
    font-weight: bold;
    font-size: 20px;
}
@media(max-width:480px){
    .product-main{
        height: 30vh;
        width: 80%;
        margin-left: 10%;
    }
    .pro-c{
       margin-top: 80px; 
    }
    .pro-cont {
        width: 1000%; 
    }
    .pro-c{
        width: 110px;
        height: 110px;
        border-radius: 75px;
        font-size: 16px;
    }
    .nnm{
        flex-direction: column;
        justify-content: center;
    }
    .p-c-i,
    .p-c-i img,
    .p-c-d    {
        width: 100%;
    }
    .p-c-d    {
        margin-top: 20px;
    }
    .orderWhats,
.order{
    width: 48%;
}
}