@import url('https://fonts.googleapis.com/css2?family=Nunito&display=swap');

*{
    font-family: 'Nunito', sans-serif;
}
:root{
    --gold :#fed2c7;
}
html{

}
body{

} 

a{
    text-decoration: none;
    color: #222;
}

section{
    position: relative;
    max-width: 2000px;
    margin: 0px auto;
}

.card{
    border: 0px;
    box-shadow: 0px 0px 7px 2px rgb(0 0 0 / 2%);
}
.gold{
    color:var(--gold);
}
.b-gold{
    background:var(--gold);
}
.product-box{
    width: 100%;
}
.card-img-top{
    width: 100%;
    object-fit:cover;
    aspect-ratio: 3/4;

}
.nameofprod{
    height: 25px;
    overflow: hidden;
}
.div-center{
    margin: 0px auto;
}

.main-content {
  position: relative;
}

.owl-nav{
    display: flex;
    justify-content: space-evenly;
    margin-top: 20px;
}

.owl-prev,.owl-next {
    background: white;
    color: #212121;
    border: 1px solid #ccc;
    border-radius: 100%;
}

.owl-prev img,
.owl-next img {
    margin: 20px;
    width: 20px;
}

.incarts{
    position: relative;
}
.nmincart{
    position: absolute;
    top: 0px;
    right: 0px;
    font-size: 12px;
    text-align: center;
    height: 10px;
    width: 10px;
    background: red;
    color: white;
    border-radius: 100%;
}


.cart-item-details a{
    font-weight: 400;
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 8px;
    width: 90%;
    display: block;
}


.img-cover-hompage{
    width: 100%;
    object-fit:cover;
    aspect-ratio: 16/6;
}

@media screen and (max-width: 992px){
    .img-cover-hompage{
        width: 100%;
        object-fit:cover;
        aspect-ratio: 9/16;
    }
}
