@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('../../font-files/bebas-font.css');

@import url('/font-files/bebas-font.css');
:root {
    --bebas-font-family: "Bebas Neue", sans-serif;
    --bebas-book-font-family: "Bebas Neue Book", sans-serif;
    --albert-sans-font-family: "Albert Sans", sans-serif;
    --gray-color: #465254;
    --pink-color: #E71B27;


    --bg-gray-color-light: #F2F2F2;
}

body {
    font-size: 16px;
    letter-spacing: .1em;
}



p {
    margin: 0;
}



.category-btn {
    border: none;
    outline: none;
    background-color: var(--bg-gray-color-light);
    color: var(--pink-color);
    font-family: var(--bebas-font-family);
    font-size: 1.4em;
    font-weight: 600;
    width: -webkit-fill-available;
    text-align: left;
    padding-left: 1em;
    font-size: 2em;
}

.sub-category {
    background-color: var(--gray-color);
    color: #FFFFFF;
    font-family: var(--bebas-font-family);
    font-size: 1.1em;
    font-weight: 300;
}


.sub-cat-title {
    font-size: 2em;
    font-weight: 600;
    font-family: var(--bebas-book-font-family);
}

.sup-cat-text {
    padding-left: .3em;
    font-size: 1.2em;
    line-height: 1.8em;
    font-weight: 400;
    font-family: var(--bebas-book-font-family);
}

.products-card {
    width: 100%;
    aspect-ratio: 4/5;
    height: fit-content;
    background-image: linear-gradient(135deg, #F2F2F2  50%, #E71B27 50%);
    background-size: 250% 250%;
    background-position: left top;
    transition: background-position 1.1s  ease-in-out;;
    color: var(--pink-color);
    font-family: var(--bebas-font-family);
    font-weight: 700;
    font-size: 1.8em;
    overflow: hidden;
}


.products-card-link {
    position: relative;
    color: var(--gray-color);
    transition: 0.3s ease-in-out;
    width: 4em;
    display: inline-flex;
    justify-content: start;
  }
  
  .products-card-link:hover {
    color: #FFFFFF;
  }
  



.products-card:hover {
    background-position: right bottom;
    color:#FFFFFF;
  }


  .products-card:hover  .products-card-link{
    color: #FFFFFF;
    
  }

  .products-card:hover .products-card-slash{
    opacity: 1;
    left: 100%;
  }
  .products-card:hover   img {
    transition: all 1.1s ease-in-out;
  }

  .products-card img {
    transition: all 1.1s ease-in-out;
  }
  .products-card:hover   img{
    overflow: hidden;
    transform: scale(1.2);

}

.h-min-content {
    height: min-content;
}

.product-filter-btn {
    background-color: var(--pink-color);
    font-weight: 500;
    font-size: 2em;
    width: fit-content;
    padding: .8em 4em;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 25% 100%);
    color: #FFFFFF;
    cursor: pointer;
    margin-bottom: .5em;
    outline: none;
    border: none;
}

@media only screen and (max-width: 1200px) {
    body {
        font-size: 14px;
    }

}

@media only screen and (max-width: 992px) {
    body {
        font-size: 12px;
    }




}

@media only screen and (max-width: 768px) {
    body {
        font-size: 12px;
    }

}

@media only screen and (max-width: 576px) {
    body {
        font-size: 12px;
    }


}

@media only screen and (max-width: 468px) {
    body {
        font-size: 8px;
    }





}

@media only screen and (max-width: 350px) {
    body {
        font-size: 8px;
    }


}