/* ================================== FIGTREE FONT FAMILY ================================== */

@font-face {
    font-family: 'Figtree';
    src: url('../fonts/figtree/Figtree-Regular.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'Figtree';
    src: url('../fonts/figtree/Figtree-Medium.ttf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'Figtree';
    src: url('../fonts/figtree/Figtree-SemiBold.ttf') format('truetype');
    font-weight: 600;
}

@font-face {
    font-family: 'Figtree';
    src: url('../fonts/figtree/Figtree-Bold.ttf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'Figtree';
    src: url('../fonts/figtree/Figtree-Black.ttf') format('truetype');
    font-weight: 800;
}

@font-face {
    font-family: 'Figtree';
    src: url('../fonts/figtree/Figtree-ExtraBold.ttf') format('truetype');
    font-weight: 900;
}


/* ======================== UNITEA FONT FAMILY ======================== */

@font-face {
    font-family: 'Unitea Sans';
    src: url('../fonts/unitea/UniteaSans-Regular.otf') format('opentype');
    font-weight: 400;
}

@font-face {
    font-family: 'Unitea Sans';
    src: url('../fonts/unitea/UniteaSans-Medium.otf') format('opentype');
    font-weight: 500;
}

@font-face {
    font-family: 'Unitea Sans';
    src: url('../fonts/unitea/UniteaSans-SemiBold.otf') format('opentype');
    font-weight: 600;
}

@font-face {
    font-family: 'Unitea Sans';
    src: url('../fonts/unitea/UniteaSans-Bold.otf') format('opentype');
    font-weight: 700;
}

@font-face {
    font-family: 'Unitea Sans';
    src: url('../fonts/unitea/UniteaSans-Black.otf') format('opentype');
    font-weight: 900;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
ul,
li,
a,
.btn-default,
textarea {
    margin: 0;
    padding: 0;
}

* {
    margin: 0;
    padding: 0;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    color: inherit;
}

ul {
    padding: 0;
}

li {
    list-style-type: none;
}

button {
    border: none;
    outline: none;
    background: none;
}

body {
    overflow-x: hidden;
    font-family: var(--font-content);
    position: relative;
    scroll-behavior: smooth;
    background: #ffffff;
}

.container {
    max-width: 1460px;
}

select,
input {
    outline: none;
    border: none;
    box-shadow: none;
    background: transparent;
}


:root {

    /* Font Families */
    --font-content: 'Figtree', sans-serif;
    --font-heading: 'Unitea Sans', sans-serif;

    /* FIGTREE Font Weights */
    --figtree-regular: 400;
    --figtree-medium: 500;
    --figtree-semibold: 600;
    --figtree-bold: 700;
    --figtree-extrabold: 800;
    --figtree-black: 900;

    /* UNITEA Font Weights */
    --unitea-regular: 400;
    --unitea-medium: 500;
    --unitea-semibold: 600;
    --unitea-bold: 700;
    --unitea-black: 900;

    /* Color Theme Variables */
    --darkBlue: #002A4C;
    --white: #ffffff;
    --grey: #4F4F4F;
    --black: #000000;
    --primary: #FB8501;
    --dark-grey: #797979;
    --light-grey: #F1F1F1;
    --normal-grey: #ACACAC;
    --filter-grey: #F5F5F5;
    --yellow: #FFD903;

    /* FontSizes */
    --font-12: 12px;
    --font-14: 14px;
    --font-16: 16px;
    --font-18: 18px;
    --font-22: 22px;
    --font-25: 25px;
    --font-28: 28px;
    --font-45: 45px;
    --font-55: 55px;
    --font-63: 63px;
    --font-65: 65px;
    --font-103: 103px;

}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

.iconBtn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    font-size: var(--font-18);
    font-weight: var(--figtree-extrabold);
    padding: 20px 30px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    z-index: 1;
}
.iconBtn .btnTextWrap {
    position: relative;
    overflow: hidden;
    display: block;
}
.iconBtn .btnTextWrap span {
    transition: all 0.3s ease;
}
.iconBtn .btnTextWrap span:nth-child(1) {
    display: block;
    position: relative;
}
.iconBtn .btnTextWrap span:nth-child(2) {
    position: absolute;
    top: 100%;
    display: block;
}
.iconBtn:hover .btnTextWrap span:nth-child(1) {
    -webkit-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    transform: translateY(-150%);
}
.iconBtn:hover .btnTextWrap span:nth-child(2) {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}








.bgPrimary {
    background-color: #002A4C;
}


.yellowGradient {
    background: linear-gradient(90deg, rgba(251, 133, 1, 1) 0%, rgba(255, 183, 3, 1) 57%);
}

.redGradient {
    background: linear-gradient(45deg, rgba(236, 28, 36, 1) 40%, rgba(255, 255, 255, 1) 100%);
}

.blackGradient {
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.blackGradient45 {
    background: linear-gradient(45deg, rgba(0, 0, 0, 1) 12%, rgba(255, 255, 255, 1) 100%);
}

.purpleGradient {
    background: linear-gradient(90deg, rgba(11, 33, 102, 1) 0%, rgba(237, 167, 227, 1) 100%);
}

.lightPurpleGradient {
    background: radial-gradient(circle, rgba(110, 124, 206, 1) 12%, rgba(53, 65, 137, 1) 100%);
}

.lightBlueGradient {
    background: linear-gradient(45deg, rgba(11, 118, 186, 1) 0%, rgba(246, 252, 255, 1) 100%);
}

.pinkGradient {
    background: linear-gradient(0deg, rgba(255, 59, 243, 1) 0%, rgba(255, 255, 255, 1) 100%);
}


.bgDarkBlue {
    background-color: #002A4C;
}

.bgWhite {
    background-color: #ffffff;
}

.bgBlack {
    background-color: #000000;
}

.colorYellow {
    color: #FFC403;
}

/*********************** Header Css Starts ************************/
/******************************************************************/
/* #siteHeader { position: relative; } */
.headerTopBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FFB70319;
    padding: 11px 110px;
}

.headerTopBar .leftCol,
.headerTopBar .rightCol {
    display: flex;
    align-items: center;
    width: 50%
}

.colorLabel {
    font-size: var(--font-18);
    font-weight: var(--figtree-semibold);
    line-height: 18px;
    color: var(--white);
    padding: 11px 16px;
    border-radius: 40px;
    margin-right: 10px;
}

.offerText {
    font-size: var(--font-18);
    font-weight: var(--figtree-regular);
    color: var(--darkBlue);
}

.offerText span {
    font-weight: var(--figtree-extrabold);
}

.headerTopBar .rightCol {
    gap: 26px;
    justify-content: end;
}

.orderTracking {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: var(--font-18);
    font-weight: var(--figtree-semibold);
    line-height: 18px;
    color: var(--darkBlue);
}

.contactInfo {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: var(--font-18);
    font-weight: var(--figtree-semibold);
    line-height: 18px;
    color: var(--darkBlue);
    padding: 0 26px;
    border-left: 2px solid #00000054;
    border-right: 2px solid #00000054;
}

.orderTracking i,
.contactInfo i {
    color: #FFC403;
}

.currencySelector .dropdown-menu {
    min-width: 4rem;
    padding: 10px 0;
}

.searchToggle {
    display: none;
    color: #FFC403;
}

.headerTopBar .rightCol .divider {
    display: none;
    width: 2px;
    height: 16px;
    border: 1px solid #00000054;
}

.langSwitcher .dropdown-menu {
    min-width: 7rem;
}

/* Lang Switcher */
.dropdown-menu {
    background-color: #fff8e6;
    transform: translate(0px, 40px) !important;
}

.dropdown-item.active,
.dropdown-item:hover {
    background-color: #FFC403;
    color: #ffffff;
}

.dropdown button {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--font-18);
    font-weight: var(--figtree-semibold);
    line-height: 18px;
    color: var(--darkBlue);
}


/* Middle Bar */
.middleBar {
    padding: 21px 110px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.middleBar .leftCol {
    width: 18%;
}

.middleBar .leftCol img {
    width: 100%;
}

.middleBar .rightCol {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 69%;
}

.searchFiterWrapper {
    width: 78%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--filter-grey);
    border-radius: 60px;
    padding: 20px 30px;
}

.searchFiterWrapper .dropdown-menu {
    position: relative;
    padding: 10px 0;
    background-color: var(--filter-grey) !important;
}

.searchFiterWrapper .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -9px;
    left: 5px;
    width: 16px;
    height: 16px;
    transform: rotate(45deg);
    background-color: var(--filter-grey);
    border-top: 1px solid rgba(0, 0, 0, .15);
    border-left: 1px solid rgba(0, 0, 0, .15);
}

.searchFiterWrapper .dropdown button {
    font-size: var(--font-16);
    font-weight: var(--figtree-extrabold);
    line-height: 16px;
}

.searchFiterWrapper input {
    width: 70%;
    border-left: 2px solid #00000054;
    padding-left: 28px;
    font-size: var(--font-16);
    font-weight: var(--figtree-medium);
    line-height: 16px;
}

.searchFiterWrapper input::placeholder {
    color: var(--dark-grey);
}

.currencySelector {
    padding: 10px 15px 10px 15px;
    border-radius: 10px;
    /* padding: 23px 21px 23px 26px;
    border-radius: 60px;
    background-color: var(--filter-grey); */
}

.currencySelector .dropdown button {
    font-size: var(--font-16);
    font-weight: var(--figtree-medium);
    line-height: 18px;
}

.currencySelector .dropdown-menu {
    position: relative;
}

.currencySelector .dropdown-menu li a {
    font-size: 14px;
}

.currencySelector .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -9px;
    left: 5px;
    width: 16px;
    height: 16px;
    transform: rotate(45deg);
    background: #fff8e6;
    border-top: 1px solid rgba(0, 0, 0, .15);
    border-left: 1px solid rgba(0, 0, 0, .15);
}

.userActions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.userActions a {
    width: 22px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.userActions img {
    width: 100%;
    height: 100%;
    object-fit: none;
}

#bottomBar { 
    position: relative; 
    z-index: 100; 
}

#bottomBar.is-fixed {
  position: fixed;
  top: 0; left: 0; right: 0; width: 100%;
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
}

#bottomBarSpacer { height: 0; }

/* Bottom Bar */
.bottomBarWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--darkBlue);
    padding: 10px 110px;
}

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

.bottomBar .navWrapper {
    display: flex;
    align-items: center;
}

.bottomBar .navWrapper .categoriesDropDown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 10px;
    width: 16px;
    height: 16px;
    transform: rotate(45deg);
    background: #002a4c;
}

.bottomBar .navWrapper li {
    position: relative;
}

.bottomBar .navWrapper>li+li {
    margin-left: 50px;
}

.bottomBar .navWrapper>li:first-child {
    padding: 18px 32px;
    background-color: #183f5e;
    border-radius: 60px;
}

.bottomBar .navWrapper>li:first-child a {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: var(--font-18);
    font-weight: var(--figtree-black);
    line-height: 18px;
}

.bottomBar .navWrapper>li:first-child ul li a {
    display: block;
    font-size: var(--font-14);
    font-weight: var(--figtree-medium) !important;
    line-height: 14px;
    padding: 10px 15px;
}

.bottomBar ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--darkBlue);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 10px 0;
    border-radius: 10px;
}

.bottomBar ul li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(10x);
}

.bottomBar ul li a {
    font-size: var(--font-16);
    font-weight: var(--figtree-medium);
    color: var(--white);
    line-height: 16px;
}

.bottomBar ul li a.active,
.bottomBar ul li a:hover {
    color: #FB8501;
}

.bottomBar ul li ul li a {
    display: block;
    font-size: var(--font-14);
    font-weight: var(--figtree-medium) !important;
    line-height: 14px;
    padding: 10px 15px;
}

.bottomBar ul li a i {
    margin-left: 12px;
}

.bottomBar .catgDropDown i {
    margin-left: 0;
}

.bottomBar ul li ul li a:hover {
    background: linear-gradient(90deg, rgba(251, 133, 1, 1) 0%, rgba(255, 183, 3, 1) 57%);
    color: #ffffff;
}

.bottomBarWrapper .rightCol {
    display: flex;
    align-items: center;
    gap: 23px;
}

.bottomBarWrapper .rightCol .saveSell {
    display: flex;
    align-items: center;
}

.bottomBarWrapper .rightCol .saveSell a {
    font-size: var(--font-18);
    font-weight: var(--figtree-extrabold);
    color: var(--white);
    line-height: 18px;
}

.bottomBarWrapper .rightCol .saveSell a img {
    margin-right: 14px;
}

.bottomBarWrapper .rightCol .saveSell .divider {
    width: 2px;
    height: 20px;
    display: block;
    background-color: var(--white);
    margin: 0 25px;
    border: 1px solid #ffffff;
}

.loginSignup {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    padding: 20px 30px;
    font-size: var(--font-18);
    font-weight: var(--figtree-extrabold);
    color: var(--white);
    line-height: 18px;
}

/* Mobile Menu */
.mobileDrawerToggler {
    display: none;
}

.mobileDrawerToggler span {
    width: 24px;
    height: 3px;
    background-color: #ffffff;
}

.searchToggleBtn img {
    width: 21px;
    height: 20px;
    object-fit: cover;
    object-position: center;
}

.hamenu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 350px;
    height: 100vh;
    background: var(--darkBlue);
    overflow: hidden;
    z-index: 99999999999;
    -webkit-transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
    -o-transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
    transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 70px;
}

.hamenu .close-menu {
    position: absolute;
    top: 10px;
    z-index: 4;
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: flex-end;
}

.hamenu .close-menu span {
    width: 36px;
    height: 36px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
}

.navLinksWrapper {
    width: 100%;
    padding: 0 15px;
    max-height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.navLinksWrapper ul li {
    font-size: var(--font-14);
    font-weight: var(--figtree-medium);
    color: var(--white);
    padding: 12px 0;
    border-bottom: 1px solid #ffffff;
}

.navLinksWrapper ul li h2 button {
    font-size: var(--font-14);
    font-weight: var(--figtree-regular) !important;
    color: var(--white) !important;
    padding: 10px 0;
}

.navLinksWrapper ul li h2 .accordion-button::after {
    display: none;
}

.navLinksWrapper ul li ul li {
    font-size: var(--font-14);
    padding: 10px 0;
}

.navLinksWrapper ul li ul li:last-child {
    border-bottom: none;
}

/* Search Form Mobile/Tablet View */
.searchModal,
.overlay {
    display: none;
}

.searchModal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    z-index: 9999;
}

.searchModal.active {
    transform: translateY(0);
}

.searchModal .closeSearch {
    position: absolute;
    right: 15px;
    top: 15px;
    background: none;
    border: none;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

/*============================= HomePage ============================ */
/* ================================================================== */

.bannerSection {
    padding: 20px 20px 0 20px;
    margin-bottom: 125px;
}

.bannerSection .swiper {
    padding-bottom: 20px;
}

.bannerSliderItem {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 50px;
    padding: 70px 50px 0 90px;
}


.bannerLeftCol {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.swiper-slide-active .bannerLeftCol {
    opacity: 1;
    transform: translateY(0);
}

.thirdSwiperItem .bannerSliderItem {
    background: url(../images/third-banner.png);
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    max-height: 790px;
    min-height: 790px;
}

.bannerSliderItem .bannerLeftCol {
    width: 44.2%;
    margin-bottom: 50px;
}

.bannerSliderItem .bannerLeftCol h1 {
    font-size: var(--font-103);
    font-weight: var(--unitea-semibold);
    color: #ffffff;
    letter-spacing: -5px;
    line-height: 95px;
    margin-bottom: 45px;
}

.bannerSliderItem .bannerLeftCol p {
    font-size: var(--font-22);
    font-weight: var(--figtree-semibold);
    color: var(--white);
}

.shoppingRating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
}

.shoppingRating .rating {
    display: flex;
    gap: 18px;
}

.shoppingRating .rating div {
    display: flex;
    align-items: center;
    gap: 3px;
}

.shoppingRating .rating div span {
    font-size: 12px;
    color: var(--yellow);
}

.shoppingRating .rating p {
    font-size: var(--font-22);
    font-weight: var(--figtree-semibold);
    color: var(--white);
}

.BannerRightCol {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 47%;
}

.BannerRightCol .colBg {
    max-width: 600px;
    min-height: 720px;
}

.prodBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 22px;
    border-radius: 42px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 242px;
}

.prodBox:hover img {
    transform: scale(1.3);
    transition: 0.5s ease-in-out;
}

.prodBox a {
    font-size: var(--font-16);
    font-weight: var(--figtree-medium);
    color: var(--black);
    background-color: var(--white);
    padding: 15px 30px;
    border-radius: 25px;
    text-align: center;
}

.prodBox img {
    max-width: 175px;
    transition: 0.5s ease-in-out;
}

.prodBox.bottom {
    position: absolute;
    bottom: -20px;
    left: 0;
}

.prodBox.top {
    position: absolute;
    top: 0px;
    right: 20px;
}

.thirdSwiperItem .BannerRightCol {
    flex-direction: column;
    align-items: end;
    gap: 20px;
}

.thirdSwiperItem .prodBox.bottom {
    position: unset;
}

.thirdSwiperItem .prodBox.top {
    position: unset;
}

.bannerSection .swiper-pagination {
    bottom: 80px !important;
    text-align: left !important;
    left: 100px !important;
    width: auto !important;
}

.bannerSection .swiper-pagination-bullet {
    background-color: #ffffff66;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
    opacity: 1;
}

.bannerSection .swiper-pagination-bullet-active {
    width: 42px !important;
    background-color: #ffffff;
    border-radius: 40px !important;
}

.bannerSection .secondSwiperItem .BannerRightCol img {
    width: 100%;
    min-height: 720px;
    object-fit: contain;
    object-position: center;
}

.secondSwiperItem .tag {
    font-size: var(--font-22) !important;
    font-weight: var(--figtree-medium);
    color: var(white);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.secondSwiperItem .bannerSliderItem .bannerLeftCol p {
    font-size: var(--font-45);
}

.secondSwiperItem .bannerSliderItem .bannerLeftCol p span {
    color: var(--yellow);
}

.thirdSwiperItem .iconBtn {
    color: #000000;
}

/* Trending Section */
.colDivider {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sectionTitle {
    font-size: var(--font-63);
    font-weight: 600;
    color: var(--darkBlue);
    line-height: 63px;
}

.secDesc {
    font-size: var(--font-18);
    font-weight: var(--figtree-medium);
    color: var(--grey);
}

.trendingSection .sectionTitle {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trendingSection .secDesc {
    width: 42%;
}

.trendingSection .colDivider {
    margin-bottom: 80px;
}

.trendingProducts {
    padding: 20px 0 115px;
}

.productCard {
    padding: 20px 18px 30px 18px;
    border-radius: 40px;
    background-color: var(--white);
    box-shadow: 0 0 30px 1px #00000020;
    border: 1px solid #ffffff;
    display: inline-block;
}

.productCard .prodImg {
    position: relative;
}

.productCard .prodImg .label {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    background-color: #ffffff;
    border-radius: 25px;
    padding: 6px 11px;
    font-size: var(--font-14);
    font-weight: var(--figtree-medium);
    color: var(--darkBlue);
    position: absolute;
    left: 15px;
    top: 15px;
}

.productCard .prodImg .label img {
    width: 10px;
    height: 13px;
    object-fit: contain;
    object-position: center;
}

.productCard .prodImg img {
    width: 100%;
    max-height: 233px;
    object-fit: cover;
    object-position: center;
    border-radius: 25px;
}

.productCard .prodDetailWrap {
    margin-top: 33px;
}

.productCard .prodDetailWrap .prodRating .rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.productCard .prodDetailWrap .prodRating .rating div {
    display: flex;
    gap: 3px;
    align-items: center;
}

.productCard .prodDetailWrap .prodRating .rating div span {
    font-size: 12px;
    color: var(--yellow);
}

.productCard .prodDetailWrap .prodRating .rating p {
    font-size: var(--font-14);
    font-weight: var(--figtree-bold);
    color: var(--yellow);
    line-height: 14px;
}

.productCard .prodDetailWrap .proCardDesc {
    font-size: var(--font-18);
    font-weight: 600;
    color: var(--grey);
    margin: 17px 0 30px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.productCard .prodDetailWrap .prodPrice .discountedPrice {
    font-size: var(--font-22);
    font-weight: var(--figtree-black);
    color: var(--darkBlue);
    line-height: 22px;
    margin-right: 8px;
}

.productCard .prodDetailWrap .prodPrice .originalPrice {
    font-size: var(--font-12);
    font-weight: var(--figtree-bold);
    color: var(--normal-grey);
    line-height: 12px;
    text-decoration: line-through;
}

.productCard .prodDetailWrap .cardActions {
    margin-top: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.productCard .prodDetailWrap .cardActions .prodBtn {
    padding: 22px 65px;
    border-radius: 50px;
    font-size: var(--font-18);
    font-weight: var(--figtree-extrabold);
    line-height: 18px;
    color: var(--darkBlue);
    background-color: var(--light-grey);
}

.productCard:hover {
    border: 1px solid #BBBBBB;
}

.productCard .prodDetailWrap .cardActions .prodBtn:hover {
    background-color: var(--darkBlue);
    color: var(--white);
}

.productCard .prodDetailWrap .cardActions .addToCart {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--light-grey);
}

.productCard .addToCart img {
    filter: invert(1);
}

.productCard .addToCart:hover {
    background: linear-gradient(90deg, rgba(251, 133, 1, 1) 0%, rgba(255, 183, 3, 1) 57%);
}

.productCard .addToCart:hover img {
    filter: none;
}

.trendingProducts .swiper-controls {
    width: 75%;
    height: 18px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 115px 0 0 0;
}

.trendingProducts .swiper-controls .swiper-button-next,
.trendingProducts .swiper-controls .swiper-button-prev {
    position: relative;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.trendingProducts .swiper-controls .swiper-button-next::after,
.trendingProducts .swiper-controls .swiper-button-prev::after {
    font-weight: 600;
    font-size: 18px;
    filter: brightness(0.5);
}

.trendingProducts .swiper-controls .swiper-pagination {
    position: relative;
    background-color: var(--light-grey);
    height: 7px;
    border-radius: 50px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    top: -11px;
    overflow: hidden;
}

.trendingProducts .swiper-controls .swiper-pagination .swiper-pagination-bullet {
    margin: 0 !important;
    background-color: var(--light-grey);
    border-radius: 0;
    width: 50%;
}

.trendingProducts .swiper-controls .swiper-pagination .swiper-pagination-bullet-active {
    margin: 0 !important;
    border-radius: 10px;
    background-color: var(--darkBlue);
}

/* Categories Section */
.categoriesSection {
    padding: 120px 0;
    margin: 0 20px 120px 20px;
    border-radius: 50px;
    background-color: var(--darkBlue);
}

.categoriesSection .sectionTitle {
    font-size: var(--font-103);
    font-weight: 600;
    line-height: 103px;
    color: var(--white);
    margin-bottom: 65px;
    text-align: center;
}

.categoriesWrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 34px;
}

.categoryBox {
    display: flex;
    border-radius: 30px;
    position: relative;
    padding-left: 50px;
    padding-top: 50px;
    overflow: hidden;
    z-index: 1;
}

.categoryBox .catgTitle {
    font-size: var(--font-65);
    font-weight: 600;
    line-height: 55px;
    color: var(--white);
    margin-bottom: 30px;
}

.categoryBox .catgDesc {
    font-size: var(--font-18);
    font-weight: var(--figtree-semibold);
    line-height: 18px;
    color: var(--white);
}

.categoryBox.largest {
    width: 66%;
    min-height: 520px;
    max-height: 520px;
    height: 100%;
}

.categoryBox.largest .catgCol {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.categoryBox.smallest {
    width: 32%;
    min-height: 520px;
    max-height: 520px;
    height: 100%;
}

.categoryBox.medium {
    width: 48.9%;
    min-height: 425px;
    max-height: 425px;
    height: 100%;
}

.categoryBox .catgCol {
    width: 50%;
}

.categoryBox.smallest {
    padding-left: 0;
}

.categoryBox.smallest .catgCol {
    width: 70%;
    text-align: center;
    margin: 0 auto;
}

.categoryBox .catgImg {
    position: absolute;
    right: 0;
    z-index: -1;
}

.categoryBox.largest .catgImg {
    top: 30px;
    right: 30px;
}

.categoryBox.smallest .catgImg {
    bottom: -1px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.categoryBox.smallest .catgTitle {
    color: var(--darkBlue);
}

.categoryBox.medium.left .catgImg {
    bottom: -30px;
    right: -40px;
}

.categoryBox.medium.right .catgImg {
    top: -30px;
    right: 10px;
}

.categoryBox .iconBtn {
    width: fit-content;
    background-color: var(--darkBlue);
    margin-top: 40px;
}

.categoryBox .iconBtn:hover {
    background-color: var(--white);
    color: var(--darkBlue);
}

.categoryBox.smallest .iconBtn {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-color: var(--white);
    color: var(--darkBlue);
}

.categoryBox.medium.right .iconBtn {
    background-color: var(--white);
    color: var(--darkBlue);
}

.categoryBox.smallest .iconBtn:hover,
.categoryBox.medium.right .iconBtn:hover {
    background-color: var(--darkBlue);
    color: var(--white);
}


/* New Arrival Section */
.newArrivalSection {
    margin-bottom: 120px;
}

.newArrivalSection .sectionTitle {
    text-align: center;
    letter-spacing: -3px;
    margin-bottom: 45px;
}

.newArrivalSection .prodTabsWrapper ul {
    justify-content: center;
    gap: 10px;
    margin-bottom: 70px;
}

.newArrivalSection .prodTabsWrapper ul .nav-item button {
    padding: 20px 60px;
    border-radius: 44px;
    font-size: var(--font-16);
    font-weight: var(--figtree-medium);
    color: var(--black);
    border: 1px solid #7979794D;
}

.newArrivalSection .prodTabsWrapper ul .nav-item button.active {
    background: linear-gradient(90deg, rgba(251, 133, 1, 1) 0%, rgba(255, 183, 3, 1) 57%);
    border: none;
    font-weight: var(--figtree-bold);
    color: var(--white);
}

.newArrivalSection .prodTabsWrapper .tab-content .tab-pane .productsWrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 20px;
}

.newArrivalSection .prodTabsWrapper .tab-content .tab-pane .productCard {
    width: 24%;
}

.newArrivalSection .prodLoadCta {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.newArrivalSection .prodLoadCta .iconBtn {
    padding: 20px 90px;
}









/* Features Section */
.featuresSec {
    position: relative;
    z-index: 1;
    margin: 0 20px 120px 20px;
    background-color: var(--darkBlue);
    border-radius: 50px;
    padding: 120px 0;
}

.featuresSec .watermark {
    position: absolute;
    right: 5%;
    top: 25%;
    z-index: -1;
    width: 355px;
}

.featuresSec .secDetails {
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
}

.featuresSec .secDetails h3 {
    width: 40%;
    font-size: var(--font-103);
    color: var(--white);
    font-weight: 600;
    letter-spacing: -7px;
    line-height: 110px;
}

.featuresSec .secDetails .rightCol {
    width: 50.6%;
}

.featuresSec .secDetails .rightCol p {
    font-size: var(--font-18);
    font-weight: var(--figtree-medium);
    color: var(--white);
    margin-bottom: 50px;
}

.featuresSec .secDetails .rightCol .iconBtn {
    width: fit-content;
    padding: 20px 85px;
}

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

.featuresListWrap .featureBox {
    width: 23.4%;
    border-radius: 30px;
    background-color: var(--white);
    padding: 40px 30px;
    overflow: hidden;
}

.featuresListWrap .featureBox .featureIconBox {
    width: 85px;
    height: 85px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.featuresListWrap .featureBox .featureTitle {
    font-size: var(--font-28);
    font-weight: var(--figtree-extrabold);
    line-height: 30px;
    color: var(--darkBlue);
    margin-bottom: 32px;
}

.featuresListWrap .featureBox .featureDesc {
    font-size: var(--font-14);
    font-weight: var(--figtree-medium);
    line-height: 26px;
    color: var(--grey);
}

/* App Download Section */
.appDownloadSec {
    margin-bottom: 120px;
}

.appWrapper {
    position: relative;
    width: 100%;
    min-height: 460px;
    z-index: 1;
    display: flex;
    justify-content: space-between;
}

.appWrapper::before {
    content: "";
    position: absolute;
    bottom: 0;
    height: 420px;
    width: 100%;
    z-index: -1;
    border-radius: 40px;
    background: linear-gradient(90deg, rgba(251, 133, 1, 1) 0%, rgba(255, 183, 3, 1) 57%);
}

.appImg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 360px;
    height: 100%;
}

.appWrapper h4 {
    font-size: var(--font-55);
    font-weight: 600;
    color: var(--white);
    line-height: 62px;
    letter-spacing: -3px;
    width: 38%;
    padding: 120px 0 0 40px;
}

.appDesc {
    width: 30%;
    padding: 120px 40px 0 0;
}

.appDesc p {
    font-size: var(--font-18);
    color: var(--white);
    line-height: 30px;
    font-weight: var(--figtree-bold);
    margin-bottom: 60px;
}

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

.appDownloadLinks a {
    display: inline-block;
    width: 48%;
    overflow: hidden;
}

.appDownloadLinks a img {
    width: 100%;
}

/* Client Review Section */
.clientReviewSec {
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 120px;
}

.reviewWaterMark {
    position: absolute;
    left: 0;
    top: 0;
    width: 575px;
    z-index: -1;
}

.clientRatings {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 35px;
}

.clientRatings img {
    width: 110px;
    height: 46px;
}

.clientRatings span {
    color: var(--yellow);
}

.clientRatings p {
    font-size: var(--font-16);
    font-weight: var(--figtree-medium);
    color: #161616;
}

.clientReviewSec .secTitle {
    font-size: var(--font-65);
    font-weight: 600;
    line-height: 60px;
    color: var(--darkBlue);
    margin-bottom: 45px;
    text-align: center;
}

.clientReviewSec .secDesc {
    font-size: var(--font-18);
    font-weight: var(--figtree-medium);
    line-height: 32px;
    color: var(--grey);
    width: 64%;
    margin: 0 auto;
    text-align: center;
}

.reviewsWrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 65px;
    row-gap: 32px;
}

.reviewsWrapper .reviewBox {
    width: 31.6%;
    border-radius: 18px;
    background-color: #F2F2F2CC;
    padding: 32px;
}

.reviewer {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 22px;
}

.reviewer img {
    width: 53px;
    height: 53px;
    border-radius: 50%;
    object-fit: contain;
    object-position: center;
}

.reviewerDesc .name {
    font-size: var(--font-22);
    font-weight: var(--figtree-black);
    line-height: 22px;
    color: #161616;
}

.reviewerDesc .designation {
    font-size: var(--font-18);
    font-weight: var(--figtree-regular);
    line-height: 18px;
    color: #161616;
}

.reviewBox .review {
    font-size: var(--font-18);
    font-weight: var(--figtree-regular);
    color: var(--grey);
}

.clientReviewSec .iconBtn {
    width: fit-content;
    margin: 50px auto 0;
    padding: 20px 90px;
}

.clientReviewSec .iconBtn:hover {
    color: #ffffff;
}

/* Offer Products Sec */
.offerProductsSec {
    margin-bottom: 120px;
}

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

.offerProdWrap .leftCol,
.offerProdWrap .rightCol {
    position: relative;
    z-index: 1;
    width: 49.2%;
    overflow: hidden;
    border-radius: 40px;
    display: flex;
    align-items: center;
    height: 420px;
}

.offerProdWrap .leftCol::before,
.offerProdWrap .rightCol::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 380px;
    z-index: -1;
    border-radius: 40px;
}

.offerProdWrap .leftCol::before {
    background: linear-gradient(45deg, rgba(236, 28, 36, 1) 40%, rgba(255, 255, 255, 1) 100%);
}

.offerProdWrap .rightCol::before {
    background: linear-gradient(45deg, rgba(0, 0, 0, 1) 12%, rgba(255, 255, 255, 1) 100%);
}

.offerProdWrap .leftCol .offerProduct {
    position: absolute;
    right: 0;
    bottom: 0;
    transition: all 0.5s ease-in-out;
}

.offerProdWrap .rightCol .offerProduct {
    position: absolute;
    right: 0;
    bottom: 50px;
    transition: all 0.5s ease-in-out;
}

.offerProdWrap .leftCol:hover .offerProduct,
.offerProdWrap .rightCol:hover .offerProduct {
    transform: scale(1.1);
    bottom: -30px;
    transition: all 0.5s ease-in-out;
}

.contentWrap {
    width: 50%;
    padding-left: 50px;
}

.contentWrap .label {
    font-size: var(--font-18);
    font-weight: var(--figtree-bold);
    color: var(--white);
    text-transform: uppercase;
}

.contentWrap h6 {
    font-size: var(--font-45);
    line-height: 45px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -3px;
    margin: 10px 0 40px;
}

.contentWrap .iconBtn {
    width: fit-content;
}

.offerProdWrap .leftCol .contentWrap .iconBtn {
    background-color: var(--darkBlue);
}

.offerProdWrap .leftCol .contentWrap .iconBtn:hover {
    color: #ffffff;
}

.offerProdWrap .rightCol .contentWrap .iconBtn {
    color: var(--darkBlue);
    background-color: var(--white);
}

/* ============================= Sign Up Screen ==================== */
/* ================================================================= */

.signUpView {
    padding: 120px 0 230px 0;
    background-color: #f1f1f1;
}

.signUpWrapper {
    display: flex;
    border-radius: 45px;
    overflow: hidden;
}

.signUpWrapper .leftCol,
.signUpWrapper .rightCol {
    width: 50%;
}

.signUpWrapper .rightCol {
    height: 100%;
    background-color: #ffffff;
    padding: 70px 50px;
}

.signUpWrapper .leftCol img {
    width: 100%;
    height: 770px;
    padding: 70px 50px 70px 0;
}

.signUpWrapper .rightCol h1 {
    font-size: var(--font-65);
    font-weight: 600;
    line-height: 60px;
    color: var(--darkBlue);
    letter-spacing: -4px;
    text-align: center;
    margin-bottom: 25px;
}

.signUpWrapper .userOption {
    font-size: var(--font-22);
    font-weight: 600;
    line-height: 32px;
    color: var(--darkBlue);
    text-align: center;
    margin-bottom: 25px;
    color: var(--grey);
}

.signUpWrapper .userOption a {
    color: var(--primary);
    text-decoration: underline;
}

.signUpWrapper form {
    margin-top: 40px;
}

.signUpWrapper form input {
    width: 100%;
    padding: 25px 37px;
    border: 1px solid #ABABAB;
    border-radius: 85px;
    margin-bottom: 12px;
    font-size: var(--font-18);
    font-weight: 600;
    line-height: 18px;
    color: var(--darkBlue);
    background-color: var(--filter-grey);
}

.signUpWrapper form input:focus {
    border: 1px solid #FB8501;
}

.signUpWrapper form input::placeholder {
    color: var(--grey);
    font-weight: 400;
}

.passwordField {
    position: relative;
}

.passwordField img {
    position: absolute;
    top: 35%;
    right: 35px;
    cursor: pointer;
}

.fileUpload {
    background-color: #ffffff !important;
    border: 1px dashed #C3C3C3;
}

.termsCondition {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 32px;
}

.termsCondition input {
    width: auto !important;
    margin: 0 !important;
    transform: scale(1.6);
    border: 1px solid #000000;
}

.termsCondition label {
    font-size: var(--font-18);
    font-weight: 600;
    line-height: 18px;
    color: var(--black);
}

.termsCondition label a {
    color: var(--primary);
    text-decoration: underline;
}

.signUpWrapper .iconBtn {
    width: 100%;
    padding: 20px;
}

.registerBorder {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 25px 0;
}

.registerBorder::before,
.registerBorder::after {
    content: '';
    position: absolute;
    top: 50%;
    height: 1px;
    background-color: #7979794D;
    width: 35%;
}

.registerBorder::before {
    left: 0
}

.registerBorder::after {
    right: 0;
}

.registerBorder p {
    font-size: var(--font-18);
    line-height: 18px;
    color: var(--grey);
    font-weight: var(--figtree-regular);
    text-align: center;
}

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

.signUpWithOptions .iconBtn {
    width: 48%;
    background-color: #EFEFEF80;
    color: var(--darkBlue);
}

/* ============================= Login Screen ===================== */
/* ================================================================= */
.signUpView.loginView {
    padding: 120px 0;
}

.signUpView.loginView .leftCol img {
    height: 720px;
}

.signUpView.loginView .rightCol .userOption {
    margin-top: 40px;
}

.forgotPass {
    display: flex;
    justify-content: end;
    margin: 25px 0 40px;
    font-size: var(--font-14);
    font-weight: var(--figtree-semibold);
    color: var(--grey);
}

/* ============================= Forgot Password ============================ */
/* ========================================================================== */
.forgotPasswordWrapper {
    padding: 120px 0;
    background-color: #f1f1f1;
}

.forgotPassOption {
    width: 85.5%;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 30px;
    padding: 80px 115px;
}

.forgotPassOption h3 {
    font-size: var(--font-63);
    color: var(--darkBlue);
    font-weight: 600;
    line-height: 80px;
    letter-spacing: -3px;
    text-align: center;
}

.forgotPassOption p {
    font-size: var(--font-22);
    font-weight: var(--figtree-semibold);
    color: var(--grey);
    line-height: 36px;
    text-align: center;
}

.forgotPassOption form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 65px 0 30px;
}

.forgotPassOption form div {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    border: 1px solid #ABABAB;
    border-radius: 65px;
    padding: 25px 30px;
    background-color: var(--filter-grey);
}

.forgotPassOption form div:focus-within {
    border-color: #FB8501;
}


.forgotPassOption form div input {
    font-size: var(--font-18);
    font-weight: var(--figtree-regular);
    line-height: 32px;
    width: 95%;
}

.forgotPassOption form div img {
    cursor: pointer;
}

.forgotPassOption .iconBtn {
    width: 100%;
}

/* ============================= OTP SCreen ============================ */
/* ===================================================================== */

.credentialsWrapper {
    padding: 120px 0;
    background-color: #f1f1f1;
}

.credentialsRecoverBox {
    width: 85.5%;
    margin: 0 auto;
    border-radius: 30px;
    background-color: #ffffff;
    padding: 70px 115px;
}

.phoneCodeWrap {
    text-align: center;
}

.phoneCodeWrap h3 {
    font-size: var(--font-65);
    font-weight: 600;
    color: var(--darkBlue);
    letter-spacing: -2px;
    line-height: 60px;
    margin: 40px 0;
}

.phoneCodeWrap .iconBtn {
    width: 100%;
}

.phoneCodeWrap .otpInfo {
    font-size: var(--font-22);
    font-weight: var(--figtree-semibold);
    color: var(--grey);
    line-height: 36px;
    width: 81%;
    margin: auto;
}

.phoneCodeWrap .otpInfo button {
    color: var(--yellow);
}

.resendInfo {
    margin-top: 50px !important;
}

.phoneCodeWrap .otpCode {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin: 50px 0;
}

.phoneCodeWrap .otpCode input {
    width: 90px;
    height: 90px;
    border-radius: 15px;
    border: 1px solid #000000;
    font-size: 40px;
    text-align: center;
}

.phoneCodeWrap .otpCode input:focus,
.phoneCodeWrap .otpCode input:active {
    border: 1px solid #FB8501;
}

/* ============================= Seller Featured =================== */
/* ================================================================= */

.sellerFeaturedBanner {
    padding: 20px 20px 0 20px;
}

.sellerFeaturedBanner .sellerBanner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    z-index: 1;
    padding: 0 6%;
    max-height: 690px;
}

.sellerBanner .leftCol {
    width: 50%;
}

.sellerBanner .leftCol p {
    font-size: var(--font-25);
    font-weight: var(--figtree-semibold);
    color: var(--white);
}

.sellerBanner .leftCol h1 {
    font-size: var(--font-103);
    font-weight: 600;
    color: var(--white);
    letter-spacing: -6px;
    margin: 25px 0 50px;
    line-height: 100px;
}

.sellerBanner .leftCol div {
    display: flex;
    gap: 15px;
}

.sellerBanner .leftCol div a:first-of-type {
    color: #ffffff;
}

.sellerBanner .leftCol div a:last-of-type {
    color: #000000;
}

.sellerBanner .rightCol {}

.sellerBanner .rightCol img {
    width: 100%;
    height: 670px;
    object-fit: cover;
    object-position: center;
}

.bgVector {
    position: absolute;
    top: 0;
    right: 10%;
    z-index: -1;
}

.keyBenefitsSec {
    padding: 100px 0;
}

.keyBenefitsWrapper {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.keyBenefitsSec h3 {
    font-size: var(--font-65);
    font-weight: 600;
    color: var(--darkBlue);
    line-height: 70px;
    margin-bottom: 65px;
    text-align: center;
    letter-spacing: -3px;
}

.benefitBox {
    width: 22%;
    border-radius: 40px;
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--filter-grey);
}

.benefitBox .icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FB850126;
    margin-bottom: 35px;
}

.benefitBox .icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    object-position: center;
}

.benefitBox h4 {
    font-size: var(--font-25);
    font-weight: 600;
    color: var(--darkBlue);
    line-height: 37px;
    margin-bottom: 20px;
}

.benefitBox p {
    font-size: var(--font-14);
    font-weight: var(--figtree-medium);
    line-height: 24px;
    color: var(--dark-grey);
    text-align: center;
}

/* Sellers Video Slider */
.sellersVideoSection {
    position: relative;
    padding: 120px 0;
    margin: 0 20px 20px 20px;
    background-color: var(--darkBlue);
    border-radius: 50px;
}

.sellersVideoSection .secDesc {
    margin-bottom: 75px;
    text-align: center;
}

.sellersVideoSection .secDesc h3 {
    font-size: var(--font-65);
    font-weight: 600;
    line-height: 60px;
    letter-spacing: -2px;
    color: var(--white);
    margin-bottom: 35px;
}

.sellersVideoSection .secDesc p {
    font-size: var(--font-25);
    font-weight: 600;
    line-height: 35px;
    color: var(--white);
}

.videoWrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 420px;
    border-radius: 40px;
    background-color: #000000;
}

.videoWrapper video,
.videoWrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video {
    display: none;
}

.videoWrapper .play-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    font-size: 18px;
    cursor: pointer;
    z-index: 2;
}

.videoSlider .swiper-controls {
    width: 100%;
    height: 18px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 75px 0 0 0;
}

.videoSlider .swiper-controls .swiper-button-next,
.videoSlider .swiper-controls .swiper-button-prev {
    position: relative;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.videoSlider .swiper-controls .swiper-button-next::after,
.videoSlider .swiper-controls .swiper-button-prev::after {
    display: none;
}

.videoSlider .swiper-controls .swiper-pagination {
    position: relative;
    background-color: #FFFFFF21;
    height: 7px;
    border-radius: 50px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    top: -11px;
    overflow: hidden;
}

.videoSlider .swiper-controls .swiper-pagination .swiper-pagination-bullet {
    margin: 0 !important;
    background-color: #FFFFFF21;
    border-radius: 0;
    width: 50%;
}

.videoSlider .swiper-controls .swiper-pagination .swiper-pagination-bullet-active {
    margin: 0 !important;
    border-radius: 10px;
    background-color: var(--white);
}

.faqSection {
    padding: 100px 20px;
}

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

.faqWrapper .leftCol {
    width: 37%;
}

.faqWrapper .rightCol {
    width: 53%;
}

.faqWrapper h3 {
    font-size: var(--font-65);
    font-weight: 600;
    line-height: 60px;
    letter-spacing: -5px;
    color: var(--darkBlue);
    margin: 35px 0 65px 0;
    width: 80%;
}

.faqWrapper .leftCol .bottomImg {
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 40px;
}

.faqWrapper .rightCol .accordion .accordion-item {
    margin-bottom: 20px;
    background-color: #F3F3F3;
    border-radius: 30px;
}

.faqWrapper .rightCol .accordion .accordion-item .accordion-header button {
    position: relative;
    font-size: var(--font-22);
    font-weight: var(--figtree-black);
    line-height: 34px;
    color: #000000;
    padding: 25px 30px;
    width: 100%;
    text-align: left;
}

.faqWrapper .rightCol .accordion .accordion-item .accordion-header button span {
    position: absolute;
    right: 30px;
    top: 25px;
    width: 35px;
    height: 35px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
}

.faqWrapper .rightCol .accordion .accordion-item .accordion-header button.collapsed span {
    background-color: #fb8501;
}

.faqWrapper .rightCol .accordion .accordion-item .accordion-header button.collapsed span i {
    transform: rotate(45deg);
}

.faqWrapper .rightCol .accordion .accordion-item .accordion-header button span {
    background-color: #000000;
}

.faqWrapper .rightCol .accordion .content-body {
    padding: 0 30px 60px 30px;
}

.faqWrapper .rightCol .accordion .content-body p {
    font-size: var(--font-20);
    font-weight: var(--figtree-regular);
    line-height: 32px;
    color: #565656;
}


/* ============================= Seller SignUpScreen =============== */
/* ================================================================= */
.sellerAccountSection {
    padding: 120px 0;
    background-color: #f1f1f1;
}

.sellerAccountWrapper {
    width: 93.5%;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 30px;
    padding: 90px 115px;
}

.sellerAccountWrapper h1 {
    font-size: var(--font-65);
    color: var(--darkBlue);
    font-weight: 600;
    line-height: 80px;
    letter-spacing: -3px;
    text-align: center;
}

.sellerAccountWrapper .secDesc {
    font-size: var(--font-22);
    font-weight: var(--figtree-semibold);
    color: var(--grey);
    line-height: 36px;
    text-align: center;
}

.sellerAccountWrapper p a {
    color: var(--primary);
}

.sellerAccForm form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 20px;
    margin-top: 75px;
}

.sellerAccForm form .inputWrapper {
    width: 49%;
    border-radius: 85px;
    border: 1px solid #ABABAB;
    padding: 20px 30px;
    background-color: #F5F5F5;
    overflow: hidden;
}

.sellerAccForm form .inputWrapper:focus-within {
    border-color: #FB8501;
}

.sellerAccForm form .inputWrapper input,
.sellerAccForm form .inputWrapper select {
    width: 100%;
    font-size: var(--font-18);
    font-weight: var(--figtree-regular);
    line-height: 24px;
    color: var(--darkBlue);
}

.sellerAccForm form .inputWrapper input::placeholder {
    color: var(--darkBlue);
}

.sellerAccForm form .companyDetails,
.sellerAccForm form .uploadDocs,
.sellerAccForm form .passFields {
    width: 100%;
    background-color: #F5F5F5;
    padding: 20px 30px;
    border: 1px solid #ABABAB;
}

.sellerAccForm form .companyDetails:focus-within,
.sellerAccForm form .uploadDocs:focus-within,
.sellerAccForm form .passFields:focus-within {
    border-color: #FB8501;
}

.sellerAccForm form .companyDetails,
.sellerAccForm form .uploadDocs {
    border-radius: 25px;
}

.sellerAccForm form .companyDetails textarea {
    background-color: #F5F5F5;
    border: none;
    outline: none;
    box-shadow: none;
    resize: none;
    width: 100%;
    height: 250px;
    font-size: var(--font-18);
    font-weight: var(--figtree-regular);
    line-height: 24px;
    color: var(--darkBlue);
    /* border: 1px solid #ABABAB; */
}

.sellerAccForm form .uploadDocs {
    background-color: #F5F5F5;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.sellerAccForm form .passFields {
    position: relative;
    border-radius: 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sellerAccForm form .passFields input {
    width: 95%;
    font-size: var(--font-18);
    font-weight: var(--figtree-regular);
    line-height: 24px;
    color: var(--darkBlue);
}

.sellerAccForm form .iconBtn {
    width: 100%;
}

.formInfo {
    font-size: var(--font-18);
    font-weight: var(--figtree-regular);
    color: var(--grey);
    line-height: 24px;
}

.sellerAccForm form .termsCondition {
    margin: 20px 0;
}

/* ============================= Seller LoginScreen ================ */
/* ================================================================= */
.sellerAccountSection.sellerLoginWrapper .inputWrapper {
    width: 100%;
    border: none;
}

.conditionForgotPass {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sellerAccountSection.sellerLoginWrapper .userOption {
    text-align: center;
    width: 100%;
    font-size: var(--font-22);
    font-weight: 600;
    color: var(--grey);
}

/* ============================= OTP WAYS Screen =================== */
/* ================================================================= */

.otpWaysSection {
    padding: 120px 0;
}

.otpWrapper {
    width: 85.5%;
    margin: 0 auto;
}

.otpWrapper .tab-content {
    background-color: #ffffff;
    border-radius: 45px;
    padding: 70px 240px;
    box-shadow: 44px 34px 84px 0 rgba(0, 0, 0, 0.06);
}

.otpWrapper ul {
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
    overflow: hidden;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.otpWrapper ul .nav-item button {
    padding: 32px 100px;
    color: #7A7A7A80;
    font-size: var(--font-28);
    font-weight: 600;
    background-color: #E3E3E3;
    border-radius: 0px;
}

.otpWrapper ul .nav-item button.active {
    background-color: #002A4C;
    color: #ffffff;
}

.otpWrapper .tab-content .tab-pane {
    text-align: center;
}

.otpWrapper .tab-content .tab-pane h2 {
    font-size: var(--font-65);
    font-weight: 600;
    letter-spacing: -3px;
    margin: 40px 0;
}

.otpWrapper .tab-content .tab-pane .iconBtn {
    width: 100%;
}

/* Phone Field Css Starts*/
.phone-field {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    background: #F5F5F5;
    border: 1px solid #ABABAB;
    border-radius: 44px;
    padding: 16px 22px;
    transition: border .15s ease, box-shadow .15s ease;
    margin-bottom: 35px;
}

.phone-field:focus-within {
    border: 1px solid #FB8501;
}

.phone-field .country-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 0;
    background: transparent;
    border-radius: 100%;
    cursor: pointer;
    color: #0a2a3a;
    font-weight: 700;
}

.flag {
    font-size: 20px;
    line-height: 1;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .04) inset;
}

.phone-field .country-btn .caret {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #0a2a3a;
    margin-left: 2px;
}

.divider {
    height: 28px;
    width: 1px;
    background: #cfd7e3
}

.tel {
    flex: 1;
    border: 0;
    background: transparent;
    outline: none;
    font-size: 20px;
    color: #4a5568;
}

.tel::placeholder {
    color: #a0aec0
}

.clear-btn {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 6px;
    line-height: 1;
    color: var(--brand);
    opacity: .9;
}

.clear-btn:hover {
    opacity: 1
}

.clear-btn svg {
    width: 18px;
    height: 18px
}

.phone-field .dropdown {
    position: absolute;
    left: 14px;
    top: 100%;
    margin-top: 10px;
    width: 150px;
    max-height: 300px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #e3e8f2;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(9, 18, 31, .12);
    display: none;
    z-index: 10;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.phone-field .dropdown::-webkit-scrollbar {
    display: none;
}

.phone-field .dropdown.open {
    display: block
}

.phone-field .list {
    list-style: none;
    margin: 0;
    padding: 6px
}

.phone-field .item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
}

.phone-field .item:hover {
    background: var(--hover)
}

.phone-field .name {
    flex: 1
}

.phone-field .code {
    font-weight: 700;
    color: #1b3651
}

.phone-field .muted {
    color: var(--muted);
    font-size: 12px
}

/* Phone Field Css Ends*/

.otpWrapper .emailWay input {
    width: 100%;
    border-radius: 90px;
    border: 1px solid #ABABAB;
    background-color: #F5F5F5;
    padding: 30px;
    font-size: var(--font-22);
    font-weight: var(--figtree-semibold);
    color: #4F4F4F;
    margin-bottom: 35px;
}

.otpWrapper .emailWay input:focus {
    border: 1px solid #fb8501;
}

/* ============================= Shop Listing Page ============================ */
/* ============================================================================ */
.shopListingSection {
    padding: 20px 20px 0 20px;
}

.shopBanner .firstSlide {
    background: url(../images/first-bnr-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
    height: 500px;
    overflow: hidden;
    border-radius: 30px;
    padding: 35px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 110px;
}

.shopBanner .firstSlide .leftCol {
    width: 26%;
}

.shopBanner .firstSlide .rightCol {
    width: 45%;
}

.shopBanner .firstSlide .leftCol img,
.shopBanner .firstSlide .rightCol img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.shopBanner .swiper-pagination {
    bottom: 50px !important;
    text-align: center !important;
}

.shopBanner .swiper-pagination-bullet {
    background-color: #ffffff66;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
    opacity: 1;
}

.shopBanner .swiper-pagination-bullet-active {
    width: 42px !important;
    background-color: #ffffff;
    border-radius: 40px !important;
}

.shopProdFilterSec {
    padding: 90px 0 120px;
}

.shopProdFilterSec .productSearchWrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.productSearchWrap .breadcrumbs {
    width: 23.6%;
    display: flex;
    gap: 20px;
}

.productSearchWrap .breadcrumbs a {
    font-size: var(--font-22);
    font-weight: var(--figtree-regular);
    color: #4F4F4F
}

.productSearchWrap .breadcrumbs a.active {
    font-weight: var(--figtree-bold);
}

.productSearchWrap .breadcrumbs i {
    display: inline-flex;
    align-items: center;
}

.productSearchWrap .prodSearchFilter {
    width: 74.6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.productSearchWrap .prodSearchFilter .prodSearch {
    width: 79%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 22px;
    background-color: #F5F5F5;
    border-radius: 60px;
    overflow: hidden;
}

.productSearchWrap .prodSearchFilter .prodSearch input::placeholder {
    color: #797979;
}

.productSearchWrap .prodSearchFilter .prodSearch input {
    font-size: var(--font-16);
    font-weight: var(--figtree-medium);
    color: #000000;
    width: 95%;
}

.productSearchWrap .prodSearchFilter .prodSearch img {
    width: 20px;
    cursor: pointer;
}

.productSearchWrap .prodSearchFilter .selectProd {
    width: 19%;
    padding: 20px 22px;
    background-color: #F5F5F5;
    border-radius: 60px;
}

.productSearchWrap .prodSearchFilter select {
    width: 100%;
    font-size: var(--font-16);
    font-weight: var(--figtree-medium);
    color: #000000;
}

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

.prodFilterWrapper .filtersWrap {
    width: 23.6%;
}

.filtersWrap .filterBox {
    border-radius: 28px;
    background-color: #002A4C;
    padding: 30px 0;
}

.filtersWrap .filterBox .title {
    padding: 0 0 30px 40px;
    font-size: var(--font-28);
    font-weight: var(--figtree-bold);
    color: #ffffff;
    border-bottom: 1px solid #ffffff;
}

.filterBox .accordion-item {
    background: transparent;
    border: none;
}

.filterBox .accordion-item .accordion-button {
    font-size: var(--font-18);
    font-weight: var(--figtree-semibold);
    color: #ffffff;
    background-color: transparent;
    border-top: 1px solid #ffffff;
    padding: 28px 40px;
    box-shadow: none;
}

.filterBox .accordion-item .accordion-button::after {
    filter: invert(1);
    width: 15px;
    height: 15px;
    background-size: 15px;
}

.filterBox .accordion-item .accordion-button span {
    font-weight: var(--figtree-regular);
    margin-left: 10px;
}

.filterBox .accordion-item .accordion-button:not(.collapsed) {
    font-weight: var(--figtree-black);
    background-color: #FFFFFF1A;
    border: none;
    box-shadow: none;
}

.filterBox .accordion-item .subCatgBtn {
    font-size: var(--font-14);
    font-weight: 700;
    color: #ffffff;
}

.filterBox .accordion-item .subCatgBtn.accordion-button {
    padding: 24px 0;
    border: none;
    background: transparent;
}

.filterBox .accordion-item .accordion-body {
    color: #ffffff;
    padding: 30px 40px;
}

.filterBox .accordion-body .accordion-body {
    padding: 20px 0 20px 15px;
}

.filterBox .accordion-body .form-check {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filterBox .accordion-body .catgCheck input {
    border: 1px solid #A9A9A9;
    background-color: transparent;
    box-shadow: none;
    width: 12px;
    height: 12px;
    margin-top: -1px;
}

.filterBox .accordion-body .catgCheck label {
    font-size: 14px;
    font-weight: var(--figtree-medium);
    color: #A9A9A9;
}

.prodFilterWrapper .productsGrid {
    width: 74.6%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 20px;
}

.prodFilterWrapper .productsGrid .productCard {
    width: 31.5%;
}

.filterBox.pricingFilter {
    margin: 15px 0px;
    padding: 30px 40px;
}

.filterBox.pricingFilter .title {
    padding-left: 0px;
}

.pricingFilter .labelCurrency {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.pricingFilter .labelCurrency .label {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
}

.pricingFilter .labelCurrency .currency select {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
}

.pricingFilter .labelCurrency .currency select option {
    font-size: 14px;
    color: #000000;
}

.pricingFilter .rangeValues {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.pricingFilter .rangeValues span {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

.rangeText {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    margin-top: 20px;
}

/*************** Range Slider *************************/

.pricingFilter .sliderWrap input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
}

/* WebKit track */
.pricingFilter .sliderWrap input[type="range"]::-webkit-slider-runnable-track {
    height: 12px;
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(251, 133, 1, 1) 0%, rgba(255, 183, 3, 1) 57%) 0 / var(--percent) 100% no-repeat, #7B7B7B;
}

/* WebKit thumb */
.pricingFilter .sliderWrap input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #bf862c;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .25);
    margin-top: -5px;
    cursor: pointer;
}

/* Firefox track and progress */
.pricingFilter .sliderWrap input[type="range"]::-moz-range-track {
    height: 12px;
    border-radius: 8px;
    background: #8b8f94;
}

.pricingFilter .sliderWrap input[type="range"]::-moz-range-progress {
    height: 12px;
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(251, 133, 1, 1) 0%, rgba(255, 183, 3, 1) 57%);
}

.pricingFilter .sliderWrap input[type="range"]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #bf862c;
    cursor: pointer;
}

.filterBox.brandsFilter .title {
    border-bottom: 0px;
}

.brand-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 0 20px 40px;
    cursor: pointer;
    border-top: 1px solid #ffffff;
}

.brand-option:hover {
    border-top: 1px solid #002A4C;
    background-color: #FFFFFF1A;
}


.brand-radio {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.85);
    background: transparent;
    display: inline-grid;
    place-content: center;
    flex: 0 0 auto;
    position: relative;
}

/* inner dot */
.brand-radio::after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 140ms ease;
    background: linear-gradient(90deg, rgba(251, 133, 1, 1) 0%, rgba(255, 183, 3, 1) 57%);
}

.brand-radio:checked {
    background-color: transparent !important;
    border-color: #ffffff !important;
}

.brand-radio:checked::after {
    transform: scale(1);
}

.brand-radio:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 183, 3, 0.35);
}

.brand-radio:disabled {
    opacity: .45;
    cursor: not-allowed;
}

.brand-option .brand-text {
    font-size: 18px;
    font-weight: 900;
    color: #ffffff;
}

.brand-option .brand-text .count {
    font-weight: 400;
}

.advertiseImg {
    width: 100%;
    height: 325px;
    border-radius: 20px;
    object-fit: cover;
    object-position: center;
    margin-top: 15px;
}




/* ============================= Product Detail SCreen ============================ */
/* ================================================================================ */

.prodDetailWrapper {
    padding: 70px 0 120px;
}

.prodDetailWrapper .breadcrumbWrapper .pageInfo {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breadcrumbWrapper .pageInfo .breadcrumbs {
    display: flex;
    gap: 20px;
}

.breadcrumbWrapper .pageInfo .breadcrumbs a {
    font-size: var(--font-18);
    font-weight: var(--figtree-regular);
    color: #4F4F4F
}

.breadcrumbWrapper .pageInfo .breadcrumbs a.active {
    font-weight: var(--figtree-bold);
}

.breadcrumbWrapper .pageInfo .breadcrumbs i {
    display: inline-flex;
    align-items: center;
}

.prodDetailWrapper .breadcrumbWrapper .shrareOpt {
    width: 24px;
    height: 24px;
}

.prodDetailWrapper .breadcrumbWrapper .shrareOpt img {
    width: 100%;
    height: 24px;
    object-fit: contain;
    object-position: center;
}

.productDetailWrap {
    width: 100%;
    padding: 50px 0px;
    /* padding: 50px 30px; */
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.productDetailWrap .prodProfile {
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
}

.productDetailWrap .thumbSliderWrapper {
    width: 470px;
}

.productDetailWrap .thumbSliderWrapper .main-swiper img {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 25px;
    height: 515px;
}

.productDetailWrap .thumbSliderWrapper .thumbs-swiper {
    margin-top: 15px;
}

.productDetailWrap .thumbSliderWrapper .thumbs-swiper img {
    width: 105px;
    height: 90px;
    border-radius: 15px;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
}

.productDetailWrap .ratingDescQtyBox {
    width: 37%;
}

.ratingDescQtyBox .ratingReviews {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.ratingDescQtyBox .ratingReviews .rating {
    display: flex;
    gap: 10px;
}

.ratingDescQtyBox .ratingReviews .rating div span {
    font-size: 12px;
    color: var(--yellow);
}

.ratingDescQtyBox .ratingReviews .rating .rating p {
    font-size: var(--font-22);
    font-weight: var(--figtree-semibold);
    color: var(--white);
}

.ratingDescQtyBox .prodName {
    font-size: var(--font-25);
    font-weight: var(--figtree-bold);
    color: var(--darkBlue);
    line-height: 35px;
    margin-bottom: 20px;
}

.ratingDescQtyBox .prodExcerpt {
    font-size: var(--font-18);
    font-weight: var(--figtree-medium);
    color: #4F4F4F;
    margin-bottom: 30px;
}

.ratingDescQtyBox .prodPrice {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ratingDescQtyBox .prodPrice .currenyOption {
    padding: 8px 12px;
    border-radius: 60px;
    background-color: #F5F5F5;
}

.ratingDescQtyBox .prodPrice .currenyOption select {
    font-size: var(--font-14);
    font-weight: var(--figtree-medium);
    color: var(--darkBlue);
}

.ratingDescQtyBox .prodPrice .discountedPrice {
    font-size: 32px;
    font-weight: var(--figtree-black);
    color: var(--darkBlue);
}

.ratingDescQtyBox .prodPrice .originalPrice {
    font-size: var(--font-16);
    font-weight: var(--figtree-extrabold);
    color: #ACACAC;
    text-decoration: line-through;
}

.ratingDescQtyBox .qtyPayment {
    padding: 16px 0;
    border-top: 1px solid #7979794D;
    border-bottom: 1px solid #7979794D;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.ratingDescQtyBox .qtyPayment .divider {
    width: 2px;
    background-color: #7979794D;
}

.prodQty,
.paymentOpt {
    display: flex;
    align-items: center;
}

.prodQty .label {
    font-size: var(--font-16);
    font-weight: var(--figtree-bold);
    color: var(--darkBlue);
    margin-right: 10px;
}

.prodQty .counter {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    padding: 13px 18px;
    border-radius: 60px;
    background-color: #F5F5F5;
}

.prodQty .counter button {
    font-size: var(--font-18);
    font-weight: var(--figtree-medium);
    color: var(--darkBlue);
}

.prodQty .counter input {
    font-size: var(--font-14);
    font-weight: var(--figtree-medium);
    color: var(--darkBlue);
    width: 40px;
    text-align: center;
    border-left: 2px solid #CDCDCD;
    border-right: 2px solid #CDCDCD;
}

.prodQty .counter input[type=number]::-webkit-inner-spin-button,
.prodQty .counter input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.prodQty .counter input[type=number] {
    -moz-appearance: textfield;
}

.prodQty .paymentWays {
    display: flex;
    gap: 10px;
}

.ratingDescQtyBox .qtyPayment .paymentWays img {}

.ratingDescQtyBox .btnWrapper {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
}

.ratingDescQtyBox .skuBrandCatg {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.ratingDescQtyBox .skuBrandCatg .label {
    font-size: 14px;
    font-weight: 700;
    color: #4F4F4F;
}

.ratingDescQtyBox .skuBrandCatg .value {
    font-size: 14px;
    font-weight: 500;
    color: #4F4F4F;
}

.ratingDescQtyBox .shareSocial {
    display: flex;
    gap: 10px;
    align-items: center;
}

.ratingDescQtyBox .shareSocial .label {
    font-size: 14px;
    font-weight: 500;
    color: #4F4F4F;
}

.ratingDescQtyBox .shareSocial p {
    display: flex;
    gap: 10px;
}

.ratingDescQtyBox .shareSocial p span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #002A4C1A;
    color: var(--darkBlue);
    flex-shrink: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

.ratingDescQtyBox .shareSocial p span:hover {
    background-color: #FB8501;
    color: #ffffff;
}

.productDetailWrap .prodDeliveryOpt {
    width: 25%;
    background-color: #F5F5F5;
    border-radius: 20px;
    padding: 30px 25px;
}

.productDetailWrap .prodDeliveryOpt .label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--darkBlue);
    margin-bottom: 30px;
}

.productDetailWrap .prodDeliveryOpt .label .instruction {
    width: 20px;
    height: 20px;
    border: 1px solid #000000;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.productDetailWrap .prodDeliveryOpt .deliveryInfo .info {
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #C8C8C899;
}

.productDetailWrap .prodDeliveryOpt .deliveryInfo .info div {
    display: flex;
    gap: 10px;
}

.productDetailWrap .prodDeliveryOpt .deliveryInfo .info div img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    object-position: center;
}

.productDetailWrap .prodDeliveryOpt .deliveryInfo .info div p {
    font-size: 16px;
    font-weight: 500;
    color: #4F4F4F;
}

.productDetailWrap .prodDeliveryOpt .deliveryInfo .info a {
    font: var(--font-14);
    color: #0B76BA;
    font-weight: 700;
}

.appDownloadWrapper .qrWrapper img {
    height: 95px;
    object-fit: cover;
    object-position: center;
    margin-bottom: 12px;
}

.appDownloadWrapper {
    padding: 20px;
    background-color: #ffffff;
    border-radius: 15px;
    display: flex;
    gap: 15px;
}

.appDownloadWrapper .appLinksWrap {
    display: flex;
    gap: 5px;
}

.appDownloadWrapper p {
    font-size: var(--font-12);
    font-weight: 500;
    color: #4F4F4F;
}

.appDownloadWrapper .downloadInfo p {
    margin: 12px 0 25px;
}

.appDownloadWrapper .divider {
    height: auto;
}

.prodDescriptionWrap ul {
    gap: 0 !important;
    margin-bottom: 50px !important;
}

.prodDescriptionWrap .nav-link {
    font-size: var(--font-22);
    font-weight: 600;
    color: #4F4F4F !important;
    padding: 0 100px 30px 100px;
    background-color: transparent !important;
    border-radius: 0px;
}

.prodDescriptionWrap .nav-link.active {
    border-bottom: 2px solid #fb8501;
}

.prodDescriptionWrap .tab-content p {
    margin-bottom: 20px;
    font-size: var(--font-18);
    font-weight: 500;
    color: #4F4F4F;
}


/* ============================= Cart SCreen ====================================== */
/* ================================================================================ */

.cartWrapper {
    padding: 80px 0 120px;
}

.cartItemsWrapper {
    padding: 50px 0;
    display: flex;
    justify-content: space-between;
}

.cartItemsWrapper .cartItemsTable {
    width: 65.75%;
}

.cartItemsTable .secTitle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.cartItemsTable .secTitle h1 {
    font-size: var(--font-45);
    font-weight: 600;
    color: var(--darkBlue);
    line-height: 60px;
    letter-spacing: -3px;
}

.cartItemsTable .secTitle h6 {
    font-size: var(--font-22);
    font-weight: 600;
    color: var(--darkBlue);
    line-height: 30px;
    letter-spacing: -1px;
}

.cartItemsWrapper .cartItemsTable .cartTableHead {
    background-color: var(--darkBlue);
    padding: 20px 18px;
    border-radius: 35px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.cartItemsWrapper .cartItemsTable .cartTableHead div {
    width: 15%;
}

.cartItemsWrapper .cartItemsTable .cartTableHead .prodTitleHead {
    width: 25%;
}

.cartItemsWrapper .cartItemsTable .cartTableHead h5 {
    font-size: var(--font-16);
    font-weight: var(--figtree-bold);
    line-height: 24px;
    color: #ffffff;
}

.cartTableBody .dataRow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #F5F5F5;
    padding: 14px 18px;
    border-radius: 25px;
    margin-bottom: 25px;
}

.dataRow div {
    width: 15%;
}

.dataRow .prodTitleValue {
    width: 25%;
}

.cartTableBody .dataRow img {
    width: 130px;
    height: 95px;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
}

.cartTableBody .dataRow .rowProdTitle {
    font-size: var(--font-14);
    font-weight: var(--figtree-semibold);
    color: #4F4F4F;
}

.cartTableBody .dataRow .prodQty .counter {
    background-color: #ffffff;
    width: 100%;
}

.cartTableBody .dataRow .cartItemTotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cartTableBody .dataRow .cartItemPrice {
    font-size: 18px;
    font-weight: 700;
    color: #4F4F4F;
}

.cartTableBody .dataRow .cartItemTotal p {
    font-size: 18px;
    font-weight: 900;
    color: var(--darkBlue);
}

.cartTableBody .dataRow .cartItemTotal span {
    color: #C04449;
}

.cartItemsWrapper .orderSummaryWrapper {
    width: 32%;
    border-radius: 30px;
    padding: 40px 0;
}

.orderSummaryWrapper h2 {
    font-size: var(--font-45);
    font-weight: 600;
    color: #ffffff;
    line-height: 60px;
    margin-bottom: 40px;
    padding: 0 30px;
    letter-spacing: -3px;
}

.orderSummaryWrapper .label {
    padding: 20px 30px;
    background-color: #FFFFFF42;
    font-size: var(--font-22);
    font-weight: var(--figtree-semibold);
    color: #ffffff;
    margin-bottom: 32px;
}

.orderSummaryWrapper .subTotal {
    margin: 0 30px 25px 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.orderSummaryWrapper .subTotal .tag {
    font-size: var(--font-18);
    font-weight: 600;
    color: #ffffff;
}

.orderSummaryWrapper .subTotal .value {
    font-size: var(--font-22);
    font-weight: var(--figtree-black);
    color: #ffffff;
}

.orderSummaryWrapper .deliveryMethod {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    padding: 0 30px;
}

.deliveryMethod .tag {
    font-size: var(--font-18);
    font-weight: 600;
    color: #ffffff;
}

.deliveryMethod .deliveryOptions label {
    font-size: var(--font-16);
    font-weight: var(--figtree-semibold);
    color: var(--white);
}

.deliveryMethod .deliveryOptions .form-check {
    margin-bottom: 25px;
}

.deliveryOptions .form-check-input.custom-radio {
    width: 14px;
    height: 14px;
    border: 2px solid #d2b07e;
    background-color: #f7dfb9;
    margin-right: 10px;
    cursor: pointer;
}

.deliveryOptions .form-check-input.custom-radio:checked {
    background-color: #fff;
    border-color: #000;
    background-image: radial-gradient(#000 10%, transparent 31%);
}

.deliveryOptions .form-check-label {
    cursor: pointer;
}

.orderSummaryWrapper .deliveryMethodBox {
    background-color: #ffffff;
    border-radius: 25px;
    padding: 24px;
    margin: 0 30px;
}

.orderSummaryWrapper .deliveryMethodBox div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.orderSummaryWrapper .deliveryMethodBox div .tag {
    font-size: var(--font-18);
    font-weight: 600;
    color: #000000;
}

.orderSummaryWrapper .deliveryMethodBox div a {
    font-size: var(--font-18);
    font-weight: 700;
    color: #FB8501;
}

.orderSummaryWrapper .deliveryMethodBox .conditionText {
    font-size: var(--font-12);
    font-weight: var(--figtree-medium);
    color: #000000;
    text-align: right;
}

.orderSummaryWrapper .totalPrice {
    margin-bottom: 50px;
}

.orderSummaryWrapper .totalPrice .subTotal {
    border-bottom: none;
    padding-bottom: 0;
    padding-top: 30px;
    border-top: 1px solid #ffffff;
    margin: 30px 30px 0 30px
}

.orderSummaryWrapper .promoCodeForm {
    background: #ffffff;
    border-radius: 50px;
    padding: 10px 10px 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin: 30px 30px 50px 30px;
    border: 1px solid #002A4C;
}

.orderSummaryWrapper .promoCodeForm input {
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    color: var(--darkBlue);
}

.orderSummaryWrapper .promoCodeForm input::placeholder {
    color: #ACACAC;
}

.orderSummaryWrapper .promoCodeForm .iconBtn {
    padding: 15px 35px;
}

.orderSummaryWrapper .afterPromoCost .label {
    padding: 20px 30px;
    background-color: #FFFFFF42;
    font-size: var(--font-22);
    font-weight: var(--figtree-black);
    color: #ffffff;
    margin-bottom: 32px;
    display: flex;
    justify-content: space-between;
}

.orderSummaryWrapper .checkOutLink {
    margin: 0 30px;
}

.orderSummaryWrapper .checkOutLink .iconBtn {
    width: 100%;
}
.orderSummaryWrapper .checkOutLink:hover {
    color: #ffffff;
}
.shoppingLink a {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--darkBlue);
}

.customerDetailWrapper form {
    padding: 0 30px;
}

.customerDetailWrapper form .formFields {
    background-color: #ffffff;
    border-radius: 55px;
    padding: 25px 35px;
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 400;
    color: #4F4F4F;
    border: 1px solid #002A4C;
}

.customerDetailWrapper form .formFields input,
.customerDetailWrapper form .formFields select {
    width: 100%;
}

.customerDetailWrapper form textarea {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 25px 35px;
    margin-bottom: 18px;
    width: 100%;
    resize: none;
    font-size: 18px;
    font-weight: 400;
    color: #4F4F4F;
}

.customerDetailWrapper .deliveryMethod {
    margin: 0;
    padding: 0;
}

.customerDetailWrapper .deliveryMethod .deliveryOptions label {
    font-size: 14px;
}

.customerDetailWrapper .fileUploader {
    position: relative;
    border: 1px dashed #ffffff;
    width: 100%;
    border-radius: 20px;
    background-color: transparent;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.customerDetailWrapper .fileUploader input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    opacity: 0;
}

.iconLayer {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.iconLayer img {
    max-width: 30px;
}

.iconLayer p {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
}

.customerDetailWrapper .tag {
    font-size: 18px;
    font-weight: 900;
    color: #ffffff;
    margin: 20px 0;
}

.customerDetailWrapper .deliveryMethod .deliveryOptions.paymentWays {
    width: 100%;
    margin-bottom: 30px;
}

.customerDetailWrapper .deliveryMethod .deliveryOptions.paymentWays .form-check {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.deliveryMethod .deliveryOptions.paymentWays .form-check .cardImgs {
    display: flex;
    gap: 10px
}

.deliveryMethod .deliveryOptions.paymentWays .form-check .cardImgs span {
    width: 60px;
    height: 35px;
    border-radius: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
}

.customerDetailWrapper .iconBtn {
    width: 100%;
}

.checkOutFinalStep {
    margin-top: 20px;
}

.checkOutFinalStep p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid #7979794D;
}

.checkOutFinalStep p .label {
    font-size: 22px;
    font-weight: 800;
    color: var(--darkBlue);
}

.checkOutFinalStep p .value {
    font-size: 22px;
    font-weight: 600;
    color: #4F4F4F;
}

.checkOutFinalStep p .amountToPay {
    font-weight: 900;
}


/* ============================= Customer Profile Screen ============================ */
/* ================================================================================== */

.userProfileWrapper {
    padding: 80px 0 120px;
}

.profileWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #7979794D;
    padding-bottom: 50px;
}

.profileWrapper .profileBox {
    width: 60%;
    display: flex;
    align-items: center;
    gap: 30px;
}

.profileWrapper .profileBox .editProfile {
    display: none;
}

.profileWrapper .profileBox .avatar {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.profileWrapper .profileBox .avatar .userImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.profileWrapper .profileBox .avatar span {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    background: #ffffff;
    color: #000000;
}

.profileWrapper .profileBox .welcomeMsg h1 {
    font-size: var(--font-65);
    font-weight: 600;
    color: var(--darkBlue);
    margin-bottom: 30px;
    line-height: 50px;
    letter-spacing: -2px;
}

.profileWrapper .profileBox .welcomeMsg p {
    font-size: 25px;
    font-weight: 600;
    color: var(--grey);
}

.profileWrapper .profileSettings {
    width: 20.5%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.profileWrapper .profileSettings .iconBtn {
    width: 100%;
    padding: 20px 0 !important;
}

.userProfileTabsWrapper {
    margin-top: 35px;
}

.userProfileTabsWrapper .nav-pills {
    margin-bottom: 50px;
    justify-content: space-between;
}

.userProfileTabsWrapper .nav-pills .nav-item {
    width: 24%;
}

.userProfileTabsWrapper .nav-pills button {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 45px;
    background-color: #ffffff;
    box-shadow: 0 0 5px 0px #00000020;
    padding: 14px 0 14px 20px;
}

.userProfileTabsWrapper .nav-pills button.active {
    background-color: var(--darkBlue);
}

.userProfileTabsWrapper .nav-pills button span {
    font-size: 18px;
    font-weight: 500;
    color: #4F4F4F;
}

.userProfileTabsWrapper .nav-pills button img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    object-position: center;
}

.userProfileTabsWrapper .nav-pills button.active span {
    color: #ffffff !important;
}

.userProfileTabsWrapper.tab-content {
    background-color: #ffffff;
    border-radius: 45px;
    padding: 60px 30px;
}

.tabContentTitle {
    font-size: var(--font-45);
    font-weight: 600;
    color: var(--darkBlue);
    letter-spacing: -3px;
}

.tabContentHead {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.tabContentHead .iconBtn {
    color: var(--darkBlue);
    border: 2px solid #002A4C;
    padding: 12px 40px;
}

.currentReturnOrders .nav-pills {
    justify-content: start;
    border-bottom: 1px solid #7979794D;
}

.currentReturnOrders .nav-pills .nav-item {
    width: auto;
}

.currentReturnOrders ul li button {
    background-color: transparent;
    border-radius: 0px !important;
    box-shadow: none !important;
    padding: 0 15px 25px 15px !important;
    font-size: 22px;
    font-weight: 500;
    color: #4F4F4F;
}

.currentReturnOrders ul li button:hover {
    color: #4F4F4F !important;
}

.currentReturnOrders .nav-pills button.active {
    background-color: transparent;
    color: #FB8501;
    border-bottom: 2px solid #FB8501;
    border-radius: none !important;
    box-shadow: none !important;
}

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

.ordersVerticalTabsWrapper .nav {
    width: 35%;
    border-radius: 30px;
    padding: 45px 0;
    background-color: #002A4C;
}

.ordersVerticalTabsWrapper .nav h3 {
    font-size: var(--font-45);
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -3px;
    line-height: 35px;
    margin-bottom: 40px;
    padding: 0 45px;
}

.ordersVerticalTabsWrapper .nav button {
    position: relative;
    background-color: transparent;
    padding: 35px 45px;
    border-top: 1px solid #7E7D7D !important;
    border-radius: 0px !important;
    display: flex;
    justify-content: space-between;
    color: #ffffff !important;
}

.ordersVerticalTabsWrapper .nav-pills button.active {
    color: #ffffff !important;
    border: none;
}

.ordersVerticalTabsWrapper .nav-pills button.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    width: 7px;
    height: 85px;
    background-color: #FB8501;
}

.ordersVerticalTabsWrapper .nav button .orderValues {
    text-align: left;
}

.ordersVerticalTabsWrapper .nav button .orderValues p {
    font-size: var(--font-22);
    font-weight: var(--figtree-black);
    margin-bottom: 20px;
    line-height: 20px;
}

.ordersVerticalTabsWrapper .nav button .orderValues span {
    font-size: var(--font-14);
    font-weight: var(--figtree-medium);
    color: #BDBDBD
}

.ordersVerticalTabsWrapper .nav button .orderStatus {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 30px;
}

.ordersVerticalTabsWrapper .nav button .orderStatus p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
}

.ordersVerticalTabsWrapper .nav button .orderStatus p .status {
    color: #FB8501 !important;
}

.ordersVerticalTabsWrapper .nav button .orderStatus p .status.green {
    color: #4B9771 !important;
    font-size: 18px;
}

.ordersVerticalTabsWrapper .nav button .orderStatus p .status.red {
    color: #EC1C24 !important
}

.ordersVerticalTabsWrapper .nav button .orderStatus p img {
    width: 20px;
    height: 14px;
    object-fit: contain;
    object-position: center;
}

.ordersVerticalTabsWrapper .nav button .orderStatus .statusbar {
    width: 80px;
}

.ordersVerticalTabsWrapper .tab-content {
    width: 61.5%;
}

.selectedOrderItems {
    background-color: #F5F5F5;
    padding: 30px;
    border-radius: 30px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

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

.orderHeader .title {
    display: flex;
    align-items: center;
}

.orderHeader .title h5 {
    font-size: var(--font-45);
    font-weight: 600;
    color: #002A4C;
    letter-spacing: -3px;
}

.orderHeader .title .counter {
    font-size: var(--font-22);
    font-weight: var(--figtree-regular);
    color: #4F4F4F;
    margin-left: 10px;
}

.orderHeader .status {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FB8501;
    font-size: var(--font-18);
    font-weight: var(--figtree-medium);
}

.orderHeader .status img {
    max-width: 20px;
    height: 14px;
    object-fit: contain;
    object-position: center;
}

.singleOrderItem {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.singleOrderItem .itemThumbnail {
    width: 165px;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
}

.singleOrderItem .singleItemDetail {
    flex: 1;
}

.singleOrderItem .singleItemDetail .itemNamePriceWrap {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid #7979794D;
}

.singleItemDetail .itemNamePriceWrap .nameCount {
    width: 68%;
}

.singleItemDetail .itemNamePriceWrap .nameCount p {
    font-size: var(--font-22);
    font-weight: var(--figtree-bold);
    line-height: 30px;
    color: #4F4F4F;
    margin-bottom: 25px;
}

.singleItemDetail .itemNamePriceWrap .nameCount span {
    font-size: var(--font-18);
    font-weight: var(--figtree-semibold);
    color: #797979;
}

.singleItemDetail .itemNamePriceWrap .singleItemPrice {
    text-align: right;
}

.singleItemDetail .itemNamePriceWrap .singleItemPrice p {
    font-size: var(--font-22);
    font-weight: var(--figtree-black);
    color: var(--darkBlue);
    margin-bottom: 20px;
}

.singleItemDetail .itemNamePriceWrap .singleItemPrice span {
    font-size: var(--font-18);
    font-weight: var(--figtree-semibold);
    color: #797979;
}

.singleItemDetail .itemAddress {
    margin-top: 25px;
}

.singleItemDetail .itemAddress i {
    color: #FB8501;
    margin-right: 10px;
}

.singleItemDetail .itemAddress span {
    font-size: 16px;
    font-weight: 500;
    color: #4F4F4F;
}

.selectedItemsDetail {
    background-color: #F5F5F5;
    padding: 30px;
    border-radius: 30px;
}

.orderDispatchInfo {
    padding: 30px 0 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    border-bottom: 1px solid #7979794D;
}

.orderDispatchInfo p {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.orderDispatchInfo p .label {
    font-size: var(--font-22);
    font-weight: var(--figtree-semibold);
    color: #4F4F4F;
}

.orderDispatchInfo p .value {
    font-size: var(--font-22);
    font-weight: var(--figtree-black);
    color: #4F4F4F;
}

.orderDispatchInfo p .value i {
    font-size: 16px;
    margin-right: 10px;
}

.orderTotalAmount {
    padding: 35px 0;
}

.orderTotalAmount p {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.orderTotalAmount .label {
    font-size: var(--font-22);
    font-weight: var(--figtree-semibold);
    color: #4F4F4F;
}

.orderTotalAmount .value {
    font-size: var(--font-22);
    font-weight: var(--figtree-black);
    color: #FB8501;
}

.selectedItemsDetail .iconBtn {
    width: 100%;
    margin-bottom: 15px;
}

/************************* Feedback Tab ************************/
.feedBackBanner {
    position: relative;
    background: url(../images/feedback-banner-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
    height: 320px;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 70px;
    margin-bottom: 50px;
}

.feedBackBanner .tabTitle {
    font-size: var(--font-65);
    font-weight: var(--unitea-semibold);
    color: #ffffff;
    margin-bottom: 20px;
}

.feedBackBanner .tabTitle span {
    color: #FFC403;
}

.feedBackBanner .leftCol p {
    font-size: var(--font-16);
    font-weight: var(--figtree-semibold);
    color: #ffffff;
}

.feedBackWrapper form .field {
    margin-bottom: 50px;
}

.feedBackWrapper form .field label {
    font-size: var(--font-25);
    font-weight: var(--figtree-medium);
    color: #002A4C;
    margin-bottom: 30px;
}

.feedBackWrapper form .field .fieldWrapper.first {
    border-radius: 45px;
}

.feedBackWrapper form .field .fieldWrapper {
    position: relative;
    background-color: #F5F5F5;
    overflow: hidden;
    padding: 30px;
    border-radius: 25px;
}

.feedBackWrapper form .field div select,
.feedBackWrapper form .field div textarea,
.feedBackWrapper form .field div input {
    width: 100%;
    background-color: transparent;
}

.feedBackWrapper form .field div textarea {
    width: 100%;
    background-color: transparent;
    resize: none;
    border: 0px !important;
    padding: 10px;
}

.feedBackWrapper form .field div input {
    height: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.fileOverlay {
    position: absolute;
    top: 45%;
    left: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.fileOverlay img {
    max-width: 35px;
}

.feedBackWrapper form .iconBtn {
    width: 100%;
    margin-bottom: 30px;
}

.feedBackWrapper .linkCta {
    text-align: center;
}

.feedBackWrapper .linkCta a {
    font-size: var(--font-22);
    font-weight: var(--figtree-bold);
    color: #002A4C;
}

.feedBackWrapper .linkCta a i {
    color: #fb8501;
    margin-right: 10px;
}

/************************* Profile Settings Tab ************************/
.profileSettingsWrap .profileHeader {
    padding: 60px 0;
    border-bottom: 1px solid #7979794D;
}

.profileHeader h4 {
    font-size: var(--font-63);
    font-weight: 600;
    color: var(--darkBlue);
    margin-bottom: 30px;
    letter-spacing: -3px;
}

.profileHeader p {
    font-size: var(--font-25);
    font-weight: var(--figtree-semibold);
    color: #4F4F4F;
}

.profileSettingsWrap .profileInfoForm {
    padding: 50px 0;
    border-bottom: 1px solid #ACACAC;
}

.profileSettingsWrap .profileInfoForm p {
    font-size: var(--font-25);
    font-weight: var(--figtree-semibold);
    color: var(--darkBlue);
    margin-bottom: 40px;
}

.profileSettingsWrap .profileInfoForm input {
    padding: 25px 30px;
    border-radius: 65px;
    background-color: #F5F5F5;
    width: 100%;
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 600;
    color: #4F4F4F;
}

.profileSettingsWrap .profileInfoForm .fieldWrap {
    display: flex;
    justify-content: space-between;
}

.profileSettingsWrap .profileInfoForm .fieldWrap input {
    width: 49%;
}

.profileSettingsWrap .profileInfoForm .fileUploader {
    position: relative;
    border: 1px dashed #C3C3C3;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.profileSettingsWrap .profileInfoForm .fileUploader input {
    background-color: #ffffff;
    border: 1px dashed #C3C3C3;
    border-radius: 20px;
    height: 230px;
    opacity: 0;
}

.profileSettingsWrap .profileInfoForm .fileUploader div {
    position: absolute;
}

.profileSettingsWrap .profileInfoForm .iconBtn {
    width: 100%;
}

.updatePasswordForm {
    padding: 50px 0 0 0;
}

.updatePasswordForm p {
    font-size: var(--font-25);
    font-weight: var(--figtree-semibold);
    color: var(--darkBlue);
    margin-bottom: 40px;
}

.updatePasswordForm .fieldWrap {
    display: flex;
    justify-content: space-between;
}

.updatePasswordForm .fieldWrap div {
    position: relative;
    width: 49% !important;
    padding: 25px 30px;
    border-radius: 65px;
    background-color: #F5F5F5;
    width: 100%;
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 600;
    color: #4F4F4F;
}

.updatePasswordForm .fieldWrap div input {
    width: 93%;
}

.updatePasswordForm .fieldWrap div i {
    position: absolute;
    right: 30px;
    top: 40%;
    color: #797979;
}

.updatePasswordForm .iconBtn {
    width: 100%;
}

.authenticationWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}

.authenticationWrapper .leftCol {
    width: 75%;
}

.authenticationWrapper .leftCol h6 {
    font-size: var(--font-45);
    font-weight: var(--unitea-semibold);
    color: var(--darkBlue);
    margin-bottom: 20px;
    letter-spacing: -3px;
}

.authenticationWrapper .leftCol p {
    font-size: var(--font-22);
    font-weight: var(--figtree-semibold);
    color: #4F4F4F;
}

.authenticationWrapper .rightCol {
    width: 20%;
    display: flex;
    justify-content: end;
    align-items: center;
}

.authenticationWrapper .rightCol .form-check {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

.authenticationWrapper .rightCol .form-check label {
    padding-right: 90px;
    font-size: var(--font-22);
    font-weight: var(--figtree-regular);
    color: #002A4C;
}

.authenticationWrapper .rightCol .form-check-input {
    width: 80px !important;
    height: 45px !important;
}

.authenticationWrapper .rightCol .form-check-input:checked {
    background-color: #FB8501;
    border-color: #ffffff;
    box-shadow: none !important;
}

/************************* Warranty Claims Tab ************************/
.warrantyClaimWrapper {}

.tabHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.tabHeader h4 {
    font-size: var(--font-65);
    font-weight: 600;
    color: var(--darkBlue);
    letter-spacing: -4px;
}

.tabHeader .searchProdWrap {
    display: flex;
    width: 34%;
}

.tabHeader .searchProdWrap .searcBar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #7979794D;
    border-radius: 70px;
    padding: 20px 25px;
}

.tabHeader .searchProdWrap .searcBar input {
    width: 92%;
    font-size: 18px;
    font-weight: 500;
    color: #4F4F4F;
}

.tabHeader .searchProdWrap .searcBar button {
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tabHeader .searchProdWrap .filter {
    display: none;
    max-width: 30px;
    object-fit: contain;
    object-position: center;
}

.prodWarrantyTableWrapper {}

.prodWarrantyTableWrapper .prodWarrantyTableHeader {
    display: flex;
    justify-content: space-between;
    margin-bottom: 45px;
}

.prodWarrantyTableHeader .headerCellsWrap {
    display: flex;
    width: 96%;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #D7D7D7;
}

.prodWarrantyTableHeader .headerCellsWrap .firstCell {
    width: 12.5%;
    border-right: 1px solid #D7D7D7;
}

.prodWarrantyTableHeader .headerCellsWrap .secCell {
    width: 20%;
    border-right: 1px solid #D7D7D7;
}

.prodWarrantyTableHeader .headerCellsWrap .thirdCell {
    width: 9.5%;
    border-right: 1px solid #D7D7D7;
}

.prodWarrantyTableHeader .headerCellsWrap .fourthCell {
    width: 12%;
    border-right: 1px solid #D7D7D7;
}

.prodWarrantyTableHeader .headerCellsWrap .fifthCell {
    width: 12.5%;
    border-right: 1px solid #D7D7D7;
}

.prodWarrantyTableHeader .headerCellsWrap .sixthCell {
    width: 14.5%;
    border-right: 1px solid #D7D7D7;
}

.prodWarrantyTableHeader .headerCellsWrap .seventhCell {
    width: 14%;
}

.prodWarrantyTableWrapper .prodWarrantyTableBody .prodRow {
    background-color: #F5F5F5;
    border-radius: 20px;
    padding: 13px 20px;
    display: flex;
    align-items: center;
}

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

.prodWarrantyTableBody .prodRow .firstDataCell {
    width: 10%;
}

.prodWarrantyTableBody .prodRow .firstDataCell img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
}

.prodWarrantyTableBody .prodRow .secDataCell {
    width: 20.5%;
    padding: 0 20px;
    font-size: var(--font-18);
    font-weight: var(--figtree-bold);
    color: #4F4F4F;
}

.prodWarrantyTableBody .prodRow .thirdDataCell {
    width: 9.5%;
    text-align: center;
    border-right: 1px solid #d7d7d7;
    border-left: 1px solid #d7d7d7;
}

.prodWarrantyTableBody .prodRow .fourthDataCell {
    width: 12%;
    text-align: center;
    border-right: 1px solid #d7d7d7;
}

.prodWarrantyTableBody .prodRow .fifthDataCell {
    width: 12.5%;
    text-align: center;
    border-right: 1px solid #d7d7d7;
    font-weight: 800;
    color: #4F4F4F;
}

.prodWarrantyTableBody .prodRow .sixthDataCell {
    width: 14.5%;
    text-align: center;
    border-right: 1px solid #d7d7d7;
}

.prodWarrantyTableBody .prodRow .seventhDataCell {
    width: 21%;
    text-align: center;
}

.prodWarrantyTableBody .prodRow .reOrder span {
    font-size: 14px;
    font-weight: 500;
    color: #0B76BA;
    margin-top: 10px;
    text-align: center;
    display: block;
}

.prodWarrantyTableBody .prodRow .warrantyStatus {
    padding: 10px 20px;
    border-radius: 25px;
}

.notClaimed {
    background-color: #FFC40333;
    color: #FABC02;
}

.claimed {
    background-color: #59BC631A;
    color: #59BC63
}

.warrantyEnd {
    background-color: #FF585F1A;
    color: #FF585F;
}

.prodWarrantyTableBody .prodRow .iconBtn {
    width: fit-content;
    margin: 0 auto;
    padding: 10px 30px;
    font-size: 16px;
}

.prodWarrantyTableBody .prodRow .iconBtn.bgWhite {
    background-color: #ffffff;
    color: var(--darkBlue);
}

.prodWarrantyTableHeader .headerCellsWrap div {
    font-size: var(--font-16);
    font-weight: var(--figtree-bold);
    color: var(--darkBlue);
}

.prodWarrantyTableHeader .headerCellsWrap .tableFilter {
    max-width: 30px;
    object-fit: contain;
    object-position: center;
}

/******************** Products Claim Status Tracker ***************************/
.productClaimStatusWrapper {
    margin-top: 100px;
}

.productClaimStatusTableWrapper .productClaimStatusTableHeader {
    display: flex;
    justify-content: space-between;
    margin-bottom: 45px;
}

.productClaimStatusTableHeader .headerCellsWrap {
    display: flex;
    width: 96%;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #D7D7D7;
}

.productClaimStatusTableHeader .headerCellsWrap .firstCell {
    width: 12.5%;
    border-right: 1px solid #D7D7D7;
}

.productClaimStatusTableHeader .headerCellsWrap .secCell {
    width: 27%;
    border-right: 1px solid #D7D7D7;
}

.productClaimStatusTableHeader .headerCellsWrap .thirdCell {
    width: 12%;
    border-right: 1px solid #D7D7D7;
}

.productClaimStatusTableHeader .headerCellsWrap .fourthCell {
    width: 14%;
    border-right: 1px solid #D7D7D7;
}

.productClaimStatusTableHeader .headerCellsWrap .fifthCell {
    width: 14.5%;
    border-right: 1px solid #D7D7D7;
}

.productClaimStatusTableHeader .headerCellsWrap .sixthCell {
    width: 20%;
}

.productClaimStatusTableHeader .headerCellsWrap div {
    font-size: var(--font-16);
    font-weight: var(--figtree-bold);
    color: var(--darkBlue);
}

.productClaimStatusTableHeader .headerCellsWrap .tableFilter {
    max-width: 30px;
    object-fit: contain;
    object-position: center;
}

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

.productClaimStatusTableBody .prodRow {
    background-color: #F5F5F5;
    border-radius: 20px;
    padding: 13px 20px;
    display: flex;
    align-items: center;
}

.productClaimStatusTableBody .prodRow .firstDataCell {
    width: 10%;
}

.productClaimStatusTableBody .prodRow .firstDataCell img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
}

.productClaimStatusTableBody .prodRow .secDataCell {
    width: 27.5%;
    padding: 0 20px;
    font-size: var(--font-18);
    font-weight: var(--figtree-bold);
    color: #4F4F4F;
}

.productClaimStatusTableBody .prodRow .thirdDataCell {
    width: 12%;
    text-align: center;
    border-right: 1px solid #d7d7d7;
    border-left: 1px solid #d7d7d7;
}

.productClaimStatusTableBody .prodRow .fourthDataCell {
    width: 14%;
    text-align: center;
    border-right: 1px solid #d7d7d7;
}

.productClaimStatusTableBody .prodRow .fifthDataCell {
    width: 14.5%;
    ;
    text-align: center;
    border-right: 1px solid #d7d7d7;
    font-weight: 800;
    color: #4F4F4F;
}

.productClaimStatusTableBody .prodRow .sixthDataCell {
    width: 20%;
}

.productClaimStatusTableBody .prodRow .iconBtn {
    width: fit-content;
    margin: 0 auto;
    padding: 10px 20px;
    font-size: 15px;
}

.productClaimStatusTableBody .prodRow .iconBtn.bgWhite {
    background-color: #ffffff;
    color: var(--darkBlue);
}

.statusLink {
    display: block;
    width: fit-content;
    font-size: var(--font-18);
    font-weight: var(--figtree-bold);
    color: #002A4C;
    padding-bottom: 10px;
    border-bottom: 2px solid #FB8501;
    margin: 0 auto;
}



/************************************ FeedBack Modal Styling ******************************/

.feedBackPopup .modal-dialog {
    max-width: 750px;
}

.feedBackPopup .modal-content {
    padding: 100px 50px;
    border: 0px;
    border-radius: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.feedBackPopup .modal-content .checkWrap {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FB850126;
    margin-bottom: 40px;
}

.feedBackPopup .modal-content .title {
    font-size: var(--font-103);
    font-weight: 600;
    color: #FB8501;
    letter-spacing: -4px;
    margin-bottom: 20px;
}

.feedBackPopup .modal-content .subTitle {
    font-size: var(--font-22);
    font-weight: var(--figtree-semibold);
    color: var(--darkBlue);
    margin-bottom: 45px;
}

.feedBackPopup .modal-content .msg {
    font-size: var(--font-22);
    font-weight: var(--figtree-medium);
    color: #797979;
    margin-bottom: 20px;
}

.feedBackPopup .modal-content .ticketNo {
    font-size: var(--font-22);
    font-weight: 800;
    color: #797979;
}


/************************************ View Claim Modal Styling ******************************/

.viewClaimModal .modal-dialog {
    max-width: 750px;
}

.viewClaimModal .modal-content {
    padding: 50px;
    border: 0px;
    border-radius: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.viewClaimModal .modal-content .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
}

.viewClaimModal .modal-content .header h3 {
    font-size: var(--font-45);
    font-weight: 600;
    color: var(--darkBlue);
    letter-spacing: -4px;
}

.viewClaimModal .modal-content .header .close {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F5F5F5;
    cursor: pointer;
}

.viewClaimModal .modal-content .header .close img {
    max-width: 18px;
    object-fit: contain;
    object-position: center;
}

.viewClaimModal .claimIssue {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.viewClaimModal .claimIssue .tag {
    font-size: var(--font-22);
    font-weight: var(--figtree-bold);
    color: #797979;
}

.viewClaimModal .form-check label {
    font-size: var(--font-18);
    font-weight: var(--figtree-medium);
    color: #797979;
}

.viewClaimModal .form-check-input.custom-radio {
    border: 1px solid #000000;
}

.viewClaimModal .form-check-input.custom-radio:checked {
    background-color: #fff;
    border-color: #000;
    background-image: radial-gradient(#000 48%, transparent 45%);
}

.viewClaimModal .form-check-input.custom-radio:focus {
    box-shadow: none;
}

.viewClaimModal .claimForm {
    width: 100%;
    margin-bottom: 20px;
}

.viewClaimModal .claimForm textarea {
    resize: none;
    background-color: #F5F5F5;
    border: 1px solid #C7C7C7;
    border-radius: 25px;
    padding: 20px;
    font-size: var(--font-22);
    font-weight: var(--figtree-bold);
    color: #797979;
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
}

.viewClaimModal .claimForm .uploadProdPics {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.viewClaimModal .claimForm .uploadProdPics .uploadFile {
    position: relative;
    width: 48%;
    height: 150px;
    border-radius: 25px;
    background-color: #F5F5F5;
    border: 1px solid #C7C7C7;
}

.viewClaimModal .claimForm .uploadProdPics .uploadFile input {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.viewClaimModal .claimForm .uploadProdPics .uploadFile .placeHolder {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    height: 100%;
}

.viewClaimModal .claimForm .iconBtn {
    width: 100%;
    margin-top: 20px;
}

/* ============================= Delivery Confirmation Screen ============================ */
/* ======================================================================================= */

.deliveryConfirmationWrapper {
    padding: 80px 0 120px;
}

.deliveryConfirmationWrapper .breadcrumbWrapper {
    margin-bottom: 50px;
}

.deliveryConfirmationWrapper .pageTitle {
    font-size: var(--font-45);
    font-weight: 600;
    color: #002A4C;
    margin-bottom: 50px;
    letter-spacing: -3px;
}

.confirmOrderListWrap {
    padding: 40px;
    border-radius: 30px;
    background-color: #F5F5F5;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.confirmOrderListWrap h5 {
    font-size: var(--font-45);
    font-weight: 600;
    color: #002A4C;
    letter-spacing: -3px;
}

.confirmOrderItem {
    display: flex;
    gap: 40px;
}

.confirmOrderItem img {
    width: 165px;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
}

.confirmOrderItem .itemInfo {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.confirmOrderItem .itemInfo .itemDetails {
    display: flex;
    justify-content: space-between;
    padding-bottom: 25px;
    border-bottom: 1px solid #7979794D;
}

.confirmOrderItem .itemInfo .itemDetails .leftCol {
    width: 36%;
}

.confirmOrderItem .itemInfo .itemDetails .leftCol p {
    font-size: var(--font-22);
    font-weight: var(--figtree-bold);
    color: #4F4F4F;
    margin-bottom: 20px;
}

.confirmOrderItem .itemInfo .itemDetails .leftCol span {
    font-size: var(--font-18);
    font-weight: var(--figtree-semibold);
    color: #797979;
}

.confirmOrderItem .itemInfo .itemDetails .centerCol {
    width: 16%;
    text-align: center;
}

.confirmOrderItem .itemInfo .itemDetails .centerCol p {
    font-size: var(--font-22);
    font-weight: var(--figtree-black);
    color: #002A4C;
    margin-bottom: 20px;
}

.confirmOrderItem .itemInfo .itemDetails .centerCol span {
    font-size: var(--font-18);
    font-weight: var(--figtree-semibold);
    color: #797979;
}

.confirmOrderItem .itemInfo .itemDetails .rightCol {
    width: 32%;
}

.confirmOrderItem .itemInfo .itemDetails .rightCol .iconBtn {
    width: 100%;
}

.confirmOrderItem .dispatchAddress {
    margin-top: 25px;
}

.confirmOrderItem .dispatchAddress span {
    font-size: var(--font-16);
    font-weight: var(--figtree-medium);
    color: #4F4F4F;
}

.confirmOrderItem .dispatchAddress i {
    color: #FB8501;
    margin-right: 10px;
}


/* ============================= Privay Policy ============================ */
/* ======================================================================== */

.policyBannerWrapper {
    padding: 12px 12px 0 12px;
    margin-bottom: 100px;
    
    overflow: hidden;
}
.policyInnerBannerWrap { 
    width: 100%;
    height: 415px;
    border-radius: 50px;
}
.policyBanner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}
.policyBanner .bannerCol {
    width: 48%;
}
.policyBanner .bannerRightCol {
    width: 50%;
    text-align: center;
}
.policyBanner h1 {
    font-size: 80px;
    font-weight: 600;
    line-height: 90px;
    color: #ffffff;
    margin-bottom: 50px;
    letter-spacing: -5px;
}
.policyBanner .breadcrumbs {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
}
.policyBanner .breadcrumbs a {
    font-size: 30px;
    font-weight: 600;
    color: #ffffff;
}
.policyBanner .breadcrumbs a.active {
    font-weight: 900;
}
.policyBanner .bannerRightCol img {
    max-width: 500px;
    height: 100%;
}
.policyContentWrapper h6 {
    font-size: 45px;
    font-weight: 600;
    color: #002A4C;
    letter-spacing: -3px;
    line-height: 40px;
    margin-bottom: 45px;
}
.policyContentWrapper .contentWrapper {
    margin-bottom: 100px;
}
.policyContentWrapper p {
    font-size: 18px;
    font-weight: 500;
    color: #4F4F4F;
    margin-bottom: 20px;
}


.companyPolicy {
    background-color: var(--darkBlue);
    border-radius: 20px;
    padding: 80px;
    margin-bottom: 100px;
}
.companyPolicy h4 {
    font-size: var(--font-45);
    font-weight: var(--figtree-semibold);
    color: #ffffff;
    letter-spacing: -3px;
    margin-bottom: 40px;
}
.companyPolicy p {
    font-size: var(--font-28);
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0;
}





/* ============================= Footer ============================ */
/* ================================================================= */
footer {
    margin: 0 20px 20px 20px;
}

.footerWrapper {
    background-color: var(--darkBlue);
    border-radius: 50px;
    padding: 122px 145px 0 145px;
}

.logoBar {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.footerLogo img {
    max-width: 400px;
}

.appDownload img {
    max-width: 220px;
}

.footerContactInfo {
    padding: 33px 0;
    border-top: 1px solid #ffffff33;
    border-bottom: 1px solid #ffffff33;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: none;
    border-right: none;
    margin: 75px 0 85px 0;
}

.infoGroup {
    display: flex;
    align-items: center;
    gap: 25px;
}

.infoGroup span {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff33;
}

.infoGroup:hover span {
    background: #FB8501;
}

.infoGroup:hover span i {
    color: #000000;
}

.infoGroup span i {
    font-size: 22px;
    color: #ffffff;
}

.infoGroup p {
    font-size: var(--font-25);
    font-weight: var(--figtree-bold);
    color: var(--white);
    line-height: 32px;
    margin-bottom: 10px;
}

.infoGroup a {
    font-size: var(--font-22);
    font-weight: var(--figtree-medium);
    color: var(--white);
    line-height: 22px;
}

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

.siteLinks .leftCol {
    width: 40%;
}

.siteLinks .innerLinks {
    width: 51%;
    display: flex;
    justify-content: space-between;
}

.subscriptionDetail h6 {
    font-size: var(--font-55);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 34px;
}

.subscriptionDetail h6 span {
    color: #FB8501;
}

.subscriptionDetail p {
    font-size: var(--font-25);
    font-weight: var(--figtree-medium);
    color: var(--white);
}

.subscriptionTitleWrapper form {
    background-color: var(--white);
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    overflow: hidden;
    padding: 12px 12px 12px 30px;
    margin-top: 65px;
}

.subscriptionTitleWrapper form input {
    font-size: var(--font-18);
    font-weight: var(--figtree-regular);
    line-height: 18px;
    color: var(--black);
    width: 70%;
}

.subscriptionTitleWrapper form button {
    padding: 14px 40px;
    border-radius: 50px;
    color: var(--black);
    font-size: var(--font-18);
    font-weight: var(--figtree-extrabold);
}

.socialLinks {
    display: flex;
    gap: 14px;
    margin-top: 115px;
}

.socialLinks a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ffffff33;
    color: var(--white);
}

.socialLinks a:hover {
    background-color: #FB8501;
    color: #000000;
}

.colTitle {
    font-size: var(--font-25);
    font-weight: var(--figtree-bold);
    color: var(--white);
    margin-bottom: 43px;
}

.innerLinks ul li a {
    display: inline-block;
    font-size: var(--font-18);
    font-weight: var(--figtree-regular);
    color: var(--white);
    margin-bottom: 29px;
    position: relative;
    transition: transform .5s ease;
}

.innerLinks ul li a:hover {
    color: #FB8501;
}

.innerLinks ul li a::before {
    content: '';
    position: absolute;
    bottom: -10px;
    width: 100%;
    height: 1px;
    transition: all 0.25s;
    background: #FB8501;
    transform: scaleX(0);
}

.innerLinks ul li a:hover:before {
    transform: scaleX(1);
}

.copyRghtBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 80px;
    padding: 50px 0;
    border-top: 1px solid #ffffff33;
}

.copyRghtBar p {
    font-size: var(--font-18);
    font-weight: var(--figtree-medium);
    color: var(--white);
}