@import url('https://fonts.googleapis.com/css2?family=Playfair+Display+SC&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@500&display=swap');

/*  TEXT */

* {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
}

.heading {
    font-family: 'Playfair Display SC', serif;
    font-size: 25px;
    text-transform: uppercase;
}

.subtitle {
    font-size: 18px;
}

.font {
    font-family: 'Playfair Display SC', serif;
    text-transform: uppercase;
}


.footer-heading {
    font-family: 'Playfair Display SC', serif;
    font-size: 20px;
    text-transform: uppercase;
}

.gold {
    color: #ce9d86ff;
}

.button {
    text-align: center;
    justify-content: center;
    border-radius: 0px;
    background-color: #fff;
    height: 3.125rem;
}

.button-black-o {
    border: 1px solid #000;
    color: #000;
    background-color: #fff;
}

.button-black {
    border: 1px solid #fff;
    color: #fff;
    background-color: #000;
}

.full-w {
    width: 100%;
}

.content-box {
    padding: 0px 16px !important;
}


.footer-end {
    
    color: #333;
    font-size: 12px;
    padding: 30px 0px;
}

.mnav {
    margin-top: 60px;
}

.mnav1 {
    margin-top: 70px;
}

.mnav2 {
    margin-top: 120px;
}

.navbar-light {
    background-color: white;
}

.related-prod-bar{
    padding: 15px 10px;
    overflow-x: scroll;
    height: 300px;
    overflow-y: hidden;
}

.related-prod{
    border-radius: 5px;
    padding: 40px 25px;
    font-size: 14px;
    -webkit-box-shadow: 0px 0px 20px -1px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0px 0px 20px -1px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 0px 20px -1px rgba(0, 0, 0, 0.12);
    margin-left: 20px;
}

.image-preview-bar{
    padding: 15px 10px;
    overflow-x: scroll;
    height: 150px;
    overflow-y: hidden;
}

.image-preview{
    border-radius: 5px;
    padding: 20px;
    font-size: 14px;
    -webkit-box-shadow: 0px 0px 20px -1px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0px 0px 20px -1px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 0px 20px -1px rgba(0, 0, 0, 0.12);
    margin-left: 10px;
}

.product-card {
    border-radius: 5px;
    padding: 20px;
    font-size: 14px;
    -webkit-box-shadow: 0px 0px 29px -1px rgba(0, 0, 0, 0.22);
    -moz-box-shadow: 0px 0px 29px -1px rgba(0, 0, 0, 0.22);
    box-shadow: 0px 0px 29px -1px rgba(0, 0, 0, 0.22);
    padding-bottom: 25px;
}

.ad-card {
    border-radius: 5px;
    
    font-size: 14px;
    -webkit-box-shadow: 0px 0px 29px -1px rgba(0, 0, 0, 0.22);
    -moz-box-shadow: 0px 0px 29px -1px rgba(0, 0, 0, 0.22);
    box-shadow: 0px 0px 29px -1px rgba(0, 0, 0, 0.22);
}

.product-card > .heading {
    font-size: 20px;
}

.product-card > img {
    padding: 20px 0px;
}

.gutter-r {
    padding-right: 7px !important;
}

.gutter-l {
    padding-left: 7px !important;
}

.price {
    font-size: 19px;
    line-height: 10px;
    font-family: 'Playfair Display SC', serif;
}

.price::after {
    content: " PKR";
    font-size: 16px;
}

.discount {
    font-size: 16px;
    font-family: 'Playfair Display SC', serif;
    text-decoration: line-through;
    color: #333;
}

.discount::after {
    content: " PKR";
}

.sale {
    background-color: #222; 
    padding-top: 12px;
    position: absolute;
    border-radius: 50%;
    font-size: 12px;
    color:white;
    height: 42px;
    width: 42px;
    text-align: center;
    transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -webkit-transform: rotate(-10deg);
}

.cart-count {
    background-color: red; 
    margin-left: 84px;
    margin-top:-3px;
    position: fixed; 
    border-radius: 50%;
    font-size: 12px;
    color:white;
    height: 17px;
    width: 17px;
    text-align: center;
}
/* ANIMATIONS */

.cart-anim {
    animation: nudge 5s infinite;
}

@keyframes nudge {
  
    97% {
      transform: rotate(0deg);
    }
    
    98% {
      transform: rotate(-7deg);
    }
    
    99% {
      transform: rotate(7deg);
    }
    
    100% {
      transform: rotate(-7deg);
    }
  }