/* *********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; */
    --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;
    font-family: var(--mtnRegular);
}

a {
    text-decoration: none;
}

body {
    max-width: 1500px;
    margin: 0 auto;
}

/* Navigation bar */
.navbar {
    background: var(--blueColor);
    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(--whiteColor);
    font-family: var(--mtnRegular);
    font-size: 18px;
}

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

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

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

.language {
    border-color: var(--whiteColor);
    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(--whiteColor);
    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;
    border: 1px solid var(--yellowColor);
    border-radius: 8px;
}

.nav-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    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;
}

.language-login-mobile .language {
    border-color: var(--blueColor);
    color: var(--blueColor);
    background-image: url("../../assets/icons/arrow-down-blue.svg");
}

.language-login-mobile a {
    border: 1px solid var(--yellowColor);
    border-radius: 8px;
}

/* End of navigation bar */

/* Hero section */
.hero-wrapper {
    width: 100%;
    background-image: url("../../assets/images/Hero-shadow.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: 5px 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: 10px;
    padding: 15px 20px;
    width: fit-content;
    background-color: var(--yellowColor);
    color: var(--blueColor);
    border-radius: 14px;
}

.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 */
/* ========================= new vast collection ================= */

/* Grid Container */
.product-grid-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding: 0 40px 30px 40px;
}

.product-grid-header .title {
    font-size: 60px;
    color: var(--blueColor);
    font-family: var(--mtnBold);
}

.product-grid-header .subtitle {
    color: var(--textColor);
    font-size: 25px;
    margin-top: 30px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    background: #f2f2f2;
    padding: 45px;
    border-radius: 60px;
    margin: 0 40px 3rem 40px;
}

.product-grid.except {
    margin: 1rem 0;
    padding: 0;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Product Card */
.product-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.product-card:hover {
    transform: translateY(-5px);
}

/* Image */
.product-card img {
    width: 200px;
    height: 150px;
    object-fit: contain;
}

/* Badges */
.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--yellowColor);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    color: #000;
}

.badge.hot {
    top: 50px;
    background: #e42926;
    color: #fff;
}

/* Wishlist */
.wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

/* Title */
.product-card h3 {
    font-size: 20px;
    margin: 10px 0;
    color: #000000;
    font-weight: 700;
}

/* Description */
.product-card p {
    font-size: 16px;
    color: #000000;
    font-weight: 400;
    margin-bottom: 10px;
}

/* Stars */
.stars {
    color: gold;
    font-size: 14px;
    margin-bottom: 5px;
}

/* Stock */
.stock {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    margin-bottom: 8px;
    font-weight: 400;
}

/* Price */
.price {
    color: var(--blueColor);
    font-weight: 500;
    margin-bottom: 10px;
}

/* Button */
.product-card button {
    background: var(--blueColor);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.product-card button:hover {
    background: #0056b3;
}

/* ===========================end of vast collection================= */

/* 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(--blueColor);
}

.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,
.product-grid-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;
    text-wrap: nowrap;
    width: fit-content;
}

.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: 150px;
    border-radius: 10px;
    position: relative;
}

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

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

.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: 18px;
    color: var(--textColor);
    margin: 10px 0;
}

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

.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: 18px;
    color: var(--blueColor);
    margin-top: 5px;
}

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

.product-cart {
    background-color: var(--blueColor);
    padding: 8px 6px 6px 6px;
    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;
    background-color: var(--yellowColor);
}

.endless-posibilities .title {
    font-size: 80px;
    color: var(--textColor);
    font-family: var(--proximaBold);
    text-align: center;
}

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

.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: 50px;
}

.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: var(--yellowColor);
    padding: 70px 40px;
}

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

.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;
}

/* i'm coming back to this one..... */

.review-card-text-wrapper {
    height: 130px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-card-text-wrapper:hover {
    height: auto;
    overflow: visible;
}

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

.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%;
    border-radius: inherit;
}

.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: var(--blueColor);
    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: 30px;
    margin-bottom: 30px;
}

.bottom-footer {
    display: flex;
    justify-content: space-between;
    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: 15px;
    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);
}

.sync-tools {
    margin: 80px 40px;
}

.sync-tools .sync-tools-title {
    font-family: var(--proximaSemibold);
    color: var(--blueColor);
}

.sync-tools-subtitle {
    font-size: 23px;
    color: var(--textColor);
    font-family: var(--mtnRegular);
    margin-top: 30px;
    margin-bottom: 5rem;
}

.section-image-wrapper {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: end;
}

.section-image-content {
    width: 80%;
    margin: 5rem auto;
    height: 90%;
    box-shadow: 32px 322px 130px rgba(0, 76, 255, 0.01),
        18px 181px 109px rgba(0, 76, 255, 0.05),
        8px 81px 81px rgba(0, 76, 255, 0.09),
        2px 20px 45px rgba(0, 76, 255, 0.1);
}

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

.modules {
    margin-top: 50px;
    width: 100%;
    background-color: white;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
}

.module {
    width: 280px;
}

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

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

/* 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: 5px 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;
    }

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

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

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

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

    .section-image-wrapper {
        height: 50vh;
    }

    .section-image-content {
        margin: 0 auto;
        width: 100%;
        height: 100%;
        box-shadow: none;
    }

    .product-grid {
        border-radius: 10px;
        padding: 10px;
    }

    .product-grid-header {
        display: block;
    }

    .product-grid-header .title {
        font-size: 24px;
    }

    .product-grid-header .subtitle {
        font-size: 16px;
    }

    .product-grid-header .see-all-btn {
        margin-top: 25px;
    }

    .bottom-footer {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@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;
    }

    .section-image-content {
        width: 100%;
    }

    .product-grid {
        margin: 0 20px 3rem 20px;
    }

    .not-found-image {
        width: 90%;
        height: 300px;
        margin: 40px auto;
    }
}

@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;
    }
}

@media (max-width: 430px) {
    .section-image-wrapper {
        height: 30vh;
    }
}
