* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}

body {
    /* font-family: Arial, sans-serif; */
    color: var(--secondary-color);
}

:root{
    font-size: 10px;
    --primary-color: #f7f7f7;
    --secondary-color: #121212;
    --accent-color: #d33239;
}


@font-face {
    font-family: bold;
    src: url(../fonts/Montserrat-ExtraBold.ttf);
}
@font-face {
    font-family: medium;
    src: url(../fonts/Montserrat-Bold.ttf);
}
@font-face {
    font-family: light;
    src: url(../fonts/Montserrat-Regular.ttf);
}

body{
    background-color: var(--secondary-color);
}

body::-webkit-scrollbar{
    display: none;
}

h1{
    /* font-size: 4.2rem; */
    font-size: 4.4rem;
    font-family: bold, sans-serif;
    font-weight: 900;
}
h2{
    /* font-size: 3.8rem; */
    font-size: 4rem;
    font-family: medium, sans-serif;
    font-weight: 900;
}
h3{
    /* font-size: 3rem; */
    font-size: 3.4rem;
    font-family: medium, sans-serif;
}
h4{
    /* font-size: 2.4rem; */
    font-size: 2.8rem;
    font-family: medium, sans-serif;
}
p{
    font-size: 2rem;
    font-family: light, sans-serif;
}

button, input[type="submit"]{
    cursor: pointer !important;
}


/* ******######individual-category-container******###### */

.individual-category-container{
    width: 100%;
    background-color: var(--primary-color);
    padding: 20px 0 25px;
    /* border: 2px solid red */
    
}

.wrapper{
    max-width: 1920px;
    margin: 0 auto;
    padding: 0px 70px 30px;
    display: flex;
    column-gap: 10px;
    /* box-shadow: 0 5px 5px 0 rgba(0,0,0,0.1); */
    /* border: 2px solid red; */
    position: relative;
}


 /* ******######  filters-container-lg-dekstop-starts-here  ******###### */


 .filters-container-lg{
	min-width: 200px;
    height: 100vh;
    position: sticky;
    top: 0;
	overflow-y: scroll;
    /* border: 2px solid green; */
	
}

.filters-container-lg::-webkit-scrollbar{
	display: none;
}

.filters-container-lg .filter-header{
    width: 100%;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--secondary-color);
}

.filters-container-lg .heading{
	display: flex;
	justify-content: start;
	align-items: center;
	column-gap: 10px;
    padding: 10px;
    
}

.filters-container-lg .heading i{
	font-size: 1.8rem;
}

.filters-container-lg .heading h3{
    font-size: 3rem;
}

.filter-form .section .section-heading{
	display: flex;
	justify-content: space-between;
	align-items: center;
    padding: 15px 10px;
}

.filter-form .section .section-heading i{
    font-size: 1.8rem;
    cursor: pointer;
}

.filter-form .section .section-heading h4{
    font-size: 2.2rem;
}

.filter-form .section-list {
	padding: 5px 10px 10px;
    max-height: 500px; /* Set a max height when active */
    overflow: hidden; /* Hide overflow */
    transition: max-height 0.3s ease , padding 0.3s ease; /* Transition effect */
    border-bottom: 1px solid var(--secondary-color);
    display: flex;
    flex-direction: column;
    align-items: start;
    row-gap: 10px;
}



.filter-form .section-list.active {
    max-height: 0px; /* Set a max height when active */
	padding: 0 10px;
}

.filter-form .section-list li label{
    font-size: 1.6rem;
    font-family: light, sans-serif;
    font-weight: 600;
    margin-left: 5px;
    display: flex;
    align-items: center;
    column-gap: 5px;
    text-wrap: wrap;
    margin-left: 8px;
}

.filter-form .section-list li input{
    width: 18px;
    height: 18px;
}

.filter-form .section-list li{
    display: flex;
    align-items: start;
}

.filter-form .hidden {
    display: none !important;
}

.filter-form .color-section span{
	display: inline-block;
	height: 18px !important;
	width: 18px !important;
    border-radius: 3px;
    box-shadow: 0 0 5px 0px rgba(0,0,0,0.3);
	background-color: var(--primary-color);
}

.filter-form .show-all-button , .filter-form .hide-button{
    font-size: 1.4rem;
    font-family: light, sans-serif;
    font-weight: 600;
    border: none;
    text-decoration: underline;
    background-color: transparent;
    color: var(--accent-color);
}

.filter-form input , .filter-form label{
    cursor: pointer;
}

.filter-form .buttons{
    display: flex;
    /* flex-direction: column; */
    justify-content: space-between;
    column-gap: 20px;
}

.filter-form .clear-btn , .filter-form .submit-btn{
    padding: 10px;
    font-size: 1.4rem;
    font-family: light, sans-serif;
    font-weight: 600;
    border: none;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 7px;
    margin-top: 15px;
    width: 50%;
}

.filter-form .clear-btn{
    background-color: transparent;
    border: 3px solid var(--secondary-color);
    color: var(--secondary-color);
    transition: all 0.3s;
}

.filter-form .clear-btn:hover{
    border: 3px solid var(--accent-color);
    color: var(--accent-color);
}

.filter-form .submit-btn{
    background-color: var(--accent-color);
    border: 3px solid var(--accent-color);
    color: var(--primary-color);
    transition: all 0.3s;
}

.filter-form .submit-btn:hover{
    border: 3px solid var(--accent-color);
    color: var(--accent-color);
    background-color: var(--secondary-color);
    font-family: medium , sans-serif;
    /* font-weight: 800; */
}

  /* ******######  filters-container-lg-dekstop-ends-here  ******###### */





.individual-category-container-row{
    width: 85%;
    padding: 0;
    /* margin-left: 50px; */
    /* border: 2px solid green; */
    /* display: flex;
    flex-direction: column;
    align-items: end; */
}

.individual-category-row-heading{
    /* width: 100%; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* border: 2px solid green; */
}



.individual-category-container-row h3 span{
    font-family: light , sans-serif;
}

.individual-category-row-heading .sort-container-lg{
    min-width: 200px;
    border: 1px solid #12121252;
    padding: 12px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
    position: relative;
    cursor: pointer;
}

.individual-category-row-heading .sort-container-lg:hover i , .individual-category-row-heading .sort-container-lg:hover h4 span:first-child{
    opacity: 1;
}

.sort-container-lg i{
    font-size: 1.6rem;
    opacity: .9;
    color: var(--secondary-color);
    transition: all 0.3s;
    
}

.sort-container-lg h4{
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.sort-container-lg h4 span:first-child{
    font-family: light , sans-serif;
    font-size: 1.4rem;
    opacity: .9;
    transition: all 0.3s;
}

.sort-container-lg #sort-by-type{
    color: var(--accent-color);
}


.sort-background-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 999; /* Behind the sort options */
}

.sort-options {
    display: none; /* Hidden by default */
    position: absolute;
    width: 100%;
    top: 50px; /* Adjust based on your layout */
    right: 0;
    background-color: var(--primary-color);
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
    z-index: 9999; /* Above the overlay */
    /* opacity: 0;  */
    /* transform: translateY(-10px);  */
    transition: opacity 0.3s ease, transform 0.3s ease; /* Smooth transition for opacity and transform */
}

.sort-options label {
    display: flex;
    align-items: center;
    column-gap: 12px;
    /* margin: 5px 0; */
    font-size: 1.8rem;
    font-family: light , sans-serif;
    font-weight: 600;
    transition: all 0.3s;
    padding: 10px;
    cursor: pointer;
}

.sort-options label:hover{
    color: var(--accent-color);
}

.sort-options label input{
    transform: scale(1.3);
    cursor: pointer;
}



/* .individual-category-wrapper{
    width: 100%;
    margin-top: 20px;
    
} */

.individual-category-wrapper{
    /* width: 100%;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    column-gap: 30px;
    row-gap: 30px; */
    /* border: 2px solid green; */
}

/* .card{
    box-shadow: 0 0 5px 0px rgba(0,0,0,0.3);
    padding: 5px;
    border-radius: 5px;
}

a{
    display: inline-block;
}

.product-details{
    width: 100%;
}

.product-details .product-card-img{
    width: 100%;
    position: relative;
    overflow: hidden;
}

.product-details .product-card-img img{
    width: 100%;
    aspect-ratio: 7 / 8;
      object-fit: cover;
      border-radius: 8px;
      filter: brightness(.9);
      transition: all 0.3s;
}

.card .product-details .product-card-img .product-card-cta{
    position: absolute;
    z-index: 99;
    right: 0px;
    top: 5px;
    background-color: rgba(132, 130, 130, 0.601);
    border-radius: 5px 1px 1px 5px;
    height: fit-content;
    
  }
  
  .card .product-details .product-card-img .product-card-cta li button{
    border: none;
    padding: 8px 10px 8px 6px;
    font-size: 2.5rem;
    background-color: transparent;
    color: var(--primary-color);
  }
  
  .card .product-details .product-card-img .product-card-sale{
    position: absolute;
    font-family: light;
    left: 0px;
    top: 0px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 5px;
    font-size: 1.8rem;
    width: 25%;
    border-radius: 1px 1px 5px 1px;
    letter-spacing: 1px;
    z-index: 99;
  }

  .card .product-details .product-card-img .product-card-sale>span{
    text-wrap: wrap;
  }
  
  .card:hover .product-details .product-card-img img{
    filter: brightness(1);
  }
  
  .card .product-details figcaption {
      color: var(--secondary-color);
      display: flex;
      flex-direction: column;
      justify-content: center;
  }
  
  .card .product-details figcaption .category-rating {
      display: flex;
      justify-content: space-between;
  }
  .card .product-details figcaption .category-rating>h4.card-category {
    opacity: .5;
    font-size: 1.8rem;
    letter-spacing: .2rem;
  }
  .card .product-details figcaption .category-rating>p{
    font-size: 1.5rem;
  }
  .card .product-details figcaption .category-rating p .fa-star{
    color: rgb(231, 231, 3);
    padding: 0 3px;
  }
  
  .card .product-details figcaption>h4 {
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
      text-align: left;
      font-size: 2.1rem;
      letter-spacing: .1rem;
  }
  
  .card p {
      text-align: left;
      padding: 4px 0;
      font-weight: 900;
      font-size: 1.6rem;
  }
  
  .card p>span {
      color: var(--accent-color);
      text-decoration: line-through;
      font-size: 1.6rem;
  } */

  /* ******######individual-category-container-end-here******###### */






 



/* ######## bottom css ######### */

.bottom{
    height: 50px;
    max-width: 1920px;
    margin: 0 auto;
    /* padding: 0 40px; */
    background-color: var(--primary-color);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 -2px 10px 0 rgba(0,0,0,0.5);
    display: none;
}

.bottom-seperator{
    /* width: 1px; */
    border: 1px solid var(--secondary-color);
}

.sort-container-bottom , .filter-container-bottom{
    /* display: inline; */
    width: 50%;
    /* border: 1px solid red; */
    text-align: center;
}


.sort-bottom-heading{
    height: 100%;
    /* padding: 12px 10px; */
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
    position: relative;
    cursor: pointer;
    /* border: 1px solid black; */
}

/* .sort-bottom-heading:hover{
    font-family: bold , sans-serif;
} */

.sort-bottom-heading:hover i , .sort-bottom-heading:hover h4 span:first-child{
    opacity: 1;
    color: var(--accent-color);
}

.sort-bottom-heading i{
    font-size: 2.2rem;
    opacity: .9;
    color: var(--secondary-color);
    transition: all 0.3s;
    
}

.sort-bottom-heading h4{
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.sort-bottom-heading h4 span:first-child{
    font-family: light , sans-serif;
    font-size: 1.7rem;
    opacity: .9;
    transition: all 0.3s;
}

.sort-bottom-heading #sort-by-type-sm{
    color: var(--accent-color);
}




.filter-bottom-heading{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 1px solid red; */
    /* font-size: 2.5rem; */
    color: var(--secondary-color);
    cursor: pointer;
}

.filter-bottom-heading:hover h4 , .filter-bottom-heading:hover i{
    color: var(--accent-color);
}

.filter-bottom-heading:hover i{
    opacity: 1;
    
}

.filter-bottom-heading i{
    opacity: .9;
    color: var(--secondary-color);
    transition: all 0.3s;
    font-size: 2.2rem;
}

.filter-bottom-heading h4{
    /* font-size: 3rem; */
    margin-left: 10px;
    transition: all 0.3s;
    /* color: var(--secondary-color); */

    font-size: 2rem;
    color: var(--secondary-color);
}



  /* ******######  filters-container-small-sizes-starts-here  ******###### */




.filter-sm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    display: none; /* Hidden by default */
    z-index: 99; /* Make sure it's above other content */
}

.filters-container-sm {

    max-width: 1920px;
	margin: 0 auto;
	padding: 10px 40px;
	background-color: var(--primary-color);
    position: fixed;
    bottom: -700px; /* Start off-screen */
    left: 0;
    right: 0;
    border-radius: 15px 15px 0 0;
    box-shadow: 0 -5px 10px 0 rgba(0,0,0,0.3);
    max-height: 700px; /* Set max height */
    opacity: 0; /* Hidden by default */
    transition: all 0.5s; /* Smooth transition */
    z-index: 100; /* Ensure it's above the overlay */
}

.filters-container-sm.active {
    bottom: 0; /* Position it at the bottom */
    opacity: 1; /* Make it visible */
}

.filter-sm-overlay.active {
    display: block; /* Show the overlay */
}



.filters-container-sm::-webkit-scrollbar{
	display: none;
}

.filters-container-sm .filter-header-container{
    /* width: 100%; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--secondary-color);
    /* border: 1px solid black; */
}

.filters-container-sm .filter-header-container .filter-sm-close-btn{
    font-size: 2.7rem;
    cursor: pointer;
}

.filters-container-sm .filter-heading{
	display: flex;
	justify-content: start;
	align-items: center;
	column-gap: 10px;
    padding: 10px;
	/* overflow-y: scroll; */
	
    
}

.filters-container-sm .filter-heading i{
	font-size: 2rem;
}

.filters-container-sm .filter-heading h3{
    font-size: 3rem;
    /* font-weight: 500; */
}

.filter-form-sm{
	/* height: 100%; */
	/* display: flex; */
	flex-direction: column;
	/* border: 2px solid red; */
	height: 300px;
    display: none;
}

.filter-form-sm .headings-lists{
	height: 85%;
	display: flex;
	/* border: 2px solid green; */
    margin-bottom: 5px;
}


.filter-form-sm .filter-headings{
	width: 50%;
	height: 100%;
	overflow: hidden;
	overflow-y: scroll;
}


.filter-form-sm .filter-headings::-webkit-scrollbar{
	display: none;
}

.filter-form-sm .section{
	/* border: 2px solid black; */
	/* width: 100%; */
	/* margin-top: 5px; */
	border-radius: none !important;
	height: 65px;
    width: 100%;
	
	display: flex;
	align-items: center;
	background-color: var(--secondary-color);
	color: var(--primary-color);
	box-shadow: 0 0 5px 1px rgba(0,0,0,0.5);
}

.filter-form-sm .toggle-filters{
	border-radius: 0;
    color: white;
    border: none;
    padding: 10px;
    /* border-radius: 5px; */
    cursor: pointer;
}

.filter-form-sm .section .section-heading{
    font-size: 2.2rem;
}




.filter-form-sm .section-lists-container{
	width: 100%;
	/* height: 100%; */
	
}


.filter-form-sm .section-list {
	padding: 5px 10px 10px;
    /* max-height: 500px;  */
    overflow: hidden; /* Hide overflow */
    transition: max-height 0.3s ease , padding 0.3s ease; /* Transition effect */
    /* border-bottom: 1px solid var(--secondary-color); */
    /* display: flex; */
	/* display: inline-block; */
    flex-direction: column;
    align-items: start;
    row-gap: 10px;
	height: 100%;
	/* border: 1px solid black; */
	background-color: var(--primary-color);
    /* background-color: var(--accent-color); */
	/* width: 100%; */
	overflow-y: scroll;
}

.filter-form-sm .section-list::-webkit-scrollbar{
	display: none;
}



.filter-form-sm .section-list.active {
    max-height: 0px;
	padding: 0 10px;
}

.filter-form-sm .section-list li{
	/* width: 600px; */
    display: flex;
	justify-content: space-between;
	margin-top: 20px;
    align-items: center;
}

.filter-form-sm .section-list li label{
    /* display: flex;
    align-items: center;
    column-gap: ; */
    /* border: 1px solid green; */
    font-size: 1.6rem;
    font-family: light, sans-serif;
    font-weight: 600;
    /* margin-left: 5px; */
    display: flex;
    align-items: center;
    column-gap: 5px;
    text-wrap: wrap;
    margin-left: 8px;
	color: var(--secondary-color);
}

.filter-form-sm .section-list li input{
    width: 25px;
    height: 25px;
	box-shadow: 0 0 5px 0px rgba(0,0,0,0.3);
	outline: none;
	border: transparent;
}



/* .hidden {
    display: none !important;
} */

.filter-form-sm .filter-options-colors span{
	display: inline-block;
	/* height: 18px !important;
	width: 18px !important; */
    border-radius: 5px !important;
    box-shadow: 0 0 5px 0px rgba(0,0,0,0.3);
	/* border: 1px solid black; */
	background-color: var(--primary-color);
}

.filter-form-sm .show-all-button , .filter-form-sm .hide-button{
    /* padding: 5px; */
    font-size: 1.4rem;
    font-family: light, sans-serif;
    font-weight: 600;
    border: none;
    text-decoration: underline;
    background-color: transparent;
	margin-top: 15px;
}

.filter-form-sm input , .filter-form-sm label{
    cursor: pointer;
}

.filter-form-sm .buttons{
    display: flex;
    justify-content: space-between;
    gap: 50px;
	/* border: 2px solid green; */
	height: 15%;
    /* box-shadow: 0 2px 10px 0 rgba(0,0,0,0.9); */
    /* border: 5px solid red; */
    /* z-index: 99999; */
    /* margin-top: 5px; */
    /* padding: 10px; */
    /* margin-bottom: 10px; */
}

.filter-form-sm .clear-btn , .filter-form-sm .submit-btn{
    /* padding: 10px; */
    /* height: 100%; */
    font-size: 1.4rem;
    font-family: light, sans-serif;
    font-weight: 600;
    border: none;
    /* background-color: var(--accent-color); */
    color: var(--secondary-color);
    border-radius: 7px;
    /* margin-top: 15px; */
	width: 50%;
	/* height: 50px; */
	/* padding: 0 10px; */
    border: 2px;
    font-size: 1.8rem;
}

.filter-form-sm .clear-btn{
    border: 3px solid var(--secondary-color);
    
}

.filter-form-sm .clear-btn:hover{
    border: 3px solid var(--accent-color);
    color: var(--accent-color);
}

.filter-form-sm .submit-btn{
    border: 3px solid var(--accent-color);
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.filter-form-sm .submit-btn:hover{
    background-color: var(--secondary-color);
    color: var(--accent-color);
    /* border: 3px solid var(--secondary-color); */
}

:not(.filter-form-sm .toggle-filters.active) .section-heading{
    /* border-radius: 10px; */
    /* font-size: ; */
    font-size: 2rem;
}

.filter-form-sm .toggle-filters.active {
    background-color: var(--primary-color); 
    color: var(--secondary-color);
    border-left: 7px solid var(--accent-color);
}



/* #################### filters-container-sm-ends-here ###################### */





.sort-container-sm{
    /* border: 2px solid black; */
    max-width: 1920px;
    margin: 0 auto;
    background-color: var(--primary-color);
    position: fixed;
    bottom: -700px;
    padding: 10px 40px;
    /* bottom: 0; */
    left: 0;
    right: 0;
    border-radius: 15px 15px 0 0;
    box-shadow: 0 -5px 10px 0 rgba(0,0,0,0.3);
    max-height: 700px; 
    opacity: 0;
    transition: all 0.5s; 
    z-index: 100; 
    
}

.sort-header{
    border-bottom: 1px solid var(--secondary-color);
}

.sort-heading-sm{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.sort-heading-sm h3{
    font-size: 3rem;
}

.sort-heading-sm .sort-sm-close-btn{
    font-size: 3rem;
    cursor: pointer;
}


.sort-container-sm .sort-options-sm{
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.sort-container-sm .sort-options-sm label{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    font-size: 1.8rem;
    font-family: light , sans-serif;
    cursor: pointer;
}

.sort-container-sm .sort-options-sm label input{
    transform: scale(1.2);
    margin-right: 5px;
    cursor: pointer;
}

.sort-container-sm .sort-options-sm label input:checked + span {
    font-family: medium, sans-serif;
}
