.shop-hero {
  width: 100%;
  height: 500px;
  background-image: url('../../assets/images/shop-hero.png');
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}


.shop-hero-content {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 100px;
}

.hero-text-section {
  width: 50%;
  padding-left: 15;
}

.hero-text-section-title {
  font-family: var(--proximaSemibold);
  color: var(--yellowColor);
  font-size: 100px;
}

.hero-text-section-subtitle {
  font-family: var(--mtnRegular);
  color: var(--whiteColor);
  font-size: 30px;
}

.hero-image-secion {
  width: 500px;
  height: 100%;
}

.hero-image-secion img {
  width: 100%;
  height: 100%;
}

.shop-main-content {
  background-color: #F1F1F1;
  padding: 20px 30px;
  border-radius: 40px;
  margin: 70px 40px;
}

.content-main-title {
  font-family: var(--mtnBold);
  font-size: 40px;
  color: var(--blueColor);
}

.top-shop-item {
  padding: 30px;
  overflow: hidden;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

.yellow-gradient-color {
  background: linear-gradient(270deg, #FFCB05 0%, #CFA400 100%);
}

.blue-gradient-color {
  background: linear-gradient(270deg, #41B2F2 0%, #128EDF 100%);

}

.top-shop-item p:first-child {
  font-family: var(--mtnBold);
  color: var(--whiteColor);
  font-size: 40px;
}

.top-shop-item p:nth-child(2) {
  font-size: 25px;
  font-family: var(--mtnRegular);
  color: var(--whiteColor);
}

.top-shop-item-image {
  width: 250px;
  height: 200px;
  margin-top: 10px;
  margin-left: 80px;
}

.top-shop-item-image img {
  width: 100%;
  height: 100%;
}

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

.categories {
  padding: 70px 40px;
}

.categories-title {
  font-family: var(--proximaSemibold);
  color: var(--textColor);
  font-size: 40px;
}

.categories-list {
  padding: 0 50px;
  display: flex;
  justify-content: space-between;
  height: 220px;
  margin: 40px 0;
}

.categoriesSwiper {
  width: 100%;
  height: 100%;
}

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

.category-pagination {
  color: #000000;
}

.category {
  padding: 30px 0px;
  background-color: var(--yellowColor);
  width: fit-content;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.category p {
  margin-top: 30px;
  font-family: var(--mtnRegular);
  color: var(--blueColor);
  font-size: 20px;
}

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

.shop-content {
  width: 100%;
  padding: 0 40px;
  display: flex;
  gap: 10px;
}

.search-vendor {
  width: 30%;
  height: fit-content;
  background-color: #F7F7F7;
  border: 1px solid var(--grayColor);
  border-radius: 20px;
  padding: 50px 20px;
}

.shop-content-items {
  /* padding: 0 20px; */
  height: 1270px;
  overflow-y: scroll;
}

.shop-content-items::-webkit-scrollbar {
  width: 5px;
  margin-left: 50px;
}

.shop-content-items::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 50px;
}

.shop-content-items::-webkit-scrollbar-thumb {
  background-color: #EAEBEC;
  border-radius: 50px;
}

.shop-item-wrapper {
  display: grid;
  justify-content: space-evenly;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}

.searched-vendors {
  padding: 30px 0;
}

.searched-vendors div:last-child {
  border-bottom: none;
}

.seach-vendor-title {
  font-size: 30px;
  color: var(--textColor);
  font-family: var(--proximaBold);
}

.search-vender-search {
  width: 100% !important;
  margin: 20px 0;
}

.searched-vendor {
  display: flex;
  border-bottom: 1px solid var(--grayColor);
  padding: 10px 0;
  gap: 10px;
  align-items: center;
}

.searched-vendor input {
  width: 18px;
  height: 18px;
  background-color: transparent;
}

.searched-vendor-pic {
  width: 60px;
  height: 60px;
  border-radius: 50px;
  border: 2px solid var(--whiteColor);
  filter: drop-shadow(0px 64px 26px rgba(0, 0, 0, 0.01)) drop-shadow(0px 36px 22px rgba(0, 0, 0, 0.05)) drop-shadow(0px 16px 16px rgba(0, 0, 0, 0.09)) drop-shadow(0px 4px 9px rgba(0, 0, 0, 0.1));
}

.searched-vendor-pic img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.searched-vendor-name {
  font-family: var(--mtnRegular);
  color: var(--textColor);
  font-size: 18px;
}

.searched-vendor-service {
  font-family: var(--mtnRegular);
  color: var(--blueColor);
  font-size: 14px;
  margin: 5px 0;
}

.searched-vendor-rating {
  display: flex;
  align-items: center;
  gap: 5px;
}

.searched-vendor-rating p {
  font-family: var(--mtnRegular);
  color: var(--textColor);
}

.more-vendors {
  text-align: center;
  padding: 100px 0;
}

.more-vendors a {
  font-family: var(--mtnRegular);
  color: var(--blueColor);
  font-size: 18px;
}

.shop-profile-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 150px 0 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);
}

.shop-down-carousel {
  width: 95%;
  height: 600px;
  margin: 0 auto;
  border-radius: 45px;
}

.flashSaleSwiper {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  position: relative;
}

.flash-image {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  position: absolute;
  left: 0;
  z-index: 1;
}

.action-counter {
  display: flex;
  align-items: end;
  justify-content: end;
  padding: 100px 40px;
  gap: 50px;
  height: 100%;
  position: absolute;
  z-index: 2;
  right: 0;
}

.call-to-action-btn {
  background-color: var(--yellowColor);
  padding: 10px 50px;
  border-radius: 8px;
}

.call-to-action-btn p {
  font-family: var(--mtnBold);
  color: #000;
}

.counter {
  background-color: #40404050;
  padding: 20px;
  border-radius: 20px;
  text-align: start;
}

.counter p {
  font-family: var(--mtnRegular);
}

.counter-title {
  color: var(--whiteColor);
  font-family: var(--mtnRegular);
  font-size: 18px;
}

.counter-time {
  display: flex;
  align-items: center;
  gap: 15px;
}

.counter-time .colon {
  color: var(--whiteColor);
  font-size: 35px;
  font-family: var(--mtnBold);
}

.counter-time div p:first-child {
  color: var(--whiteColor);
  font-size: 60px;
  font-family: var(--mtnBold);
}

.counter-time div p:last-child {
  color: var(--whiteColor);
  font-size: 15px;
}

.flash-btn {
  display: flex;
  border: 1px solid var(--blueColor);
  width: fit-content;
  align-items: center;
  padding: 15px 40px;
  gap: 10px;
  border-radius: 10px;
  margin: 60px auto;
}

.flash-btn p {
  font-family: var(--mtnRegular);
  color: var(--blueColor);
  font-size: 16px;
}

.flash-btn:hover {
  cursor: pointer;
}

.flash-sale-carousel {
  width: 100%;
  height: 450px;
  border-radius: 0 !important;
}

.flash-action-counter {
  width: 100%;
  justify-content: space-between;
  padding: 100px;
}

.carousel-spacer {
  margin: 60px 0;
}

.deals-header {
  width: 80%;
  margin: 0px auto;
  background-color: var(--yellowColor);
  padding: 12px 0;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.deals-header p {
  text-align: center;
  font-family: var(--proximaSemibold);
  font-size: 28px;
  color: var(--textColor);
}

.deals-carousel {
  background-color: var(--textColor);
  width: 80%;
  height: 400px;
  margin: 0px auto;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.deals {
  width: 90%;
  height: 100%;
  margin: 0 auto;
}

.dealsSwiper {
  height: 100%;
}

.dealsSwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-image {
  width: 100%;
  height: 80%;
  border-radius: 25px;
  border: 5px solid var(--whiteColor);
  box-shadow: 23px 191px 77px rgba(134, 131, 131, 0.01), 13px 107px 65px rgba(134, 131, 131, 0.05), 6px 48px 48px rgba(134, 131, 131, 0.09), 1px 12px 26px rgba(134, 131, 131, 0.1);
}

.promo-image img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

/* checkout page styles */

.checkout-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  gap: 40px;
}

.checkout-form {
  width: 50%;
  height: 100%;
  padding: 60px 40px 40px 40px;
}

.checkout-title {
  font-size: 30px;
  color: var(--textColor);
  font-family: var(--proximaSemibold);
}


.shipping-info {
  font-family: var(--proximaRegular);
  color: var(--textColor);
  font-size: 18px;
  padding: 20px 0;
}

.form-input .country-select {
  width: 100%;
  height: 100%;
  font-family: var(--mtnRegular);
}

.checkout-region-city {
  display: flex;
  gap: 25px;
}

.checkout-region-city .form-field {
  width: 100%;
}

.terms-condition {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}

.terms-condition p {
  font-family: var(--proximaRegular);
  font-size: 18px;
  color: var(--textColor);
}

.terms-condition p a {
  font-family: var(--proximaSemibold);
  text-decoration: underline;
  color: var(--textColor);
}

.checkout-products {
  background-color: #EFF8FF;
  width: 50%;
  padding: 60px 40px 40px 20px;
}

.cart-items {
  padding: 10px 0;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.cart-item-border {
  border-bottom: 1px solid var(--grayColor);
}

.cart-item-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-item-image {
  width: 160px;
  height: 120px;
  border-radius: 20px;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.cart-item-name {
  font-family: var(--mtnRegular);
  color: var(--textColor);
  font-size: 18px;
}

.cart-quantity-adjuster div {
  padding: 5px 7px !important;
  margin: 12px 0;
}

.cart-item-price {
  color: var(--textColor);
  font-family: var(--mtnBold);
  font-size: 20px;
}

.cart-item svg:hover {
  cursor: pointer;
}

.discount-input-field {
  width: 100%;
  height: 50px;
  display: flex;
  border-radius: 10px;
  margin: 30px 0;
}

.discount-input {
  width: 100%;
  height: 100%;
  border: none;
  border-top-left-radius: inherit;
  border-bottom-left-radius: inherit;
  font-size: 18px;
  padding: 0 20px;
  font-family: var(--mtnRegular);
  color: var(--textColor);
}

.discount-input::placeholder {
  color: var(--grayColor);
}

.discount-input:focus {
  outline: none;
}

.discount-btn {
  background-color: var(--yellowColor);
  border: none;
  padding: 0 55px;
  border-top-right-radius: inherit;
  border-bottom-right-radius: inherit;
  font-family: var(--mtnRegular);
  font-size: 18px;
  color: #000000;
}

.discount-btn:hover {
  cursor: pointer;
}

.billing-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.billing-sapcer {
  margin-top: 50px;
}

.bill-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mtnRegular);
}

.bill-info p:first-child {
  color: #40404060;
}

.bill-info p:last-child {
  color: var(--textColor);
}

.bill-info .total-text {
  font-family: var(--mtnBold);
}

.bill-info .total-amount {
  font-family: var(--mtnBold);
  color: var(--textColor);
}

.profile-update-btn {
  width: 100%;
  height: 62px;
  border-radius: 10px;
  background-color: var(--blueColor);
  border: none;
  color: var(--whiteColor);
  font-size: 20px;
  font-family: var(--mtnRegular);
  margin-top: 60px;
}

.profile-update-btn:hover {
  cursor: pointer;
}

.billing-addres {
  background-color: #EFF8FF;
  padding: 15px 20px;
  border-radius: 20px;
  margin: 40px 0;
}

.billing-address-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--grayColor);
}

.address-edit-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: var(--whiteColor);
  border-radius: 8px;
  padding: 5px 15px;
}

.address-heading {
  font-family: var(--mtnRegular);
  color: var(--textColor);
  font-size: 20px;
}

.address-edit-btn:hover {
  cursor: pointer;
}

.address-edit-btn p {
  font-family: var(--mtnRegular);
  color: var(--blueColor);
  font-size: 18px;
}

.billing-address-content {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.billing-address-content p {
  font-family: var(--mtnRegular);
  color: var(--grayColor);
  font-size: 18px;
}

.payment-method {
  display: flex;
  gap: 25px;
  padding: 20px 0;
}

.cash-payment {
  background-color: var(--yellowColor);
  border-radius: 10px;
  padding: 12px 35px;
}

.cash-payment p {
  font-family: var(--mtnRegular);
  color: var(--textColor);
  font-size: 20px;
}

.momo-payment {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--grayColor);
  border-radius: 10px;
  padding: 5px 8px;
}

.momo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background-color: var(--yellowColor);
  display: flex;
  align-items: center;
  justify-content: center;
}

.momo-icon img {
  width: 80%;
  height: 70%;
}

.momo-payment p {
  font-family: var(--mtnRegular);
  color: #000000;
  font-size: 15px;
}

.cash-payment,
.momo-payment {
  cursor: pointer;
}

.number-modal {
  display: none;
  width: 50%;
  background-color: var(--whiteColor);
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(calc(50vw - 50%));
  z-index: 1001;
  padding: 10px 40px;
  margin: 0 atuo;
}

.modal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-top p {
  font-family: var(--mtnRegular);
  font-size: 18px;
}

.modal-top svg:hover {
  cursor: pointer;
}

.transaction-btn {
  background-color: var(--yellowColor) !important;
  font-family: var(--mtnRegular) !important;
  color: var(--blueColor) !important;
  margin-bottom: 20px;
}

.delivery-location {
  border-radius: 15px;
  margin-bottom: 20px;
}

.delivery-location-header {
  background-color: var(--blueColor);
  padding: 15px 20px;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.delivery-location-header p:first-child {
  font-size: 20px;
  color: var(--whiteColor);
  font-family: var(--proximaSemibold);
}

.delivery-location-header p:last-child {
  font-size: 14px;
  color: var(--whiteColor);
  font-family: var(--mtnRegular);
  margin-top: 2px;
}

.delivery-location-body {
  background-color: #F3F3F350;
  padding: 20px;
  border: 1px solid var(--grayColor);
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
}

.location-option {
  display: flex;
  gap: 15px;
  align-items: center;
  border: 1px solid var(--grayColor);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
}

.location-option:hover {
  cursor: pointer;
}

.location-option-icon {
  background-color: var(--textColor);
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-option-icon svg {
  color: var(--whiteColor);
}

.location-option-text p:first-child {
  font-size: 18px;
  color: var(--textColor);
  font-family: var(--mtnRegular);
}

.location-option-text p:last-child {
  font-size: 14px;
  color: var(--grayColor);
  font-family: var(--mtnRegular);
}

.active-location-option {
  border-color: var(--blueColor);
  background-color: #8BB5FF15;
}

.active-location-option .location-option-icon {
  background-color: var(--yellowColor);
}

.active-location-option .location-option-icon svg {
  color: var(--blueColor);
}

.search-location-option {
  display: none;
}

.option-searchbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 2px;
  border-bottom: 1px solid var(--grayColor);
}

.option-searchbar input {
  flex-grow: 1;
  font-family: var(--mtnRegular);
  border: none;
  background-color: transparent;
  height: 30px;
  width: 100%;
}

.option-searchbar input:focus {
  outline: none;
}

.location-search-results {
  padding: 10px;
  margin-left: 20px;
}

.location-search-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.location-search-result p {
  font-size: 15px;
  font-family: var(--mtnRegular);
  color: #40404060;
}

.location-search-result p:hover,
.location-search-result svg:hover {
  cursor: pointer;
}

.map-wrapper {
  margin: 40px;
}

.back-btn {
  display: flex;
  align-items: center;
  gap: 5px;
}

.back-btn:hover {
  cursor: pointer;
}

.back-btn p {
  font-family: var(--mtnRegular);
  color: var(--blueColor);
  font-size: 18px;
}

.location-map {
  width: 100%;
  height: 100vh;
  max-height: 700px;
  border-radius: 20px;
  background-color: rgb(160, 255, 246);
  margin: 20px 0;
}

.map-search {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding-top: 40px;
}

.map-search-bar {
  width: 60%;
  background-color: var(--whiteColor);
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
  padding: 0 10px
}

.map-search-bar input {
  width: 100%;
  height: 50px;
  flex-grow: 1;
  font-family: var(--mtnRegular);
  border: none;
}

.map-search-bar input:focus {
  outline: none;
}

.map-search-btn {
  background-color: var(--yellowColor);
  padding: 12px 8px;
  width: fit-content;
  border-radius: 10px;
}

.map-search-btn p {
  font-family: var(--mtnRegular);
  font-size: 18px;
  color: var(--textColor);
}

.map-search-btn:hover {
  cursor: pointer;
}

@media (max-width: 950px) {
  .checkout-wrapper {
    display: flex;
    flex-direction: column;
  }

  .hero-image-secion {
    display: none;
  }

  .shop-hero {
    background-image: url('../../assets/images/Hero-shadow.png');
  }

  .hero-text-section {
    width: 100%;
    text-align: center;
  }

  .shop-hero-content {
    padding: 0 20px;
  }

  .checkout-form {
    width: 100%;
  }

  .checkout-products {
    width: 100%;
  }

  .checkout-payment-wrapper {
    flex-direction: column-reverse;
  }

  .payment-make-payment {
    padding: 0px 20px 40px 20px;
  }

  .checkout-title {
    display: none;
  }

  .searched-vendors {
    display: flex;
    overflow-x: scroll;
  }

  .flash-action-counter {
    flex-direction: column-reverse;
    align-items: center;
  }

  .counter-time div p:first-child,
  .counter-time .colon {
    font-size: 40px;
  }

  .call-to-action-btn {
    padding: 10px 10px;
  }

  .more-vendors {
    display: none;
  }

  .shop-content {
    flex-direction: column;
    padding: 0;
  }

  .search-vendor {
    width: 100%;
    border-radius: 0;
    padding: 10px 20px;
  }

  .shop-content-items {
    width: 100%;
  }

  .searched-vendor {
    border: none;
    margin-right: 8px;
    border-right: 1px solid var(--grayColor);
  }

  .shop-down-carousel {
    width: 100%;
    height: 350px;
    border-radius: 0px;
  }

  .action-counter {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 800px) {
  .shop-item-wrapper {
    grid-template-columns: auto auto;
  }

  .top-shop-main-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .top-shop-item {
    padding: 6px;
    border-radius: 15px;
  }

  .top-shop-item p:first-child {
    font-size: 24px;
    text-align: center;
  }

  .top-shop-item p:nth-child(2) {
    display: none;
  }

  .top-shop-item-image {
    margin-left: 40px;
    margin-top: 30px;
    width: 150px;
    height: 100px;
  }
}


@media (max-width: 650px) {
  .number-modal {
    width: 100%;
  }

  .payment-success-modal {
    width: 100%;
  }

  .hero-text-section-title {
    font-size: 50px;
    margin-bottom: 20px;
  }

  .shop-item-wrapper {
    grid-template-columns: auto;
  }
}

@media (max-width: 400px) {
  .cart-item-image {
    width: 120px;
    height: 80px;
    border-radius: 20px;
  }
}

@media (max-width: 550px) {
    .shop-main-content {
        margin: 40px 10px;
        padding: 20px 10px;
    }
}
