@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style-type: none;
  text-decoration: none;
}

:root {
  --primary: #ec994b;
  --white: #ffffff;
  --bg: #f5f5f5;
}

html {
  font-size: 62.5%;
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth;
}

@media (min-width: 1440px) {
  html {
    zoom: 1.5;
  }
}

@media (min-width: 2560px) {
  html {
    zoom: 1.7;
  }
}

@media (min-width: 3860px) {
  html {
    zoom: 2.5;
  }
}

::-webkit-scrollbar {
  width: 1.3rem;
}

::-webkit-scrollbar-thumb {
  border-radius: 1rem;
  background: #797979;
  transition: all 0.5s ease-in-out;
}

::-webkit-scrollbar-thumb:hover {
  background: #222224;
}

::-webkit-scrollbar-track {
  background: #f9f9f9;
}

.container{
    max-width: 124rem;
    padding: 0 1rem;
    margin: 0 auto;
}
.text-center{
    text-align: center;
}

.section-heading{
    font-size: 3rem;
    color: var(--primary);
    padding: 2rem 0;
}

#trending{
    padding: 4rem 0;

}
@media (max-width:1440px) {
    #trending{
        padding: 7rem 0;

    }
}

.trending-slider{
    height: 52rem;
    padding: 2rem 0;
    position: relative;

}

@media (max-width:1440px) {
    .trending-slider{
        height: 45rem;
    }
}

.trending-slide{
    width: 37rem;
    height: 42rem;
    position: relative;
}

@media (max-width:500px) {
    .trending-slide{
        width: 28rem !important;
        height: 36rem !important;

    }
    .trending-slide-img img{
        width: 28rem !important;
        height: 36rem !important;
        
    }
}
.trending-slide-img{
    position: relative;
}
.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    border-radius: 2rem;
    background: linear-gradient(to top, rgb(12, 12, 12), rgba(255, 255, 255, 0));
}
.trending-slide-img img{
    width: 37rem ;
    height: 42rem ;
    border-radius: 2rem;
    object-fit: cover;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 70%);
}
.trending-slide-content{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.shoe-price{
    position: absolute;
    top: 2rem;
    right: 2rem;
    color:var(--white);
}
.trending-slide-content-bottom {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: var(--white);
}

.shoe-rating {
    padding-top: 1rem;
    display: flex;
    gap: 1rem;
}
.shoe-rating ion-icon {
    color: var(--primary);
}
.swiper-slide-shadow-left,
.swiper-slide-shadow-right {
  display: none;
}
.trending-slider-control {
    position: relative;
    bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.swiper-button-next {
    left: 58% !important;
    transform: translateX(-58%) !important;
}
@media (max-width:990px) {
    .swiper-button-next {
      left: 70% !important;
      transform: translateX(-70%) !important;
    }
  }
  
  @media (max-width:450px) {
    .swiper-button-next {
      left: 80% !important;
      transform: translateX(-80%) !important;
    }
  }
  
  @media (max-width:990px) {
    .swiper-button-prev {
      left: 30% !important;
      transform: translateX(-30%) !important;
    }
  }
  
  @media (max-width:450px) {
    .swiper-button-prev {
      left: 20% !important;
      transform: translateX(-20%) !important;
    }
  }
  
    .slider-arrow {
    
    background: var(--white);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    left: 42%;
    transform: translateX(-42%);
    filter: drop-shadow(0px 8px 24px rgba(18, 28, 53, 0.1));
  }
  
  .slider-arrow ion-icon {
    font-size: 2rem;
    color: #222224;
  }
  
  .slider-arrow::after {
    content: '';
  }
  
  .swiper-pagination {
    position: relative;
    width: 15rem;
    bottom: 1rem;
  }
  
  .swiper-pagination .swiper-pagination-bullet {
    filter: drop-shadow(0px 8px 24px rgba(18, 28, 53, 0.1));
  }
  
  .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
  }