:root{
    --primary-font: 'Poppins', sans-serif;
    --primary-color:#FE7F9C;
    /* --primary-color:#dcbdad; */
    --primary-color:#592a2d;
    --animate-duration: 1000ms;
    --animate-delay: 0.5s;


}

* {
    margin: 0;
    padding: 0;
    font-family: var(--primary-font);
    font-weight: 400;
   }
   .fixed-top {
    top: -40px;
    transform: translateY(40px);
    transition: transform .3s;
}
   body{
    background-color: #fdfdfd;
   }
   .primary-color{
    color: var(--primary-color);
   }
   .p-1x{
    padding: 10px;
   }
   .heading{
    background-color: var(--primary-color);
    padding: 10px 30px;
    border-radius: 40px 0px 40px 0px;
    color: #fdfdfd;
    text-align: center;
    width: fit-content;
    font-weight: 400;
   }
   .p-btn {
    background-color: var(--primary-color);
    background-color: #592a2d;
    padding: 15px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 20px 0px 20px 0px;
    cursor: pointer;
}
@media (max-width:600px) {
    .p-btn {
        width: fit-content;
        background-color: #592a2d;
        padding: 5px 10px;
        color: #fff;
        text-decoration: none;
        border-radius: 10px 0px 10px 0px;
        font-size: 14px;
    }
}

   .product-card{
    width: 45%;
    background-color: #fff;
    border-radius: 10px;
    padding: 10px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
margin: 10px 0px;
   }
   .product-card img{
    width: 100%;
    object-fit: contain;
    object-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
   }
   .product-card h2{
    font-size: 16px;
    font-weight: 600;
    margin-top: 5px;
   }
   .product-card p{
    font-size: 14px;
    font-weight: 400;
   }
   .product-card .cartbox{
    text-align: center;
    width: 26%;
    padding: 0;
    margin: 0;
   }
   .product-card .pricebox{
    width: 74%;
   }
   .product-card .cart svg{
    width: 20px;
    text-align: end;
   }
   
   .product-card .price{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0px;
   }
   .product-card .mrp{
    color: #555555;
    text-decoration: line-through;
   }
   .product-card .discount{
    color: #e60000;
    font-weight: 600;
   }
   .product-card .buynowbtn{
    text-decoration: none;
    color: #fff;
    background-color: var(--primary-color);
    padding: 5px 0px;
    border-radius: 5px;
    width: 100%;
    display: block;
    text-align: center;
    margin: 5px 0px;
    font-family: var(--primary-font);
   }
   .product-card .whatsappbtn{
    width: 100%;
    display: block;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background-color: #25D366;
    padding: 5px 0px;
    border-radius: 5px;
    margin: 5px 0px;
    font-family: var(--primary-font);


   }

   footer{
    border-top: 1px solid black;
    padding-top:10px ;
   }

   footer p{
    text-align: center;
    font-family: var(--primary-font);

   }

   

   @media (min-width:1000px){
    .carousel{
        /* overflow: hidden;
        height: 80vh; */
    }
    .carousel img{
        object-fit: contain;
    }
    .container-lg{
        max-width: 900px;
    }
   }