/* *********Font face declaration ***********/
@font-face {
  font-family: 'MTN Brighter Sans Regular';
  src: url('../../assets/fonts/MTN/MTN\ Brighter\ Sans\ Regular.ttf') format('truetype');
  font-weight: 100 1000;
  font-stretch: 25% 151%;
}

@font-face {
  font-family: 'MTN Brighter Sans Bold';
  src: url('../../assets/fonts/MTN/MTN\ Brighter\ Sans\ Bold.ttf') format('truetype');
  font-weight: 100 1000;
  font-stretch: 25% 151%;
}

@font-face {
  font-family: 'Proxima Nova Bold';
  src: url('../../assets/fonts/Promixa-nova/Proxima\ Nova\ Bold.otf') format('truetype');
  font-weight: 100 1000;
  font-stretch: 25% 151%;
}

@font-face {
  font-family: 'Proxima Nova Semibold';
  src: url('../../assets/fonts/Promixa-nova/Proxima\ Nova\ Semibold.otf') format('truetype');
  font-weight: 100 1000;
  font-stretch: 25% 151%;
}

@font-face {
  font-family: 'Proxima Nova Regular';
  src: url('../../assets/fonts/Promixa-nova/ProximaNova-Regular.otf') format('truetype');
  font-weight: 100 1000;
  font-stretch: 25% 151%;
}

/* ******* Root style declartion ************* */
:root {
  --blueColor: #0468B1;
  --yellowColor: #FFCC00;
  --grayColor: #BCBCBC;
  --redColor: #FF0000;
  --whiteColor: #FFFFFF;
  --transparentWhiteColor: #FFFFFF06;
  --blueLinearGradientColor: linear-gradient(to right, #0468B1 0%, #05CDFF 100%);
  --textColor: #404040;
  --mtnRegular: 'MTN Brighter Sans Regular';
  --mtnBold: 'MTN Brighter Sans Bold';
  --proximaRegular: 'Proxima Nova Regular';
  --proximaSemibold: 'Proxima Nova Semibold';
  --proximaBold: 'Proxima Nova Bold';
}


/* ********** General styles declaration ******** */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

/* Navigation bar */
.navbar {
  background: transparent;
  position: sticky;
  top: 0;
  box-shadow: 19px 15px 46px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.blur-background {
  display: flex;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.logo img {
  width: 180px;
}

.nav-links ul {
  display: flex;
  list-style-type: none;
  gap: 20px;
}

.nav-links ul li a {
  text-decoration: none;
  color: var(--textColor);
  font-family: var(--mtnRegular);
  font-size: 18px;
}

.nav-links ul li .active,
.mobile-sidebar ul li .active {
  font-family: var(--mtnBold);
  color: var(--blueColor);
}

.language-login {
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.language {
  border-color: var(--blueColor);
  padding: 10px 40px 10px 8px;
  -webkit-appearance: none;
  appearance: none;
  background-image: url('../../assets/icons/arrow-down.svg');
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: calc(100% - 8px) center;
  color: var(--blueColor);
  font-size: 18px;
  font-family: var(--mtnRegular);
  background-color: transparent;
  border-radius: 8px;
}

.language:focus {
  outline: none;
}

.language option {
  color: var(--blueColor);
  font-size: 18px;
}

.language-login a {
  text-decoration: none;
}

.nav-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--blueColor);
  border-radius: 8px;
  padding: 10px 20px;
}

.nav-login-btn p {
  font-size: 20px;
  font-family: var(--mtnRegular);
  color: var(--yellowColor);
}

.toggle-icon {
  display: none;
}

.mobile-sidebar {
  padding: 1.5rem 2rem 1rem 2rem;
  position: fixed;
  top: 0px;
  left: -100vw;
  width: 100vw;
  height: 100vh;
  background: var(--whiteColor);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: left 0.3s ease-in-out;
  z-index: 999;
}

.mobile-sidebar ul {
  margin-top: 120px;
  list-style-type: none;
}

.mobile-sidebar ul li {
  margin-bottom: 30px;
}

.mobile-sidebar ul li a {
  font-size: 20px;
  color: var(--textColor);
  font-family: var(--mtnRegular);
}

.language-login-mobile {
  display: flex;
  flex-direction: column;
  width: fit-content;
  gap: 40px;
}
/* End of navigation bar */

/* Hero section */
.hero-wrapper {
  width: 100%;
  background-image: url('../../assets/images/Hero.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 70px 120px;
}

.hero-title {
  font-size: 100px;
  font-family: var(--proximaSemibold);
  text-align: center;
  color: var(--whiteColor);
}

.hero-title .you {
  background-color: var(--whiteColor);
  padding: 30px 10px;
  border-radius: 50%;
  color: var(--blueColor);
}

.hero-title .best-deal {
  color: var(--yellowColor);
}

.hero-subtitle {
  font-family: var(--mtnRegular);
  text-align: center;
  color: var(--whiteColor);
  margin: 20px 280px;
}

.users-reviews {
  position: relative;
  width: 34%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.users-images {
  position: relative;
}

.user-image {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid var(--whiteColor);
}

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

.users-images .first {
  left: 0px;
}

.users-images .second {
  left: 40px;
}

.users-images .third {
  left: 80px;
}

.users-images .fouth {
  left: 120px;
}

.users-images .fith {
  left: 160px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--yellowColor);
  font-family: var(--mtnRegular);
  color: var(--blueColor);
}

.reviews {
  position: relative;
  text-align: end;
  font-family: var(--mtnRegular);
  font-size: 18px;
  color: var(--whiteColor);
}

.hero-btns {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  gap: 40px;
}

.hero-btn {
  display: flex;
  align-items: center;
  font-family: var(--proximaSemibold);
  font-size: 18px;
  gap: 20px;
  padding: 15px 20px;
  border: 1px solid var(--whiteColor);
  width: fit-content;
  color: var(--whiteColor);
}

.start-shopping-btn {
  background-color: var(--whiteColor);
  color: var(--blueColor);
}
/* End of hero section */

/* How it works section */
.how-it-works {
  width: 100%;
  background-image: url('../../assets/images/section.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 70px 40px;
}

.how-it-works .title {
  font-size: 80px;
  font-family: var(--proximaSemibold);
  color: var(--textColor);
}

.how-it-works .title span {
  background-color: var(--textColor);
  color: var(--whiteColor);
  padding: 10px 10px 10px 0;
  border-radius: 50%;
}

.how-it-works .subtitle {
  color: var(--textColor);
  font-family: var(--mtnRegular);
  font-size: 24px;
  margin-top: 30px;
}

.cards {
  height: 250px;
  margin-top: 50px;
  display: flex;
  position: relative;
  justify-content: center;
  
}

.card {
  position: absolute;
  height: inherit;
  background-color: var(--whiteColor);
  width: fit-content;
  padding: 30px;
  width: 30%;
  color: var(--textColor);
  border-radius: 35px;
  transition: all 0.3s ease-in-out;
  box-shadow: -145px 0px 58px rgba(138, 138, 138, 0.01), -81px 0px 49px rgba(138, 138, 138, 0.05), -36px 0px 36px rgba(138, 138, 138, 0.09), -9px 0px 20px rgba(138, 138, 138, 0.1);
}

.card-title {
  font-family: var(--proximaBold);
  font-size: 25px;
}

.card-subtitle {
  font-family: var(--mtnRegular);
  font-size: 17px;
  margin-top: 20px;
}

.first-card {
  left: 0%;
}

.first-card:hover {
  background-color: var(--textColor);
  color: var(--whiteColor);
  box-shadow: none;
  transition: color 0.3s ease-in-out;
}

.first-card:hover ~ .second-card {
  left: 32%;
  transition: left 0.3s ease-in-out;
}

.second-card {
  left: 25%;
}

.second-card:hover {
  background-color: var(--textColor);
  color: var(--whiteColor);
  box-shadow: none;
  transition: color 0.3s ease-in-out;
}

.second-card:hover ~ .third-card {
  left: 57%;
  transition: left 0.3s ease-in-out;
}

.third-card {
  left: 50%;
}

.third-card:hover {
  left: 38%;
  background-color: var(--textColor);
  color: var(--whiteColor);
  box-shadow: none;
  transition: color 0.3s ease-in-out;
  transition: left 0.3s ease-in-out;
}

.fouth-card {
  left: 70%;
  background-color: var(--textColor);
  color: var(--whiteColor);
  box-shadow: none;
}

.first-card:hover ~ .fouth-card,
.second-card:hover ~ .fouth-card,
.third-card:hover ~ .fouth-card {
  background-color: var(--whiteColor);
  color: var(--textColor);
  transition: left 0.3s ease-in-out;
  box-shadow: -145px 0px 58px rgba(138, 138, 138, 0.01), -81px 0px 49px rgba(138, 138, 138, 0.05), -36px 0px 36px rgba(138, 138, 138, 0.09), -9px 0px 20px rgba(138, 138, 138, 0.1);
}
/* end How it works section */

/* Vast collection */
.vast-collections {
  padding: 70px 40px 40px 40px;
  background-color: #FFFEF8;
}

.vast-collections .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vast-collections .title {
  font-size: 70px;
  font-family: var(--proximaSemibold);
  color: var(--textColor);
}

.vast-collections .title span {
  background-color: var(--blueColor);
  color: var(--whiteColor);
  padding: 12px 0px 12px 0;
  border-radius: 50%;
}

.vast-collections .subtitle {
  color: var(--textColor);
  font-family: var(--mtnRegular);
  font-size: 24px;
  margin-top: 10px;
}

.vast-collections .header .see-all-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--blueColor);
  color: var(--blueColor);
  font-family: var(--mtnRegular);
  padding: 12px 18px;
  border-radius: 8px;
}

.vast-collections .header .see-all-btn:hover {
  cursor: pointer;
}

.products-3 {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 60px;
  justify-content: center;
}

.products-3 a {
  width: fit-content;
}

.product {
  width: fit-content;
  padding: 15px;
  border-radius: 14px;
  max-width: 350px;
  min-width: 250px;
  background-color: var(--whiteColor);
  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);
}

.promo-product {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.product-header {
  height: 220px;
  border-radius: 10px;
  position: relative;
}

.product-header a {
  border-radius: inherit;
}

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

.product-image img {
  width: inherit;
  height: inherit;
  border-radius: inherit;
}

.product-header-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--whiteColor);
  padding: 12px 12px 9px 12px;
  border-radius: 30px;
}

.product-header-icon:hover {
  cursor: pointer;
}

.product-body {
  padding-top: 10px;
}

.product-title {
  font-family: var(--proximaSemibold);
  font-size: 25px;
  color: var(--textColor);
  margin: 10px 0;
}

.product-subtitle {
  font-family: var(--mtnRegular);
  color: var(--textColor);
}

.product-review {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 8px 0;
  font-family: var(--mtnRegular);
  color: var(--textColor);
  font-size: 15px;
}

.product-review-counter {
  color: var(--grayColor);
}

.product-pricing-cart {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-text {
  font-family: var(--proximaRegular);
  color: var(--textColor);
}

.price-amount {
  font-family: var(--proximaBold);
  font-size: 20px;
  color: var(--blueColor);
  margin-top: 5px;
}

.price-amount-discount {
  font-family: var(--proximaRegular);
  text-decoration: line-through;
}

.product-cart {
  background-color: var(--blueColor);
  padding: 10px 8px 8px 8px;
  border-radius: 50%;
}

.product-cart:hover {
  cursor: pointer;
}

.promo-countdown {
  background-color: var(--blueColor);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}

.promo-countdown .countdown-timer {
  color: var(--whiteColor);
  font-family: var(--mtnBold);
  font-size: 20px;
}

.promo-countdown .countdown-timer span {
  font-size: 12px;
}

.grap-promo-btn  {
  background-color: var(--yellowColor);
  padding: 10px 15px;
  border-radius: 8px;
}

.grap-promo-btn {
  font-family: var(--mtnBold);
  color: var(--textColor);
}
/* end of vast collections */

/* endless posibilities */
.endless-posibilities {
  padding: 80px 40px;
}

.endless-posibilities .title {
  font-size: 80px;
  color: var(--textColor);
  font-family: var(--proximaSemibold);
  margin-right: 250px;
}

.endless-posibilities .title span {
  color: var(--blueColor);
}

.posibilities-wrapper {
  width: 70%;
  margin: 0 auto;
  margin-top: 100px;
}

.first-posibility {
  display: flex;
}

.online-vendor-posibility {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 30px;
  padding-left: 40px;
  padding-top: 80px;
}

.first-posibility-title {
  font-family: var(--mtnBold);
  color: var(--textColor);
  font-size: 20px;
}

.first-posibility-subtitle {
  font-family: var(--proximaRegular);
  font-size: 16px;
  color: var(--textColor);
  margin-right: 70px;
  line-height: 1.6rem;
}

.posibility-btn {
  background-color: var(--blueColor);
  padding: 15px 20px;
  border-radius: 8px;
  width: fit-content;
}

.posibility-btn p {
  font-family: var(--mtnRegular);
  color: var(--whiteColor);
}

.first-posibility-image,
.second-posibility-image {
  width: 100%;
  height: 550px;
}

.first-posibility-image img {
  width: inherit;
  height: inherit;
}

.second-posibility {
  display: flex;
}

.second-posibility-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px 20px 0px 50px;
  align-items: start;
}

.second-posibility-image {
  width: 80%;
  margin-top: -70px;
}

.second-posibility-image img {
  width: 100%;
  height: inherit;
}

.second-posibility-image p {
  font-family: var(--proximaRegular);
  color: var(--textColor);
  font-size: 14px;
  margin-top: 20px;
}

.second-posibility-image p span {
  color: var(--blueColor);
}

.payment-posibilities {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: start;
}

.payment-posibilities-title {
  font-family: var(--mtnBold);
  font-size: 20px;
  color: #1F1F1F;
}

.payment-posibilities-subtitle {
  font-family: var(--proximaRegular);
  color: #4E4E4E;
}

.payment-posibilities-btn {
  display: flex;
  justify-content: start;align-items: safe;
  align-items: center;
  color: var(--blueColor);
  font-family: var(--mtnRegular);
  font-size: 17px;
}
/* end of endless posibilities */

/* effortless shopping */
.effortless-shopping {
  background-color: var(--blueColor);
  border-radius: 40px;
  background-image: url('../../assets/images/looer.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px;
  margin: 70px 40px;
  display: flex;
  justify-content: space-between;
}

.effortless-shopping .text-section {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 30px;
}

.text-section-title {
  font-size: 80px;
  color: var(--whiteColor);
  font-family: var(--proximaBold);
}

.text-section-title span {
  color: var(--blueColor);
  background-color: var(--whiteColor);
  padding: 10px;
  border-radius: 50%;
}

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

.text-section-btn {
  background-color: var(--yellowColor);
  padding: 18px 60px;
  border-radius: 6px;
}

.text-section-btn p {
  font-family: var(--mtnRegular);
  color: #000000;
}

.effortless-shopping .image-section {
  width: 48%;
  height: 600px;
  border-radius: 30px;
  background-image: url('../../assets/images/happy-girl.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: end;
  justify-content: center;
}

.image-section-content {
  padding: 35px 20px;
  width: 80%;
  background: transparent;
  backdrop-filter: blur(5px);
  border: 1px solid var(--whiteColor);
  display: flex;
  justify-content: space-around;
  border-radius: 10px;
  margin-bottom: 30px;
}

.counters {
  text-align: center;
}

.counters-title {
  font-size: 50px;
  font-family: var(--proximaSemibold);
  color: var(--whiteColor);
}

.counters-subtitle {
  font-family: var(--mtnBold);
  color: var(--whiteColor);
}
/* end effortless shopping */

/* verified vendors */
.verified-vendors {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  margin-top: 120px;
}

.gradient {
  width: 25%;
  height: 30%;
}

.top-left-gradient {
  height: 20%;
  position: absolute;
  top: 0;
  background: linear-gradient(90deg, #05CDFF 50%, transparent 0%);
  filter: blur(120px) saturate(1.1) brightness(1.1);
}

.top-right-gradient {
  position: absolute;
  top: 20px;
  right: 0;
  background: linear-gradient(225deg, #05CDFF 50%, transparent 0%);
  filter: blur(120px) saturate(1.1) brightness(1.1);
}

.bottom-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(45deg, #05CDFF 50%, transparent 0%);
  filter: blur(120px) saturate(1.1) brightness(1.1);
}

.verified-vendors-content {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  padding: 40px;
  display: flex;
}

.verified-vendors-image {
  width: 40%;
  height: 100%;
  background-image: url('../../assets/images/Vendors.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  
}

.verified-vendors-text {
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 45px;
}

.verified-vendors-title {
  font-family: var(--proximaSemibold);
  font-size: 60px;
  color: var(--textColor);
}

.verified-vendors-subtitle {
  font-family: var(--mtnRegular);
  color: var(--textColor);
  font-size: 25px;
}

.verified-vendors-btn {
  background-color: var(--blueColor);
  padding: 25px 120px;
  border-radius: 8px;
}

.verified-vendors-btn p {
  font-family: var(--mtnRegular);
  color: var(--whiteColor);
  font-size: 20px;
}
/* end of verified vendors */

/* customers say */
.customers-say {
  background-color: #FFFAE7;
  padding: 70px 40px;
}

.customers-say-title {
  font-size: 70px;
  font-family: var(--proximaRegular);
  color: var(--textColor);
}

.customers-say-title span {
  background-color: var(--yellowColor);
  padding: 25px 12px;
  border-radius: 50%;
}

.review-sliders {
  width: 100%;
  position: relative;
  margin: 30px auto 0 auto;
  padding: 100px 80px 60px 80px;
}

.swiper-wrapper {
  padding-bottom: 40px;
}

.review-card {
  border-radius: 30px;
  max-width: 350px !important;
}

.top-review-card {
  background-color: var(--whiteColor);
  padding: 30px;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.review-card-quote {
  font-family: var(--proximaBold);
  color: var(--blueColor);
  font-size: 80px;
  text-align: start;
}

.review-card-text {
  font-family: var(--mtnRegular);
  color: var(--textColor);
  text-align: start;
}

.review-card-stars {
  display: flex;
  font-family: var(--mtnRegular);
  color: var(--textColor);
  gap: 5px;
  margin-top: 30px;
}

.reviewer-info {
  background-color: var(--blueColor);
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  display: flex;
  padding: 20px;
  align-items: center;
  gap: 15px;
}

.reviewer-pic {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--whiteColor);
}

.reviewer-pic img {
  width: 100%;
  height: 100%;
}

.reviewer-details-name {
  font-family: var(--proximaSemibold);
  color: var(--whiteColor);
  font-size: 20px;
}

.reviewer-details-role {
  font-family: var(--mtnRegular);
  color: var(--yellowColor);
  font-size: 18px;
  margin-top: 5px;
  text-align: start;
}

/* end of customers say */


/* shop and sell */
.shop-sell {
  background-color: var(--blueColor);
  padding: 100px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.shop-sell-title {
  font-size: 100px;
  color: var(--whiteColor);
  font-family: var(--proximaSemibold);
  text-align: center;
}

.shop-sell-title span {
  padding: 8px 40px 8px 8px;
  color: var(--blueColor);
  background-color: var(--whiteColor);
  border-radius: 50%;
}

.shop-sell-btn {
  background-color: var(--yellowColor);
  width: 100%;
  padding: 20px 20px;
  border-radius: 8px;
  margin: 0 auto;
}

.shop-sell a {
  width: 40%;
  margin-top: 40px;
}

.shop-sell-btn p {
  text-align: center;
  font-size: 40px;
  font-family: var(--proximaSemibold);
  color: var(--textColor);
}
/* end of shop and sell */

/* footer */
.footer {
  background-color: #000000;
  padding: 70px 50px 40px 50px;
}

.top-footer {
  display: flex;
  justify-content: space-between;
}

.footer-logo img {
  width: 180px;
}

.footer-header p {
  font-family: var(--mtnBold);
  color: var(--whiteColor);
  font-size: 22px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  list-style: none;
}

.footer-links-mg {
  margin-left: 15px;
}

.footer-links ul li a {
  color: var(--whiteColor);
  font-family: var(--mtnRegular);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: var(--whiteColor);
  margin-top: 150px;
  margin-bottom: 30px;
}

.bottom-footer {
  text-align: center;
}

.bottom-footer p {
  color: var(--whiteColor);
  opacity: 0.6;
  font-family: var(--mtnRegular);
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-socila-media-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.floating-cart {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 2;
}

.floating-cart:hover {
  cursor: pointer;
}

.floating-cart-icon {
  background-color: var(--blueColor);
  width: fit-content;
  padding: 15px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
}

.cart-counter {
  background-color: var(--blueColor);
  color: var(--whiteColor);
  padding: 4px 5px;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-family: var(--proximaBold);
  position: absolute;
  top: 0;
  right: 0;
  margin-top: -15px;
  margin-right: -8px;
  font-size: 15px;
}

.modal-overlay {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #00000018;
  backdrop-filter: blur(5.4px);
  z-index: 1000;
}

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

.cart-modal-header {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px 0;
  border-bottom: 1px solid var(--grayColor);
}

.cart-modal-header svg {
  cursor: pointer;
}

.cart-modal-header p {
  font-family: var(--proximaSemibold);
  color: var(--textColor);
  font-size: 30px;
}

.modal-cart-items {
  max-height: 380px;
  overflow-y: scroll;
}

.modal-cart-items::-webkit-scrollbar {
  width: 5px;
  margin-left: 50px;
}

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

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

.cart-modal-btns {
  display: flex;
  gap: 20px;
  margin: 40px 0 10px 0;
}

.cart-modal-btn {
  border: 1px solid var(--redColor);
  width: 100%;
  text-align: center;
  padding: 15px 0;
  border-radius: 10px;
}

.cart-modal-btns a {
  width: 100%;
}

.cart-modal-btn p {
  font-family: var(--mtnRegular);
  font-size: 18px;
  color: var(--redColor);
}

.cart-modal-btn:hover {
  cursor: pointer;
}

.proceed-btn {
  border-color: var(--blueColor);
  background-color: var(--blueColor);
}

.proceed-btn p {
  font-family: var(--mtnBold);
  color: var(--yellowColor);
}

.not-found-image {
  width: 500px;
  height: 400px;
  margin: 0 auto;
}

.not-found-image img {
  width: 100%;
  height: 100%;
}

.lost-text {
  font-family: var(--mtnBold);
  color: var(--textColor);
  font-size: 35px;
  text-align: center;
}

.find-text {
  font-family: var(--mtnRegular);
  color: var(--textColor);
  font-size: 20px;
  text-align: center;
  margin: 20px 0;
}

.go-home-btn {
  background-color: var(--blueColor);
  width: fit-content;
  padding: 20px 25px;
  border-radius: 8px;
  margin: 0 auto;
}

.go-home-btn p {
  color: var(--whiteColor);
  font-family: var(--mtnRegular);
}

/* Mobile responsiveness */

/* Hero responsiveness */
@media (max-width: 1290px) {
  .hero-subtitle {
    margin: 20px 200px;
  }

  .users-reviews {
    width: 40%;
  }
}

@media (max-width: 1135px) {
  .users-reviews {
    width: 45%;
  }
}

@media (max-width: 1035px) {
  .hero-subtitle {
    margin: 20px 150px;
  }

  .users-reviews {
    width: 50%;
  }
}

@media (max-width:970px) {
  .hero-subtitle {
    margin: 20px 100px;
  }

  .hero-wrapper {
    padding: 60px 70px;
  }
}

@media (max-width: 850px) {
  .hero-wrapper {
    padding: 60px 50px;
  }
}

@media (max-width: 815px) {
  .hero-title {
    font-size: 80px;
  }

  .users-reviews {
    width: 55%;
  }

  .hero-title .you {
    padding: 20px 10px;
  }
}

@media (max-width: 750px) {
  .users-reviews {
    width: 65%;
  }

  .vast-collections .header {
    display: block;
  }

  .vast-collections .title {
    font-size: 50px;
  }

  .vast-collections .header .see-all-btn {
    width: fit-content;
    margin-top: 30px;
  }
}

@media (max-width: 650px) {
  .hero-wrapper {
    padding: 60px 30px;
  }

  .hero-subtitle {
    margin: 20px 50px;
  }

  .hero-title {
    font-size: 60px;
  }
}

@media (max-width: 612px) {
  .users-reviews {
    width: 75%;
  }

  .hero-btns {
    display: block;
    width: fit-content;
    margin: 0 auto;
    margin-top: 50px;
  }

  .start-shopping-btn {
    margin: 0 auto;
    margin-bottom: 40px;
  }

  .footer {
    padding: 50px 20px 30px 20px;
  }
}

@media (max-width: 550px) {
  .footer-logo img {
    width: 150px;
  }

  .vast-collections .title {
    font-size: 28px;
  }

  .vast-collections .title span {
    padding: 10px 0px 10px 0;
  }

  .vast-collections .subtitle {
    font-size: 16px;
  }
}

@media (max-width: 535px) {
  .users-reviews {
    width: 90%;
  }

  .hero-wrapper {
    padding: 60px 2px;
  }

  .hero-subtitle {
    margin: 30px 20px;
  }
}
/* End of hero responsive */


@media (max-width: 950px) {
  .nav-links,
  .language-login {
    display: none;
  }

  .first-posibility {
    display: block;
  }

  .second-posibility {
    flex-direction: column-reverse;
  }

  .endless-posibilities .title {
    font-size: 40px;
    margin-right: 10px;
    margin-left: 40px;
  }

  .endless-posibilities {
    padding: 80px 0px;
  }

  .second-posibility-image p {
    text-align: center;
  }

  .online-vendor-posibility {
    gap: 20px;
    padding-top: 0;
    padding-bottom: 20px;
  }

  .posibilities-wrapper {
    width: 100%;
    margin: 0 auto;
    margin-top: 20px;
  }

  .second-posibility-image {
    width: 100%;
    margin-top: 0px;
  }

  .toggle-icon {
    display: block;
    height: fit-content;
  }

  .blur-background {
    padding: 20px 20px;
  }

  .mobile-sidebar.open {
    left: 0;
  }

  .top-footer {
    display: grid;
    grid-template-columns: auto auto;
    gap: 40px;
  }

  .second-posibility-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 20px 30px 40px;
    align-items: start;
  }

  .effortless-shopping {
    flex-direction: column;
    padding: 40px 20px;
    margin: 70px 10px;
  }

  .effortless-shopping .text-section,
  .effortless-shopping .image-section {
    width: 100%;
  }

  .effortless-shopping .text-section {
    align-items: center;
    margin-bottom: 30px;
  }

  .image-section-content {
    flex-direction: column;
    gap: 30px;
    width: 90%;
    border-radius: 30px;
  }

  .text-section-title {
    font-size: 50px;
  }

  .verified-vendors-btn {
    padding: 25px 50px;
  }

  .verified-vendors-image {
    display: none;
  }

  .verified-vendors-title {
    font-size: 30px;
  }

  .verified-vendors-subtitle {
    font-size: 18px;
  }

  .verified-vendors-content {
    padding: 40px 20px;
  }

  .verified-vendors-text {
    width: 100%;
    align-items: center;
  }

  .customers-say-title {
    font-size: 30px;
  }

  .customers-say-title span {
    padding: 20px 12px;
  }

  .review-sliders {
    margin: 30px auto 0 auto;
    padding: 50px 20px 60px 20px;
  }

  .customers-say {
    padding: 40px 10px;
  }

  .shop-sell a {
    width: 100%;
  }

  .shop-sell-btn p {
    font-size: 30px;
  }

  .card {
    position: relative;
    width: 100%;
  }

  .cards {
    flex-direction: column;
    height: 100%;
    gap: 10px;
  }

  .second-card {
    left: 0;
  }

  .third-card {
    left: 0;
  }

  .fouth-card {
    left: 0;
  }

  .how-it-works .title {
    font-size: 45px;
  }
}