.vendor-hero {
  width: 100%;
  height: 100vh;
  max-height: 600px;
  background-image: url('../../assets/images/Hero-shadow.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.vendor-hero-text {
  font-family: var(--proximaSemibold);
  color: var(--whiteColor);
  font-size: 60px;
  text-align: center;
  margin: 0 250px;
  padding-top: 80px;
}

.vendor-hero-text span {
  color: var(--yellowColor);
}

.vendor-hero-images {
  display: flex;
  align-items: end;
  gap: 30px;
  width: 100%;
  justify-content: center;
  z-index: 1;
  position: absolute;
  bottom: 0;
}

.vendor-image1,
.vendor-image3 {
  height: 200px;
  width: 320px;
  filter: drop-shadow(0px 176px 70px rgba(0, 0, 0, 0.01)) drop-shadow(0px 99px 59px rgba(0, 0, 0, 0.05)) drop-shadow(0px 44px 44px rgba(0, 0, 0, 0.09)) drop-shadow(0px 11px 24px rgba(0, 0, 0, 0.1));
}

.vendor-image2 {
  height: 300px;
  width: 300px;
  filter: drop-shadow(0px 176px 70px rgba(0, 0, 0, 0.01)) drop-shadow(0px 99px 59px rgba(0, 0, 0, 0.05)) drop-shadow(0px 44px 44px rgba(0, 0, 0, 0.09)) drop-shadow(0px 11px 24px rgba(0, 0, 0, 0.1));
}

.vendor-image1 img,
.vendor-image2 img,
.vendor-image3 img {
  width: 100%;
  height: 100%;
}

.top-rated-title {
  padding: 100px 200px;
}

.top-rated-title p {
  font-size: 80px;
  text-align: center;
  color: var(--textColor);
  font-family: var(--proximaSemibold);
}


/* swiper section */
.shops-carousel {
  width: 100%;
  height: 380px;
}

.swiper {
  width: 80%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-slide-item {
  width: 100%;
  height: 90%;
  border-radius: 30px;
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
}

.shop-slide-item img {
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: inherit;
  z-index: 1;
}

.slider-layout {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(64, 64, 64, 0) 0%, #404040 100%);
  position: absolute;
  z-index: 2;
}

.shop-slide-item p {
  position: absolute;
  z-index: 3;
  margin: 0 25px 20px 25px;
  font-size: 25px;
  font-family: var(--mtnRegular);
  color: var(--whiteColor);
}

.shop-filter-opt {
  padding: 140px 40px 0px 40px;
}

.shop-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  justify-content: center;
  padding: 40px;
  gap: 20px;
}

.shop-item {
  height: 500px;
  border-radius: 20px;
  box-shadow: 9px 130px 52px rgba(175, 179, 182, 0.01), 5px 73px 44px rgba(175, 179, 182, 0.05), 2px 33px 33px rgba(175, 179, 182, 0.09), 1px 8px 18px rgba(175, 179, 182, 0.1), 0px 0px 0px rgba(175, 179, 182, 0.1);
  background-color: var(--whiteColor);
  padding: 20px 0;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.shop-profile-pic {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto;
}

.shop-profile-pic img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.shop-profile-name {
  font-family: var(--proximaSemibold);
  font-size: 25px;
  color: var(--textColor);
  text-align: center;
  padding: 10px 0;
}

.shop-profile-description {
  text-align: center;
  font-family: var(--mtnRegular);
  color: var(--textColor);
  padding: 5px 60px;
}

.shop-profile-ratings {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  gap: 6px;
}

.shop-profile-ratings p {
  font-family: var(--mtnRegular);
  color: var(--textColor);
  font-size: 18px;
}

.shop-profile-ratings span {
  margin-left: 4px;
  color: var(--grayColor);
}

.num-products {
  margin-top: 10px;
  margin-bottom: 25px;
  text-align: center;
  color: var(--blueColor);
  font-family: var(--mtnRegular);
}

.shop-view-details-btn {
  background-color: var(--blueColor);
  padding: 10px 30px;
  width: fit-content;
  border-radius: 10px;
}

.shop-view-details-btn p {
  color: var(--whiteColor);
  font-family: var(--mtnRegular);
  font-size: 18px;
}

.shop-profile-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
}

.shop-profile-pagination div {
  border: 1px solid var(--grayColor);
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-profile-pagination div:hover {
  cursor: pointer;
}

.shop-profile-pagination div p {
  font-size: 19px;
  font-family: var(--proximaRegular);
  color: var(--grayColor);
}

.shop-profile-pagination .active-pagination {
  background-color: var(--blueColor);
  border-color: var(--blueColor);
}

.shop-profile-pagination .active-pagination p {
  color: var(--whiteColor);
}

@media (max-width: 750px) {
  .top-rated-title {
    padding: 100px 50px;
  }

  .vendor-hero-text {
    margin: 0 50px;
  }

  .shop-filter-opt {
    padding: 40px 40px 0px 40px;
  }

  .shop-list {
    padding: 40px 20px;
  }
}

@media (max-width: 550px) {
  .top-rated-title p {
    font-size: 40px;
  }

  .top-rated-title {
    padding: 50px 20px;
  }

  .vendor-hero-text {
    margin: 0 20px;
    font-size: 40px;
  }

  .shop-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .shop-list .shop-item {
    width: 100%;
  }

  .vendor-image1,
  .vendor-image3 {
    height: 100px;
  }

  .vendor-image2 {
    height: 200px;
  }
}
