/* import fonts here */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

/* import fonts here */
@font-face{
    font-family: "Avus W00 Regular";
    src: url("https://db.onlinewebfonts.com/t/47741be4373b7f09d885636651178b1b.eot");
    src: url("https://db.onlinewebfonts.com/t/47741be4373b7f09d885636651178b1b.eot?#iefix")format("embedded-opentype"),
        url("https://db.onlinewebfonts.com/t/47741be4373b7f09d885636651178b1b.woff")format("woff"),
        url("https://db.onlinewebfonts.com/t/47741be4373b7f09d885636651178b1b.woff2")format("woff2"),
        url("https://db.onlinewebfonts.com/t/47741be4373b7f09d885636651178b1b.ttf")format("truetype"),
        url("https://db.onlinewebfonts.com/t/47741be4373b7f09d885636651178b1b.svg#Avus W00 Regular")format("svg");
    font-weight:normal;
    font-style:normal;
    font-display:swap;
}
 
@font-face {
    font-display: swap;
    font-family: iconfont;
    font-style: normal;
    font-weight: 400;
    src: url(/template/lloyd/assets/fonts/iconfont.woff2) format("woff2"), url(/template/lloyd/assets/fonts/iconfont.woff) format("woff")
}

@font-face {
    font-family: 'Larken';
    font-style: normal;
    font-weight: 400;
    font-display: swap; /* or block/fallback/optional */
    src: url('/template/lloyd/assets/fonts/Larken-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 400;
    font-display: swap; /* or block/fallback/optional */
    src: url('/template/lloyd/assets/fonts/Gilroy-Regular.woff2') format('woff2');
}

.iconfont {
    font-family: iconfont;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 1;
    text-decoration: inherit;
    text-rendering: optimizeLegibility;
    text-transform: none;
    position: relative;

}

.iconfont:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
   
}

.iconfont:hover:after {
    color: #000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-cart:before {
    content: "\ea09";
}

.icon-cart:hover::after {
    content: "\ea0a";

}

.icon-heart:before {
    content: "\ea24"
}

.icon-heart:hover::after {
    content: "\ea25"

}

.icon-user:before {
    content: "\ea44";
}

.icon-user:hover::after {
    content: "\ea45"
}

.icon-heart-solid:before {
    content: "\ea25"
}

.icon-heart-empty:before {
    content: "\ea24"
}

.icon-angle-down:before {
    content: "\ea2a"
}

.icon-angle-right:before {
    content: "\ea06"
}

.icon-angle-left:before {
    content: "\ea05"
}

.icon-arrow-down:before {
    content: "\ea04";
    font-size: 15px;
}

.icon-arrow-down:before {
    content: "\ea04";
    font-size: 15px;
}

.icon-trash:before {
    content: "\ea41"
}

.icon-trash:hover:after {
    content: "\ea42"
}

.icon-angle-category-right:before {
    content: "\ea06";
    font-size: 10px;
}
.icon-angle-item-right:before {
    content: "\ea06";
    font-size: 15px;
}
.icon-angle-category-left:before {
    content: "\ea05";
    font-size: 10px;
}
.icon-angle-item-left:before {
    content: "\ea05";
    font-size: 15px;
}

.icon-angle-category-down:before {
    content: "\ea04";
    font-size: 10px;
}

.icon-search:before {
    content: "\ea3a"
}

.icon-instagram:before {
    content: "\ea29";
    color: white;
}

.icon-facebook:before {
    content: "\ea1a";
    color: white;
}

.icon-youtube:before {
    content: "\ea48";
    color: white;
}

.icon-contact:before {
    content: "\ea0c";
}
.icon-track-orders:before {
    content: "\ea26";
}

.icon-returns:before {
    content: "\ea38";
}

.icon-shipping:before {
    content: "\ea43";
}


/* basic css*/

:root {
    --transition: .5s;
}

body {
    font-family: "Avus W00 Regular";
    font-family: 'Gilroy', sans-serif !important;
}

.h1, .h2, h1, h2{
    font-family: 'Larken', sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

p {
    margin: 0;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

input,
textarea,
button {
    outline: none;
    font-family: "Avus W00 Regular";
}

main {
    flex: 1;
}

html,
body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    /*width: 100%;*/
    height: auto;
    display: block;
}

.container {
    max-width: 1600px;
    margin-inline: auto;

}

/* basic css */



/* extra css */

.hover__line {
    position: relative;
}

.outter__nav ul li a.hover__line {
    z-index: 1000;
}

.catagory__nav__slider ul li a.hover__line {
    z-index: 1000;
}

.hover__line::after {
    position: absolute;
    content: '';
    background: #212121;
    width: 0;
    left: 0;
    height: 1px;
    bottom: -2px;
    transition: var(--transition);
}

.hover__line.active::after {
    width: 100%;
}

.hover__line:hover::after {
    width: 100%;
}

/* extra css */




/* swiper css start here */

.hover__line.catagory__active::after {
    width: 100%;
}

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

.nav__slider .swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 0;
}

.nav__slider .swiper-slide:last-child {
    padding-right: 80px;
}

.nav__slider .swiper-button-next,
.nav__slider .swiper-button-prev {
    position: relative;
    top: unset;
    margin-top: unset;
    z-index: unset;
    display: flex;
    color: unset;
    width: 30px;
    height: 30px;
    justify-content: center;
    left: unset;
    right: 0;
}

.nav__slider .swiper-slide {
    width: auto !important;
    flex-shrink: 0;
    margin-right: 24px;
}

.nav__slider a {
    white-space: nowrap;
    display: inline-block;
    padding: 10px 0px;
    background-color: transparent;
    color: #212121;
    font-size: 14px;
    line-height: 14px;
}

.slider__navigation__container {
    display: flex;
    font-size: 30px;
    position: absolute;
    top: 50%;
    right: 0;
    background: #fff;
    z-index: 9;
    padding: 0 10px;
    overflow: hidden;
    transform: translateY(-50%);
}

/* swiper css end here */


/* nav map start here */

/* .navigation__map {
    margin-top: 130px;
    padding-top: 20px;
    } */
    .nav__map__container {
        padding-top: 15px;
        padding-bottom: 15px;
    }

.nav__map__container ul {
    gap: 15px;
    flex-wrap: wrap;
}

.nav__map__container ul li {
    display: flex;
    align-items: center;
}

.nav__map__container ul li a {
    color: #61605f;
    display: block;
    font-size: 12px;
}

.nav__map__container ul li a:hover {
    color: #212121;
}

.nav__map__container ul li span {
    color: #949392;
    display: block;
    font-size: 12px;
}

.text-deactive {
    color: #CACACA;
}

/* nav map end here */



/* page title start here */

.page__title {
    padding-block: 25px 30px;
}

.page__text h2 {
    font-size: 34px;
    line-height: 41px;
    color: #212121;
    margin-bottom: 10px;
}

.page__text span {
    font-size: 14px;
    line-height: 17px;
    color: #61605F;
}

/* page title end here */



/* showcase area start here */

.showcase__area {
    padding-bottom: 80px;
}

.showcase__filter {
    margin-block: 20px 30px;
    background: #fff;
    padding-block: 10px;
}

.showcase__filter .filter__left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.showcase__filter .filter__left a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #212121;
    font-size: 14px;
    line-height: 20px;
}


.showcase__filter .filter__btn {
    border: 1px solid #212121;
    padding: 8px 15px;
}

.filter__right {
    display: flex;
    align-items: center;
}

.filter__view {
    display: flex;
    align-items: center;
}

.filter__view button {
    background: transparent;
    border: none;
    padding: 0 10px;
    border-right: 1px solid #898988;
    font-size: 14px;
    line-height: 16px;
}

.filter__selection select {
    background: transparent;
    border: none;
    font-size: 14px;
    width: 88px;
}

.filter__view span,
.filter__selection span {
    font-size: 14px;
    line-height: 21px;
    color: #7D7D7D;
}

.filter__selection {
    margin-left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product__slider .swiper-button-next,
.product__slider .swiper-button-prev {
    color: #BEBCBA;
    font-size: 35px;
    opacity: 0;
    transition: var(--transition);
}

.product__slider .swiper-button-next {
    right: -5px;
}

.product__slider .swiper-button-prev {
    left: -5px;
}

.prodcut__cover {
    display: block;
    padding: 85px 20px;
    position: relative;
}

.prodcut__cover::after {
    position: absolute;
    content: '';
    background: radial-gradient(circle at 50% 56%, transparent 45%, rgba(0, 0, 0, .05));
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    pointer-events: none;
}
.product
.product__favourite {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 25px;
    color: #000000;
    z-index: 9;
    display: flex;
}



.fal.fa-heart:hover {
    font-weight: 900;
}

.product__tag {
    position: absolute;
    top: 20px;
    left: 20px;
}



.quick__buy:hover {
    background-color: #212121;
    color: #fff;
}

.product__name {
  color: #212121;
  line-height: 16px;
  display: block;            
  
  white-space: nowrap;      
  overflow: hidden;         
  text-overflow: ellipsis; 
  text-transform: uppercase;  
  width: 100%;              
}


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

.product__mini__image a {
    width: 35px;
}

.product__mini__image {
    gap: 10px;
}
.product__wrapper {
    width: 100%;
}
.product__wrapper:hover .quick__buy {
    visibility: visible;
    opacity: 1;
}

.product__wrapper:hover .swiper-button-next,
.product__wrapper:hover .swiper-button-prev {
    opacity: 1;
}

.product__flex {
    column-gap: 16px;
    row-gap: 60px;
}

.showcase__article {
    padding-bottom: 80px;
}

.showcase__article__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.showcase__article__text h5 {
    color: #212121;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 15px;
    font-weight: bold;
}

.showcase__article__text p {
    color: #212121;
    font-size: 14px;
    line-height: 20px;
}

/* showcase area end here */







/* login page start here */

.login__area {
    padding-block: 30px 200px;
}

.create__account {
    padding-left: 50px;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login__content {
    width: 100%;
    max-width: 1140px;
    margin-inline: auto;
    position: relative;
    justify-content: center;
}

.login__form,
.create__account {
    flex: 1 1 0;
}

.register-btn {
    max-width: 400px;
}

.login__form__title h3,
.create__account h1 {
    font-size: 34px;
    line-height: 38px;
    color: #212121;
    margin-bottom: 15px;
    font-weight: 400;
}

.login__form__title p,
.create__account p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 35px;
}

.login__form {
    border-right: 1px solid #E2DDD9;
    padding-right: 50px;
}



.input__container {
    margin-bottom: 15px;
}



.input__container input {
    padding: 10px 15px;
    border: 1px solid #212121;
    width: 100%;
    padding-top: 15px;
}

.input__container input:focus {
    border-color: #FFD6D6;
}


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

.form__btn {
    font-family: 'Gilroy', sans-serif !important;
    background: #212121;
    width: 100%;
    border: none;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    padding: 15px;
    display: block;
    font-size: 14px;
}

.checkbox input,
.checkbox label {
    cursor: pointer;
}

.input__container label {
    cursor: text;
    color: #9493A0;
    word-break: break-all;
}

.checkbox label {
    font-size: 14px;
    line-height: 20px;
    color: #212121;
}

.forget__passord {
    font-size: 12px;
    line-height: 17px;
    color: #212121;
    text-decoration: underline;
}

@media (max-width: 991px) {
    .login__content {
        display: flex;
        flex-direction: column;
    }

    .login__content .login__form {
        border-bottom: 1px solid #E2DDD9;
        border-right: 0;
        padding-bottom: 50px;
        padding-right: 0;
    }

    .create__account {
        padding-left: 0;
    }

    .login__form {
        max-width: 400px;

    }

    .login__content .vertical__line {
        display: none;
    }

}

/* login page end here */



/* register page start here */

.register__area {
    padding-block: 50px 90px;
}

.register__content {
    max-width: 600px;
    margin-inline: auto;
}

.custom-dropdown-container {
    position: relative;
    width: 100%;
}

.custom-select-box {
    padding: 10px 15px;
    border: 1px solid #212121;
    background-color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    transition: border-color 0.3s, box-shadow 0.3s;
    z-index: 1;
    padding-top: 15px;
}

.dropdown-arrow {
    font-size: 18px;
    color: #212121;
    transition: transform 0.3s ease;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.custom-dropdown-container.open .dropdown-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid #212121;
    border-top: none;
    background-color: white;
    max-height: 0;
    overflow-y: scroll;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    scrollbar-width: none;
}

.custom-dropdown-container.open .dropdown-options li {
    padding: 10px 15px;
    font-size: 14px;
    cursor: pointer;
    transition: .3s;
}

.custom-dropdown-container.open .dropdown-options li:hover {
    background-color: #F0EEEC;
}

.custom-dropdown-container.open .dropdown-options {
    max-height: 200px;
    opacity: 1;
    visibility: visible;
}

.country__title {
    position: absolute;
    top: 4px;
    left: 16px;
    z-index: 9;
    font-size: 10px;
    color: #94A0C5;
}

.register__form h2 {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 400;
    font-size: 34px;
}

.input__flex {
    gap: 12px;
}

.input__flex .input__container {
    margin-bottom: 15px;
    width: calc(50% - 6px);
}

.person__selection {
    gap: 45px;
    margin-bottom: 15px;
}

.single__person label {
    color: #949392;
    font-size: 14px;
    line-height: 17px;
    cursor: pointer;
    position: relative;
    padding-left: 36px;
}

.single__person {
    display: flex;
    align-items: center;
    gap: 8px;
}

.single__person input {
    accent-color: #212121;
    cursor: pointer;
}

.password__wrapper .pass__need {
    font-size: 12px;
    line-height: 17px;
    color: #212121;
}

.main__form hr {
    margin-block: 25px;
    color: #212121;
}

/* register page end here */



/* general page start here */

.terms__area {
    padding-bottom: 200px;
}

.terms__title h1 {
    font-size: 34px;
    line-height: 41px;
    color: #212121;
    font-weight: 600;
    margin-block: 25px 80px;
}

.terms__article__title h3,
.terms__single__article h4 {
    font-size: 21px;
    line-height: 26px;
    color: #212121;
    font-weight: 600;
    margin-bottom: 20px;
}

.terms__single__article p {
    font-size: 14px;
    line-height: 17px;
    color: #212121;
    margin-bottom: 20px;
}

.terms__single__article p:last-child {
    margin: 0;
}

.download__terms__pdf {
    margin-bottom: 35px;
    display: inline-flex;
}

.terms__notice__list li,
.delete__applicable,
.terms__link {
    font-size: 14px;
    line-height: 17px;
    color: #212121;
}

.terms__notice__main address p {
    margin: 0;
}

.terms__single__article .terms__link {
    text-decoration: underline;
    color: #212121;
}

.terms__single__article .terms__link:hover {
    color: #E50513;
}

.terms__notice__title h1 {
    font-size: 21px;
    line-height: 25px;
    margin-bottom: 30px;
}

.terms__notice__main strong,
.terms__notice__main p {
    font-size: 14px;
    line-height: 18px;
    color: #212121;
}

.terms__notice__main p:last-child {
    margin: 0;
}

.terms__notice__main strong {
    margin-bottom: 15px;
    display: block;
}

.terms__notice__main p {
    margin-bottom: 10px;
}

.terms__article__notice .terms__notice__main:last-child {
    margin-bottom: 0px;
}

.terms__article__notice {
    border: 1px solid #000;
    background: #F8F7F6;
}

.terms__notice__list ul {
    list-style: disc;
    padding-left: 35px;
    margin-bottom: 40px;
}

.delete__applicable {
    display: inline-block;
    padding-right: 50px;
    border-top: 1px solid #000;
}

.terms__single__article {
    margin-bottom: 50px;
}

.terms__notice__main {
    margin-bottom: 30px;
}

.terms__single__article.notice__container {
    margin-bottom: 0;
}

.terms__single__article.notice__container p:last-child {
    margin-block: 20px;
}

/* general page end here */



/* product page start here */

.previous__page {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #212121;
    border: 0;
    background: transparent;
}

.cart__image {
    position: relative;
}

.cart__added__item {
    position: sticky;
    top: 10px;
}

.cart__view {
    display: flex;

    flex-direction: column;
    gap: 10px;
}

.cart__double__item {
    gap: 10px;
}

.cart__image::after {
    position: absolute;
    background: radial-gradient(circle at 50% 56%, transparent 45%, rgba(0, 0, 0, .05));
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.cart__double__item .cart__image {
    width: calc(50% - 5px);
}

.cart__left {
    width: 66.6%;
}

.cart__right {
    width: 28.4%;
}

.cart__accordion {
    margin-top: 70px;
}

.cart__accordion .accordion-button {
    font-family: 'Gilroy', sans-serif !important;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 21px;
    color: #212121;
    box-shadow: none;
    background: transparent;
    padding-block: 35px;
}

.cart__accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #E2DDD9;
    border-radius: 0;
}

.cart__accordion .accordion-body {
    padding: 0;
    padding-bottom: 30px;
    padding-left: 30px;
}

.cart__accordion .accordion-body p {
    line-height: 24px;
    color: #212121;
}

.item__tag {
    gap: 25px;
}

.item__text h5 {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: #212121;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.item__text p {
    line-height: 22px;
    color: #212121;
}

/* .cart__right .product__favourite {
    top: 0;
    right: 0;
} */

.added__item__heading h4 {
    font-family: "Larken", sans-serif;
    font-size: 40px;
    line-height: 48px;
    font-weight: 400;
    color: #212121;
}

.added__item__heading span {
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    color: #212121;
}

.added__item__heading {
    margin-bottom: 25px;
}

.added__item__price .price {
    font-family: "Larken", sans-serif;
    font-size: 21px;
    line-height: 26px;
    color: #212121;
}

.added__item__price h6 {
    font-size: 12px;
    line-height: 26px;
    color: #949392;
    margin-bottom: 20px;
}

.added__item__price .item__color {
    font-size: 14px;
    line-height: 21px;
    color: #212121;
    font-weight: 400;
    text-transform: capitalize;
}

.added__item__price .item__color span {
    color: #61605F;
}

.added__item__variant a {
    width: 50px;
}

.added__item__variant {
    margin-bottom: 30px;
}

.item__size__variant {
    margin-bottom: 12px;
}

.item__size__variant .size__country__base a {
    font-size: 14px;
    line-height: 17px;
    color: #212121;
    text-decoration: none;
    padding: 0 8px;
    position: relative;
}

.item__size__variant .size__country__base a:nth-child(2) {
    border-left: 1px solid #E2DDD9;
    border-right: 1px solid #E2DDD9;
}

.item__size__variant .size__country__base a:first-child {
    padding-left: 0;
}

.size__exception__box {
    background: #F0EEEC;
    padding: 15px;
    gap: 20px;
    margin-block: 20px;
}

.size__exception__box i {
    margin-top: 4px;
    font-size: 20px;
}

.size__exception__box p {
    font-size: 14px;
    line-height: 20px;
    color: #212121;
}

.item__size__variant a {
    font-size: 12px;
    line-height: 17px;
    text-decoration: underline;
    color: #212121;
}

.delivery__rules {
    margin-top: 40px;
}

.delivery__rules ul li a {
    padding-left: 25px;
    position: relative;
    font-size: 12px;
    line-height: 18px;
    color: #61605F;
    margin-bottom: 10px;
    display: inline-block;
}

.delivery__rules ul li a::after {
    position: absolute;
    content: '\f0d1';
    font-family: "Font Awesome 5 Pro";
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.delivery__rules ul li:nth-child(3) a::after {
    content: '\f0e2';
}

.delivery__rules ul li:last-child a::after {
    display: none;
}

.single__size__input input {
    display: none;
}

.single__size__input input:checked~label {
    background-color: #212121;
    color: #fff;
}

.single__size__input label {
    width: calc(68.5px - 3px);
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #212121;
    font-size: 14px;
    line-height: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.single__size__input label:hover {
    background-color: #212121;
    color: #fff;
}

.size__input__container {
    gap: 10px;
    padding-bottom: 20px;
}

.product__view__wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
}

.product__view__slider {
    overflow: hidden;
    position: relative;
}

.product__view__wrapper .swiper {
    overflow: unset;
}

#product__view .single__product {
    width: 100%;
}

.product__view__slider .swiper-button-prev,
.product__view__slider .swiper-button-next {
    background: transparent;
    border: none;
    color: #212121;
    font-size: 40px;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 0;
}

.slider__nav .slider__button__holder:first-child {
    background: linear-gradient(270deg, hsla(0, 0%, 100%, .6) 0, hsla(0, 0%, 100%, .8) 160px, #fff 310px);
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 50px;
    z-index: 9;
    pointer-events: none;
    
}

.slider__nav .slider__button__holder:last-child {
    background: linear-gradient(270deg, hsla(0, 0%, 100%, .6) 0, hsla(0, 0%, 100%, .8) 160px, #fff 310px);
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50px;
    z-index: 9;
    pointer-events: none;
}
.slider__button__holder button {
  pointer-events: auto;
  cursor: pointer;  
}
.slider__nav .swiper-button-prev {
    left: auto;
    right: 20px;
}

.slider__nav .swiper-button-next {
    left: 20px;
    right: auto;
}

.discount__price {
    color: #E30513;
}

.discount__tag {
    background: #e30513;
    color: #fff;
    font-size: 11px;
    line-height: 18px;
    padding: 0px 4px;
    font-weight: 600;
    display: inline-block;
}

.product__view__title h1 {
    position: relative;
    font-size: 27px;
    line-height: 41px;
    color: #212121;
    font-weight: 400;
    margin-bottom: 30px;
    text-transform: uppercase;
    z-index: 10;
}

/* view slider end here */

/* product page end here */













/* sale page start here */

.sale__banner {
    margin-bottom: 80px;
    margin-top: 188px;
}

.travel__wrapper {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider__nav.fluid__container__nav .slider__button__holder {
    width: 52px;
}

.travel__text h5 {
    color: #fff;
    font-size: 13px;
    line-height: 17px;
    text-transform: uppercase;
}

.travel__text h1 {
    font-weight: 600;
    font-size: 73px;
    line-height: 95px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.theme__btn {
    background: #FFFFFF;
    color: #212121;
    font-weight: 600;
    padding: 15px 25px;
    text-transform: uppercase;
    font-size: 14px;
    display: inline-block;
}

.theme__btn:hover {
    background-color: #212121;
    color: #fff;
}

.travel__text {
    text-align: center;
    padding-inline: 20px;
}

.travel__active .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    opacity: 1;
    margin: 0 !important;
}

.travel__active .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #000;
}

.travel__active .swiper-pagination {
    bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.travel__active .swiper-button-next,
.travel__active .swiper-button-prev {
    font-size: 40px;
    color: #fff;
}




.showoff__arae {
    padding-block: 100px;
}

.showoff__flex {
    gap: 20px;
}

.single__showoff {
    width: calc(16.666% - 17px);
}


.sale__extra__wrapper .product__view__wrapper {
    padding: 0;
}

.video__area {
    padding-block: 80px;
}

.video__text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: auto;
    max-width: 400px;
}

.video__text span {
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.video__text h1 {
    font-size: 53px;
    color: #fff;
    line-height: 64px;
    font-weight: 600;
    margin-bottom: 25px;
}





.newsletter__area {
    padding-block: 50px;
    text-align: center;
    margin-bottom: 120px;
}

.newsletter__text h6 {
    font-size: 14px;
    color: #fff;
    line-height: 20px;
    margin-bottom: 10px;
}

.newsletter__content {
    max-width: 490px;
    margin: auto;
}

.newsletter__text h1 {
    font-size: 40px;
    line-height: 48px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 30px;
}

.newsletter__text p {
    font-size: 9px;
    line-height: 25px;
    color: #fff;
    margin-bottom: 25px;
}

/* sale page end here */













/* home page start here */

/* notify-bar-area-start */

.notify__bar {
    height: 30px;
    background: #353535;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notify__bar p {
    color: #fff;
    line-height: 30px;
    font-size: 12px;
}

.notify__secenf--bar {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    background: #E9E4E1;
    position: relative;
}

.notify__secenf--bar p {
    font-size: 12px;
    color: #000;
    font-weight: 400;
}

.notify__secenf--bar a {
    color: #fff;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}

/* notify-bar-area-end */

/* header-area-start */

.header {
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;

}

.header__flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    padding-left: calc(108px - 2vw);
    padding-right: calc(108px - 2vw);
}

@media (max-width: 768px) {
    .header__flex {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.site__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header__menu ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__menu li a {
    font-size: 16px;
    line-height: 1;
    padding: 5px 0;
    color: #212121;
}

.header__menu > ul > li > a {
    font-family: "Larken", sans-serif;
    font-size: 20px;
}

.site__logo a img {
    width: 140px;
}

.header__right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header__icons {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header__serch {
    position: relative;
}

.header__flag {
    flex-shrink: 0;
}

.header__serch input {
    width: 180px;
    height: 33px;
    padding: 0 35px;
    border: 0;
    border-bottom: 1px solid #333;
}

.header__serch>a {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #212121;
    font-size: 15px !important;
}

.header__flag a img {
    max-width: 25px;
}

.header__icons a {
    color: #212121;
    font-size: 20px;
    position: relative;
    cursor: pointer;
    z-index: 9;
}

/* header-area-end */

/* hero-area-start */

.hero__flex {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 35px;
    padding-top: 35px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: calc((100% - 98vw) / 2); 
    margin-right: calc((100% - 98vw) / 2); 

}

.hero__img {
    width: 100%;
    position: relative;
    height: auto;
    aspect-ratio: 1/1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__img a {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: auto;
    padding: 0 18px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    background: #fff;
    font-size: 14px;
    color: #000;
    font-weight: 600;
    transition: .3s;
}

.hero__img a:hover {
    background: #212121;
    color: #fff;
}
 @media (max-width: 768px) {
    .hero__flex {
        flex-direction: column;
        flex-wrap: wrap;
        
    }
} 
/* hero-area-end */


/* product-area-start */
.product .swiper {
    width: 100%;
    height: 100%;
}



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

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

.product {
    padding: 80px 60px;
}

.product .product__slider {
    width: 48.3%;
}

.product__slider--title {
    margin-bottom: 25px;
}

.product__slider--title h3 {
    font-size: 27px;
    color: #212121;
}

.product .product__img {
    background: radial-gradient(circle at 50% 56%, transparent 45%, rgba(0, 0, 0, .05));
}

.product .product__img a img:first-child {
    position: relative;
    z-index: 1;
    opacity: 1;
    visibility: visible;
}

.product .product__img a img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.product__img a {
    position: relative;
    display: block;
}

.product__img a .love--icon {
    position: absolute;
    height: 62px;
    width: 62px;
    font-size: 22px;
    background: transparent;
    border: 0;
    top: 0;
    right: 0;
    z-index: 1;
    padding: 0;
}

.product__img a .product__buy {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    padding: 0 18px;
    height: 48px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    background: transparent;
    border: 1px solid #212121;
    bottom: 10px;
    z-index: 1;
    width: 95%;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
}

.product__content a {
    font-size: 16px;
    display: block;
    color: #212121;
    font-weight: 400;
    text-transform: uppercase;
}

.product__content span {
    font-size: 16px;
    display: block;
    color: #212121;
    font-weight: 400;
    text-transform: uppercase;
    display: block;
}

.product__bolet {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.product__bolet a {
    width: 38px;
    transition: .3s;
    position: relative;
}

.product__bolet a:before {
    position: absolute;
    content: "";
    background: #000;
    width: 0%;
    height: 1px;
    bottom: 0;
    left: 0;
    transition: .3s;
}

.product__bolet a:hover:before {
    width: 100%;
}

.product__bolet a:first-child:before {
    width: 100%;
}

.product .swiper-button-next {
    top: 36%;
    color: #000;
    right: 0;
}

.product .swiper-button-next:after {
    font-size: 24px;
    font-weight: 700;
}

.product .swiper-button-prev {
    top: 36%;
    left: 0;
    color: #000;
}

.product .swiper-button-prev:after {
    font-size: 23px;
    font-weight: 700;
}

.product .product__img a:hover .product__buy {
    opacity: 1;
    visibility: visible;
}

.product .product__buy:hover {
    background: #212121 !important;
    color: #fff;
}

/* product-area-end */

/* new-banner-area-start */

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

.new__banner-img {
    width: 33.33%;
}

.new__banner--content {
    width: 33.33%;
    background: #EAEAEA;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.new__banner--content span {
    font-size: 14px;
    margin-bottom: 10px;
}

.new__banner--content h3 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
}

.new__banner--content a {
    width: 170px;
    height: 48px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #212121;
    color: #212121;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    transition: .3s;
}

.new__banner--content a:hover {
    background: #212121;
    color: #fff;
}

/* new-banner-area-end */


/* service-list-area-start */

.service__list .container {
    max-width: 1710px;
}

.service__list {
    padding: 80px 0;
}

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

.single__service--list a img {
    display: block;
    margin: auto;
    max-width: 42px;
    margin-bottom: 20px;
}

.single__service--list {
    text-align: center;
}

.single__service--list a {
    font-size: 12px;
    color: #61605f;
    font-weight: 500;
    display: block;
}

.single__service--list a span {
    background-color: #f0eeec;
}

/* service-list-area-end */


/* footer-area-start */

.footer .container {
    max-width: 1710px;
    padding-left: calc(108px - 2vw);
    padding-right: calc(108px - 2vw);
}

@media (max-width: 991px) {
    .footer .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.footer__flex {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-bottom: 80px;
    gap: 20px;
    padding-left: 15px;
    padding-right: 15px;
}

.footer {
    background: #212121;
    padding: 80px 0;
}

.footer__logo {
    max-width: 208px;
}

@media (max-width: 991px) {
    .footer__logo {
        align-self: center;
    }
}

.footer__logo a {
    margin-bottom: 16px;
    display: block;
}

.footer__widget h3 {
    font-family: 'Gilroy', sans-serif !important;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer__menu ul li {
    display: block;
    margin-bottom: 8px;
}

.footer__menu ul li:last-child {
    margin: 0;
}

.footer__menu a {
    color: #bebcba;
    font-size: 14px;
}

.footer__flex:last-child {
    margin: 0;
}

.footer__copy p {
    font-size: 14px;
    color: #fff;
    margin: 0;
}

.footer__payment {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.footer__payment--text p {
    font-size: 16px;
    color: #fff;
    margin-top: 20px;
}

.footer__payment a {
    width: 46px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    padding: 5px;
}

.footer__widget.wd {
    max-width: 563px;
}

.footer__socail {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__socail a {
    color: #fff;
    display: block;
}


.collapse__trigger {
    border-bottom: 1px solid #61605F;
    padding-block: 25px;
    font-size: 14px;
    line-height: 25px;
    color: #fff;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.collapse__trigger i {
    font-size: 30px;
}

.single__footer__collapse .footer__menu {
    padding-top: 15px;
}

/* footer-area-end */

/* home page end here */


.header__right.active .header__flag,
.header__right.active .header__icons {
    display: none;
}

.header__right.active .header__serch input {
    width: 100%;
}

.header__right.active .close__icon {
    display: inline-block !important;
    cursor: pointer;
}

.header__right.active .header__serch {
    width: 100%;
}

.header__right .close__icon {
    position: absolute;
    right: 8px;
    top: 3px;
    font-size: 20px;
}

.header__right.active~.header__overlay {
    visibility: visible;
    opacity: 1;
}

.header__mobile__menu.active~.header__overlay,
.search__mobile.active~.header__overlay {
    visibility: visible;
    opacity: 1;
}


.header__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9;
    top: 83px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.header__wrapper {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 99;
    width: 100%;
}

/* mega menu start here */

.outter__nav {
    display: flex;
    padding-left: calc(108px - 2vw);
    padding-right: calc(108px - 2vw);
}

.outter__nav>ul {
    display: flex;
    gap: 30px;
}

.header__menu ul li:hover .outter__area {
    opacity: 1;
    visibility: visible;
    display: block;

}

.outter__area {
    background: #fff;
    position: absolute;
    padding-top: 25px;
    padding-bottom: 15px;
    width: 100%;
    left: 0;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 9;
}

.outter__nav ul li a {
    font-size: 15px;
    line-height: 15px;
    color: #212121;
}

.mega__menu {
    position: absolute;
    background: #fff;
    left: 0;
    right: 0;
    max-height: 0;
    overflow: hidden;
    transition: .5s;
    overflow-y: scroll;
    width: 100%;
}

.mega__menu__preview a {
    width: 260px;
    display: block;
}

.mega__menu__wrapper {
    padding-block: 30px 50px;

}

.mega__menu__preview {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mega__menu__left {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

}

.container-fluid {
    padding-left: calc(108px - 2vw);
    padding-right: calc(108px - 2vw);

}

.mega__single__catagory {
    margin-bottom: 30px;
    padding-right: 30px;
}

.mega__menu__right {
    width: 30%;
    display: flex;
    justify-content: center;
}

.mega__single__catagory ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: start;
}

.mega__single__catagory ul li a.mega__leading {
    font-weight: bold;
}

.outter__nav ul li:hover>a::after {
    width: 100%;

}

.outter__nav>ul li:hover .mega__menu {
    max-height: 650px;
}

.mega__menu::after {
    position: fixed;
    content: '';
    /*! background: rgba(0, 0, 0, 0.9); */
    width: 100%;
    height: 100%;
    bottom: 0;
    z-index: -1;
    opacity: 0;
    transition: .3s;
    visibility: hidden;
}

/* .outter__nav>ul li:hover .mega__menu::after {
    opacity: 1;
    visibility: visible;
} */

/* mega menu end here */


.search__mobile .close__icon {
    position: absolute;
    right: 10px;
    top: 8px;
    cursor: pointer;
}

.header__serch.search__mobile {
    position: absolute;
    left: 0;
    right: 0;
    top: 49px;
}

.header__serch.search__mobile input {
    width: 100%;
    height: 40px;
}

.search__mobile {
    z-index: 1010;
}

.header__mobile__menu.active~.header__overlay {
    visibility: visible;
    opacity: 1;
}

.header__mobile__menu a {
    font-size: 24px;
    color: #212121;
    flex-shrink: 0;
}

.header__mobile__menu {
    gap: 20px;
}


/* offcanva mobile */

#header__offcanva #pills-tab {
    display: flex;
    flex-wrap: wrap;
}

#header__offcanva #pills-tab button {
    background: transparent;
    color: #212121;
    width: 40%;
    border-radius: 0;
    font-weight: bold;
    padding: 0;
    transition: .3s;
}

#header__offcanva #pills-tab li {
    width: 50%;
}

#header__offcanva #pills-tabContent {
    margin-top: 30px;
}

.homepage__link {
    padding: 15px;
    display: block;
    background: #F0EEEC;
    color: #212121;
    font-size: 14px;
    line-height: 14px;
}

.offcanva__menu ul li a {
    padding: 12px 15px;
    display: block;
    border-bottom: 1px solid #E2DDD9;
    font-weight: bold;
    padding-left: 0;
    color: #212121;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    line-height: 25px;
}



.single__offcanva__collapse .collapse__btn i::before {
    display: inline-block;
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}

.single__offcanva__collapse .collapse__btn[aria-expanded="true"] i::before {
    transform: rotate(-180deg);
}

.offcanva__menu ul li a.leading {
    text-transform: uppercase;
}


.offcanva__menu ul li a i {
    font-size: 17px;
    transition: .5s;
}

.contact__offcanva {
    padding-block: 40px;
    border-bottom: 1px solid #E2DDD9;
    font-size: 14px;
    line-height: 17px;
}


.offcanva__main__area .contact__offcanva a {
    margin: 0;
    color: #212121;
    display: flex;
    gap: 10px;
}

.contact__offcanva a i {
    font-size: 20px;
}

.offcanva__main__area a {
    margin-block: 20px;
    display: block;
    font-size: 14px;
    color: #212121;
}

.offcanva__main__area .contact__big {
    border: 1px solid #212121;
    font-size: 24px;
    line-height: 24px;
    color: #212121;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    padding: 18px 10px;
}


.offcanva__menu .submenu__collapse li>a {
    border: none;
    font-weight: normal;
}

.offcanva__menu .submenu__collapse li ul li a {
    margin-left: 20px;
    padding-top: 0;
    z-index: 3;
}

.offcanva__menu .submenu__collapse li ul li ul li a {
    margin-left: 35px;
}

.contact__big img {
    width: 20px;
}

.offcanva__country a {
    width: 35px;
}

/* offcanva mobile */







/* filter offcanva start here */

#offcanvasFilter {
    width: 480px;
}
.offcanvas-body {
    overflow-x: hidden;
    scrollbar-width: none; 
}
#offcanvasFilter .offcanvas-header,
#offcanvasFilter .offcanvas-body {
    padding: 30px;
}

#offcanvasFilter .offcanvas-header h4 {
    font-size: 16px;
    color: #212121;
    line-height: 22px;
    font-weight: 500;
    text-transform: uppercase;
}

#offcanvasFilter .offcanvas-body {
    padding-top: 0;
}

#offcanvasFilter .offcanvas-header .btn-close {
    color: #333;
}

.offcanvas-header .btn-close{
  /* wipe Bootstrap’s default .btn-close rules */
  all: unset;
  display: inline-block;

  --size: 24px;
  --thickness: 2px;
  --color: #000;
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: var(--size);
  height: var(--size);
  background: transparent;
  cursor: pointer;
  opacity: .65;
  transition: opacity .2s ease;
}

.offcanvas-header .btn-close::before,
.offcanvas-header .btn-close::after{
  content: "";
  position: absolute;
  width: var(--size);
  height: var(--thickness);
  background: var(--color);
  transform-origin: center;
}

.offcanvas-header .btn-close::before{
  transform: translate(-50%, -50%) rotate(45deg);
}

.offcanvas-header .btn-close::after{
  transform: translate(-50%, -50%) rotate(-45deg);
}

.offcanvas-header .btn-close:hover,
.offcanvas-header .btn-close:focus{
  opacity: 1;
}



.offcavaFilter__sort h5 {
    font-size: 16px;
    line-height: 24px;
    color: #61605F;
    font-weight: 500;
}

.offcavaFilter__sort {
    display: flex;
    gap: 12px;
    margin-bottom: 26px;
}

.offcavaFilter__sort ul {
    display: flex;
    flex-wrap: wrap;
}

.offcavaFilter__sort ul li {
    padding: 0 13px;
    position: relative;
}

.offcavaFilter__sort ul li a {
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 24px;
    color: #212121;
}

.offcavaFilter__sort ul li a.selected:after{
    width: 100%;
}

.offcavaFilter__sort ul li:first-child {
    padding-left: 0;
}

.offcavaFilter__sort ul li:last-child::after {
    display: none;
}

.offcavaFilter__sort ul li:after {
    position: absolute;
    content: '';
    background: #61605F75;
    height: 50%;
    right: 0;
    width: 1px;
    top: 50%;
    transform: translateY(-50%);
}

.offcavaFilter__view h5 {
    color: #61605F;
    font-size: 14px;
    line-height: 17px;
}

.offcavaFilter__view ul li a {
    color: #212121;
    font-size: 14px;
    display: flex;
}

.offcavaFilter__view ul li {
    padding: 0 13px;
    position: relative;
}

.offcavaFilter__view {
    display: flex;
}

.offcavaFilter__view ul {
    display: flex;
    align-items: center;
}

.offcavaFilter__view ul li:first-child::after {
    display: none;
}

.offcavaFilter__view ul li::after {
    position: absolute;
    content: '';
    background: #212121;
    height: 50%;
    width: 1px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

#collapse-size .size__input__container {
    padding-bottom: 20px;
}

.single__color__field {
    width: 50%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-block: 10px;
    cursor: pointer;
    position: relative;
}

.single__color__field span,
.single__checkbox__field span {
    font-size: 14px;
    color: #212121;
    display: inline-block;
    cursor: pointer;
}

.single__color__field span {
    cursor: pointer;
    position: relative;
    display: inline-block;
}

.single__color__field input {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    cursor: pointer;
}

.field__flex {
    margin-bottom: 12px;
    gap: 12px;
}

.single__color__field input#color1 {
    background: #353535;
}

.single__color__field input#color2 {
    background: #765136;
}

.single__color__field input#color3 {
    background: #3C488D;
}

.single__color__field input#color4 {
    background: #FFFFFF;
    border: 1px solid #212121;
}

.single__color__field input#color5 {
    background: #D3D3D3;
}

.single__color__field input#color6 {
    background: linear-gradient(135deg, #3c488d 30%, #356f3b 36%, #356f3b 47%, #be4949 53%, #be4949 63%, #f8d452 69%);
}

.multi__checkbox__container input:checked~span::before {
    display: block;
}

.multi__checkbox__container input:checked~span.hover__line::after {
    width: 100%;
}

.multi__checkbox__container span::before {
    position: absolute;
    content: '\f00c';
    font-family: "Font Awesome 5 pro";
    right: -25px;
    font-weight: bold;
    font-size: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
}

.single__checkbox__field input {
    display: none;
}

.single__offcanva__collapse a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #212121;
    font-size: 16px;
    line-height: 24px;
    padding-block: 20px;
}

.single__offcanva__collapse {
    border-bottom: 1px solid #F0EEEC;

}

.single__checkbox__field {
    cursor: pointer;
}

.multi__checkbox__container {
    padding-bottom: 10px;
}

.single__offcanva__collapse a i {
    font-size: 30px;
    transition: .3s;
}

.offcanva__submit {
    box-shadow: 0 -3px 6px rgba(0, 0, 0, .05);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.offcanva__submit button .form__btn.reset__submit {
    background: transparent;
}

.form__btn.reset__sumbit {
    background: transparent;
    color: #212121;
    border: 1px solid #212121;
    transition: .3s;
}

.form__btn.reset__sumbit:hover {
    background: #212121;
    color: #fff;
}

/* filter offcanva end here */


/* fix css start here */

.single__person input {
    display: none;
}

.single__person label::after {
    position: absolute;
    content: '';
    border: 1px solid #bebcba;
    height: 22px;
    width: 22px;
    border-radius: 100px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.single__person label::before {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    background-color: #000;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 100px;
    left: 6px;
    display: none;
}

.single__person input:checked~label {
    color: #000;
}

.single__person input:checked~label::before {
    display: block;
}

.form__extra__option .checkbox input {
    display: none;
}

.form__extra__option .checkbox label {
    padding-left: 35px;
    position: relative;
}

.form__extra__option .checkbox label::after {
    position: absolute;
    content: '';
    width: 22px;
    height: 22px;
    border: 1px solid #bebcba;
    border-radius: 3px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.form__extra__option .checkbox label::before {
    position: absolute;
    content: '\f00c';
    font-family: "Font Awesome 5 Pro";
    left: 6px;
    top: 0;
    font-size: 11px;
    display: none;
}

.form__extra__option .checkbox input:checked~label::before {
    display: block;
}

.quick__buy {
    border: 1px solid #212121;
    background: transparent;
    color: #212121;
    text-transform: uppercase;
    padding: 10px 10px;
    transition: var(--transition);
    position: absolute;
    left: 25px;
    bottom: 15px;
    right: 25px;
    font-weight: bold;
    font-size: 16px;
    visibility: hidden;
    opacity: 0;
    text-align: center;
}

.filter__selection .nice-select .list {
    min-width: 145px;
    border: 1px solid #000;
    border-radius: 0;
    right: 0;
    padding: 16px 8px 16px 16px;
    left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.filter__selection .nice-select .option {
    padding: 0;
    line-height: normal;
    min-height: unset;
    margin-top: 18px;
    position: relative;
    display: inline-block;
}

.filter__selection .nice-select .option.selected {
    background: transparent;
    font-weight: normal;
}

.filter__selection .nice-select .option.selected::after {
    width: 100%;
}

.filter__selection .nice-select .option:first-child {
    margin: 0;
}

.filter__selection .nice-select .option::after {
    position: absolute;
    content: '';
    background: #212121;
    height: 1px;
    width: 0;
    left: 0;
    bottom: 0;
    transition: .3s;
}

.filter__selection .nice-select .option:hover::after {
    width: 100%;
}

.filter__selection span.current {
    color: #212121;
    border-bottom: 1px solid #212121;
}


.sale__banner.vacation__banner {
    margin-bottom: 80px;
    margin-top: 0;
}



#header__offcanva .offcanvas-body {
    padding: 0;
}

#header__offcanva .offcanva__menu {
    padding-inline: 15px;
}

#header__offcanva #pills-tab button {
    position: relative;
}

#header__offcanva #pills-tab button span {
    position: absolute;
    left: 16px;
    bottom: 16px;
}

#header__offcanva #pills-tab {
    gap: 0px;
}

#header__offcanva #pills-tabContent {
    margin-top: 0px;
}

#header__offcanva #pills-tab button img {
    height: 130px;
    object-fit: cover;
}

#header__offcanva #pills-tab {
    flex-wrap: wrap;
}

#header__offcanva #pills-tab button.active {
    width: 60%;
}

.offcanva__main__area {
    padding-inline: 15px;
}

.offcanvas-header {
    justify-content: space-between;
}

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

.offcanva__head__left a {
    font-size: 20px;
    color: #212121;
}


.offcanva__sub {
    position: absolute;
    width: 100%;
    transform: translateX(100%);
    transition: transform .3s ease-in-out;
    left: 0;
    right: 0;
    top: 192px;
    background: #FFFFFF;
    height: calc(100vh - 192px);
    margin-top: 30px;
    scrollbar-width: none;
}

#header__offcanva #offcanvasExample {
    overflow: hidden;
}

.offcanva__container.active .offcanva__sub {
    transform: translateX(0);
}

.sub__offcanva__close {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #E2DDD9;
    font-weight: bold;
    padding-block: 15px;
    color: #212121;
    position: relative;
}

.sub__offcanva__close i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
}

.offcanva__sub__wrapper {
    padding-inline: 15px;
}

.offcanva__sub .homepage__link {
    font-weight: normal;
    padding-left: 15px;
}

.offcanva__menu .submenu__collapse li {
    border-bottom: 1px solid #E2DDD9;
}

.offcanva__menu .submenu__collapse li a {
    font-weight: 400;
}

.offcanva__menu .submenu__collapse li ul li {
    border: none;
}

.offcanva__menu ul li a.sub__offcanva {
    border-bottom: 1px solid #E2DDD9;
}

.single__checkbox__field span {
    margin-bottom: 12px;
}

.submenu__collapse {
    position: relative;
    z-index: 500;
}

/* fix css end here */



/* new-css-start */

.product .swiper-button-next:before {
    position: absolute;
    content: "";
    background: #fff;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(90deg, hsla(0, 0%, 100%, .6) 0, hsla(0, 0%, 100%, .8) 160px, #fff 310px);
}

.product .swiper-button-prev:before {
    position: absolute;
    content: "";
    background: linear-gradient(90deg, hsla(0, 0%, 100%, .6) 0, hsla(0, 0%, 100%, .8) 160px, #fff 310px);
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}

.product__img {
    position: relative;
}

.product__img img {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.3s ease;
}

.product__img img.active {
    opacity: 1;
    z-index: 1;
}

.product .product__slider .swiper-button-next,
.product .product__slider .swiper-button-prev {
    opacity: 1;
    width: 60px;
    top: 0;
    height: 100%;
    bottom: 0;
}

.product .product__slider .swiper-button-next::after {
    display: block;
    position: absolute;
    content: '\f105';
    font-family: "Font Awesome 5 pro";
    font-weight: normal;
}

.product .product__slider .swiper-button-prev::after {
    display: block;
    position: absolute;
    content: '\f104';
    font-family: "Font Awesome 5 pro";
    font-weight: normal;
}

.product .swiper-button-next.swiper-button-disabled,
.product .swiper-button-prev.swiper-button-disabled {
    opacity: 0;
}

.hover__on {
    position: absolute;
    left: 0;
    top: 2px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.header__icons a:hover .hover__on {
    opacity: 1;
    visibility: visible;
}


.product__slider .swiper-wrapper {
    transition-property: opacity !important;
}

:root {
  --hdr-h: 0px;
}

.main__wrapper {
    padding-left: calc(108px - 2vw);
    padding-right: calc(108px - 2vw);
    padding-bottom: 100px;
    width: 100%;
    overflow-x: hidden;
}

.main__wrapper .data-copy{
    margin-top: 100px;
}

.content_wrapper {
    padding-top: 50px;
    padding-left: calc(108px - 2vw);
    padding-right: calc(108px - 2vw);
}

#collapse-price .pt-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 16px;
}

#collapse-price .d-flex {
    width: 100%;
    max-width: 360px;
    justify-content: space-between;
}

.priceFilterInput {
    width: 100px;
    height: 45px;
    border: 1px solid #e2ddd9;
    border-radius: 2px;
    text-align: center;
    font-size: 16px;
    line-height: 45px;
    background: #fff;
}

.price-slider-container {
    width: 100%;
    max-width: 360px;
    margin-top: 12px;
    position: relative;
    height: 24px;
}

.price-slider-container .noUi-base {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: #212121;
    transform: translateY(-50%);
    border-radius: 2px;
}

.price-slider-container .noUi-connect {
    background: #212121;
}

.price-slider-container .noUi-handle {
    position: absolute;
    top: 50%;
    width: 16px;
    height: 16px;
    background: #212121;
    border: none;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: grab;
    box-shadow: none;
}

.price-slider-container .noUi-tooltip,
.price-slider-container .noUi-horizontal .noUi-handle:after {
    display: none !important;
}

.noUi-target {
    box-shadow: none;
    background: transparent;
    border-radius: 0%;
    border: none;
}

.noUi-handle:after,
.noUi-handle:before {
    content: none;
    background: none;
}

.price-slider-container .noUi-base {
    background: #e2ddd9 !important;
}

.price-slider-container .noUi-connect {
    background: #212121 !important;
}

.content-with-sidebar {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    overflow-x: hidden;
}


.products-list-page__sidebar {
    width: 250px;
    flex-shrink: 0;
    border-right: 1px solid #eee;
    padding-right: 1rem;
    display: none;
    box-sizing: border-box;
}

.products-list-page__sidebar.show {
    display: block;
}


.showcase__main__content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow: hidden;
}


.showcase__filter {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
}

.row>* {
    padding-left: 0%;
    padding-right: 0%;
}

.product__flex {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.5rem;
    margin-top: 1rem;
    width: 100%;
    overflow: hidden !important;
    height: auto !important;

}

@media (min-width: 1200px) {
    .product__flex {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1200px) {
    .product__flex {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 320px) and (max-width: 991px) {
    .product__flex {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .main__wrapper {
        padding-top: 0px;
   
    }
    /*   .navigation__map {
        padding-left: 20px;
    }
 */
    .main__wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }

    .header__flex {
        padding-left: 20px;
        padding-right: 20px;

    }

    .content_wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 375px) {
/*     .product__price {
        display: flex;
        flex-direction: column;
    } */

    .price-old {
        margin-left: 0 !important;
    }

    .prodcut__details {
        font-size: 12px;
    }

    .prodcut__cover {
        padding: 45px 10px;
    }
}

@media (max-width: 768px) {
    .content-with-sidebar {
        flex-direction: column !important;
    }

    .products-list-page__sidebar.show {
        display: none !important;
    }

    #showCategoriesBtn {
        display: none;
    }
}

/* each card */
.single__product {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    align-self: flex-start;

}

/* image sanity */
.product__image img {
    display: block;
    width: 100%;
    height: auto;
}

.categories-tree {
    list-style: none;
    margin: 0;
    padding: 0;
}

.categories-tree__category {
    display: block;
    padding: .5rem 1rem;
    text-decoration: none;
    color: #555;
    transition: border-color .2s;
}

/* top-level = bold black */
.categories-tree__category--first-level .categories-tree__link {
    font-weight: bold;
    color: #000;
}

.categories-tree__subcategories {

    padding-left: 1rem;
}

.categories-tree__link {
    display: inline-block;
    width: 100%;
}

.categories-tree__subcategories>li .categories-tree__link {
    font-size: .95rem;
}

.categories-tree__subcategories .categories-tree__subcategories>li .categories-tree__link {
    font-size: .9rem;
}


aside.products-list-page__sidebar>ul.categories-tree>li>ul.categories-tree__subcategories>li>a>.categories-tree__link {
    font-weight: bold;
    color: #000;
}

.filter__show i {
    transition: transform 0.3s ease;
    display: inline-block;
    transform-origin: center;
}

.filter__show i.fa-plus {
    transform: rotate(0deg);
}

.filter__show i.fa-minus {
    transform: rotate(180deg);
}

.filter__show i.transitioning {
    transform-origin: center;
}

.categories-tree__link.hover__line {
    display: inline;
}

.categories-tree__link.hover__line::after {
    bottom: -4px;
}

.hidden {
    display: none !important;
    visibility: hidden !important;
}

.copyright__notice {
    padding-bottom: 15px;
}

.catagory__nav__slider a.hover__line::after {
    margin-bottom: 7px;
}

.terms_conditions_checkbox {
    padding-top: 15px;
}

.forgot__area p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 15px;
}

.forgot__area .forgot-success-container {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.forgot__area .icon-check {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: #1F5A2A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.forgot__area .icon-check svg {
    width: 40px;
    height: 40px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
}

.forgot-success-container p {
    padding-top: 10px;

}

.back-home-btn {
    background: white;
    border: 1px solid black;
    color: black;
}

.back-home-btn:hover {
    background: black;
    color: white;
    transition: none;
}

.back-home-btn a {
    transition: none;
}

.filter-badge {
    border: 1px solid #212121;
    padding: 8px 15px;
    line-height: 20px;
    font-size: 14px;
    margin-right: 10px;
    margin-top: 10px;
    height: 38px;
}

.filter-badge .fa-times {
    padding-right: 10px;
}

.filter-tag-checkbox {
    display: none;
}

.remove-filter {
    cursor: pointer;
}


.showcase__filter>*:nth-child(3) {
    flex-basis: 100%;
}

.active-filters-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0 8px;
    margin-top: 6px;
    max-width: 100%;
}

.btn-reset-active-filters {
    font-size: .85rem;
    text-decoration: underline;
    white-space: nowrap;
    cursor: pointer;
    align-self: center;
}

.badge-reset-all {
    border: none;
    background: transparent;
    text-align: center;
    padding: 8px 15px;
    line-height: 20px;
    font-size: 14px;
    margin-right: 10px;
    margin-top: 10px;
}

.product-color-swatch.hover__line {
    position: relative;
    display: inline-block;
    overflow: visible;
}

.product-color-swatch.hover__line::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0;
    transition: .5s;
}

.product-color-swatch.hover__line:hover::after,
.product-color-swatch.hover__line.active::after {
    width: 100%;
}

.product-color-swatch {
    position: relative;
    --line-width: 0%;
}

.product-color-swatch::after {
    content: '';
    position: relative;
    bottom: 0;
    left: 0;
    width: var(--line-width);
    height: 1px;
    transition: var(--transition);
}

.wishlist-container .wishlist-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin: 2rem 0 0;
    align-self: center;
}




.wishlist-container .empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 0 6rem;
    align-self: center;
}

.wishlist-container .empty p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem
}

.wishlist-container .btn-solid {
    background: #212121;
    width: 100%;
    border: none;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    padding: 15px;
    display: block;
    font-size: 14px;
    text-align: center;
    max-width: 500px;
}

.wishlist-container .btn-solid:hover {
    opacity: .85
}

.wishlist-list {
    display: flex;
    flex-direction: column;
    align-items: center;


}


.wishlist-container .item {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    background: #f9f9f9;
    width: 100%;
    max-width: 1300px;


}


.wishlist-container .item {
    margin-top: 2.5rem
}

.wishlist-container .item figure {
    flex: 0 0 340px;
    aspect-ratio: 4 / 3;
    height: 300px;
    overflow: hidden
}

.wishlist-container .item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wishlist-container .remove-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.25rem;
    line-height: 1;
    color: #000;
    opacity: .65
}

.wishlist-container .remove-btn:hover {
    opacity: 1
}

.wishlist-container .meta {
    flex: 1;
    padding: 1.5rem 1.5rem 2rem;
}

.wishlist-container .meta h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: .3rem
}

.wishlist-container .meta time {
    display: block;
    font-size: .75rem;
    color: #666;
    margin-bottom: 1rem
}

.wishlist-container .price {
    font-weight: 700;
    color: #be252c;
    margin-bottom: .35rem
}

.wishlist-container .price del {
    font-weight: 400;
    color: #666;
}

.wishlist-container .sub {
    font-size: .875rem;
    color: #444
}


.wishlist-container .cta {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    width: 100%;
    margin-right: 70px;
}


@media (min-width: 991px) {
    .wishlist-container .item {
        align-items: center;
        padding: 2rem;
        gap: 2rem;
    }
    .wishlist-container .cta {
        width: auto;
        margin: 0;
        padding: 1.5rem;
        justify-content: center;
    }

    .wishlist-container .cta .btn-solid {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 46px;
    }
}

@media (max-width: 560px) {
    .wishlist-list {

        flex-direction: column !important;

    }
}

.wishlist-container .cta .btn-solid {
    width: 100%;
    text-align: center;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center
}

.wishlist-container .btn-disabled {
    background: #ccc;
    pointer-events: none
}

.wishlist-container .item-title {
    font-family: 'Gilroy', sans-serif !important;
    color: black;
}

@media (max-width: 991px) {
    .wishlist-container .item {
        width: 100%;
        padding: 1rem;
        flex: 0 0 calc((100% - 1rem) / 2);
        max-width: calc((100% - 1rem) / 2);
        box-sizing: border-box;
    }

    .wishlist-container .item figure {
        width: 100%;
        height: auto;
        aspect-ratio: auto;
    }

    .wishlist-container .item {
        flex-direction: column;
        align-items: stretch;
        max-width: 550px;
    }

    .wishlist-container .cta {
        width: 100%;
        margin: 0;
        padding: 0 1rem 1rem;
        justify-content: center;
    }

    .wishlist-list {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        gap: 1rem;
        margin: 0 auto;
    }

}

.wishlist-container .remove-btn {
    --size: 24px;
    --thickness: 2px;
    --color: #000;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: var(--size);
    height: var(--size);
    background: transparent;
    border: 0;
    cursor: pointer;
    opacity: .65;
    transition: opacity .2s;
}

.wishlist-container .remove-btn:hover {
    opacity: 1;
}

.wishlist-container .remove-btn::before,
.wishlist-container .remove-btn::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: var(--thickness);
    background: var(--color);
    transform-origin: center;
}

.wishlist-container .remove-btn::before {
    transform: rotate(45deg);
}

.wishlist-container .remove-btn::after {
    transform: rotate(-45deg);
}

.account-container {
    font-family: 'Gilroy', sans-serif !important;
    max-width: 1200px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    color: #333;

}

.account-container .breadcrumb {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

.account-container .profile-header h1 {
    font-size: 32px;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.account-container .profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.account-container .subtitle {
    font-size: 16px;
    margin: 0 0 20px;
    line-height: 1.5;
}

.account-container .profile-content {
    display: flex;
    gap: 20px;
}

.account-container .sidebar {
    flex: 0 0 250px;
    border: 1px solid #ddd;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 340px;
}

.account-container .nav {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
}

.account-container .nav li {
    padding: 14px;
}

.account-container .nav li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.account-container .nav li.active a {
    font-weight: bold;

}

.account-container .logout-btn {
    background: #212121;
    width: 100%;
    border: none;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    padding: 15px;
    display: block;
    font-size: 14px;
    text-align: center;


}

.account-container .main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.account-container .welcome-section {
    border: 1px solid #ddd;
    padding: 20px;
}

.account-container .welcome-section p {
    font-size: 18px;
    margin: 0 0 20px;
}

.account-container .quick-links {
    display: flex;

}

.account-container .quick-link {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 20px;
}

.account-container .quick-link:not(:last-child) {
    border-right: 1px solid #ddd;
}

.account-container .quick-link img {
    width: 40px;
    height: 40px;
}


.account-container .quick-link h4 {
    margin: 10px 0 5px;
    font-size: 14px;
}



.account-container .quick-link .desc {
    font-size: 12px;
    color: #666;
}

.account-container .newsletter-section {
    display: flex;
    border: 1px solid #ddd;
    overflow: hidden;
}

.account-container .newsletter-image {
    flex: 1;
}

.account-container .newsletter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.account-container .newsletter-content {
    flex: 1;
    background: #e4dfda;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.account-container .newsletter-content h2 {
    font-size: 24px;
    margin: 0 0 20px;
    line-height: 1.2;
}

.account-container .newsletter-content p {
    font-size: 14px;
    margin: 0 0 20px;
    color: #333;
}

.account-container .subscribe-btn {
    background: #212121;
    border: none;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    padding: 15px;
    font-size: 14px;
    align-self: start;
}

.sidebar .nav li.active a.hover__line::after {
    width: 100%;
}

.horizontal-separator {
    width: 100%;
    min-height: 1px;
    background-color: #e0e0e0;
    margin: 20px 0;
}

.vertical-separator {
    width: 1px;
    height: 100px;
    background-color: #7c7878;
    margin: 0 20px;
    display: inline-block;
}



.account-container .profile-edit-section {
    border: 1px solid #ddd;
    padding: 20px;
}

.account-container .profile-edit-section p {
    font-size: 12px;
    margin: 0 0 20px;
    color: #898988;
}


.account-container .profile-edit-section h4 {
    font-size: 20px;
}

.account-container .forgot-form-container h4 {
    font-size: 18px;
}

.account-container .profile-edit-section .input__container {
    max-width: 500px;
    margin-bottom: 24px;
}

.account-container .profile-edit-form {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.account-container .person__selection {
    margin-bottom: 24px;
}

.account-container .save-profile-data-btn {
    font-family: 'Gilroy', sans-serif !important;
    max-width: 500px;

}

.account-container .address-edit-section {
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
}

.account-container .address-edit-section h4 {
    font-size: 20px;
}

.account-container .address-edit-section .input__container {
    max-width: 500px;
    margin-bottom: 24px;
}

.address-edit-section .input__container .selectize-control {
    margin: 0;
    /* remove default Selectize margins */
}

.selectize-control.single .selectize-input,
.selectize-dropdown.single {
    border-color: black !important;
    /* remove default Selectize border */
}

.selectize-control.single .selectize-input {
    box-shadow: none !important;
    background-color: transparent !important;
    background-image: none !important;
    background-repeat: no-repeat !important;
}

.address-edit-section .input__container .selectize-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #333;
    /* same border color/weight */
    border-radius: 0;
    /* square corners to match */
    font-size: 1rem;
    line-height: 1.2;
    background: #fff;
    box-sizing: border-box;
    min-height: 46px;
    /* same height as your other inputs */
}

/* focus state */
.address-edit-section .input__container .selectize-input.focus {
    border-color: #000;
    /* or whatever your :focus border is */
    box-shadow: 0 0 0 1px #000;
}

/* the dropdown panel */
.address-edit-section .input__container .selectize-dropdown {
    border: 1px solid #333;
    border-radius: 0;
    box-shadow: none;
    margin-top: 2px;
}

.address-edit-section .input__container .selectize-dropdown .option {
    padding: 0.5rem 1rem;
    font-size: 1rem;
}

.address-edit-section .input__container .selectize-dropdown .option:hover,
.address-edit-section .input__container .selectize-dropdown .option.active {
    background: #f5f5f5;
}


.input__container .selectize-input {
    padding: 15px 15px 10px;
}



.input__container .selectize-input input {
    position: relative;
    font-size: 16px;
    top: 5px;
    height: 100%;
}

.input__container .selectize-control.single .selectize-input div {
    position: relative;
    top: 5px;
    font-size: 16px;
}

.phoneNumberSelection {
    position: relative;
    margin-bottom: 1rem;
}

.phoneNumberSelection .iti {
    width: 100% !important;
    border: 1px solid #333;
    border-radius: 0;
    box-sizing: border-box;
}

.phoneNumberSelection input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.2;
    border: none;
    background: transparent;
    box-sizing: border-box;
}



.reset-password-container {
    border: 1px solid #ddd;
    padding: 20px;
}


.iti-0__dropdown-content {
    z-index: 1001;
}

.iti__selected-country {
    z-index: 1002;
}


.selectize-dropdown {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    padding: 0;
    z-index: 1000;
    animation: dropFade 160ms ease-out;
}

.selectize-dropdown-content {
    max-height: 200px !important;
    overflow-y: auto;
    scrollbar-width: thin;
}

.selectize-dropdown-content::-webkit-scrollbar {
    width: 6px;
}

.selectize-dropdown-content::-webkit-scrollbar-thumb {
    background: #e5e7eb;
    border-radius: 3px;
}

.selectize-dropdown .option {
    padding: 0.55rem 0.75rem;
    line-height: 1.35;
    color: #1f2937;
    cursor: pointer;
    transition: background 100ms;
}

.selectize-dropdown .option:hover,
.selectize-dropdown .option.focus {
    background: #f3f4f6;
}

.show-shopping-cart-btn {
    position: relative;
}

.show-shopping-cart-btn>span {
    position: absolute;
    top: 6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    background: #ffffff;
    color: #ff0000;
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    text-align: center;
    border-radius: 50%;
    pointer-events: none;
    border: 0.5px solid #333;
    z-index: 1000;
}

.wishlist-count {
        position: absolute;
    top: 6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    background: #ffffff;
    color: #ff0000;
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    text-align: center;
    border-radius: 50%;
    pointer-events: none;
    border: 0.5px solid #333;
}


.added__item__price .price-old {
    font-size: 21px;
}
.orders-box {
    border: 1px solid #e1e1e1;
    padding: 2rem 2.5rem;
}

/* heading */
.orders-box__title {
    font-size: 1.25rem;
    /* 20px */
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 0.5rem 0;
}

.orders-box__subtitle {
    font-size: 0.875rem;
    /* 14px */
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* table styles */
.orders-list {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    /* 14px */
}

.orders-list thead th {
    font-weight: 600;
    text-transform: uppercase;
    padding: 0 0 0.75rem 0;
}

.orders-list thead tr {
    border-bottom: 1px solid #d8d8d8;
}

.orders-list tbody td {
    padding: 1rem 0;
}

.orders-list tbody tr:hover {
    background: #fafafa;
}

.orders-list .align-right {
    text-align: right;
}


.orders-list .chevron {
    font-size: 1rem;
    margin-left: 1rem;
    vertical-align: middle;
    color: #333;
}


@media (max-width: 767.98px) {
    .orders-box {
        padding: 1.5rem 1.25rem;
    }

    .orders-box__title {
        font-size: 1.125rem;
    }

    .orders-list thead {
        display: none;
        /* switch to stacked card look on narrow screens */
    }

    .orders-list tbody td {
        display: block;
        width: 100%;
        padding: 0.5rem 0;
    }

    .orders-list tbody td[data-label]::before {
        content: attr(data-label) ": ";
        font-weight: 600;
        text-transform: uppercase;
    }

    .orders-list .align-right {
        text-align: left;
    }

    .orders-list .chevron {
        display: none;
    }
}

/* container */
.profile-order-container {
    border: 1px solid #e1e1e1;
    padding: 2rem 2.5rem;
}

/* header row */
.order-detail__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

.order-detail__header a {
    color: inherit;
    font-size: 1.25rem;
    line-height: 1;
}

/* top meta table */
.order-meta {
    display: flex;
    font-size: 0.875rem;
    background-color: rgb(242, 242, 236);
    border: 1px solid #e1e1e1;
    border-bottom: none;
    width: 100%;
}

.order-meta th {
    font-weight: 600;
    padding-top: 20px;
    padding-bottom: 10px;
    padding-left: 10px;

}

.order-meta td {
    padding: 20px;
}

.address-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    margin-bottom: 2rem;
    border: 1px solid #e1e1e1;
    border-top: none;
    padding: 20px;
}

.address-block__title {
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.address-block__linchevrone {
    font-size: 0.875rem;
    line-height: 1.4;
}


.products-section__title {
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-row {
    display: grid;
    grid-template-columns: 80px 1fr 100px 100px;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid #e8e8e8;
}

.product-row img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: #f8f8f8;
}

.product-info__title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.product-info__meta {
    color: #666;
    font-size: 0.75rem;
}

/* totals */
.order-totals {
    max-width: 320px;
    margin-left: auto;
    font-size: 0.875rem;
}

.order-totals__row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.order-totals__row--bold {
    font-weight: 600;
}

.profile-order-container .bordered-data {
    border: 1px solid #e1e1e1;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 767.98px) {
    .profile-order-container {
        padding: 1.5rem 1.25rem;
    }

    .product-row {
        grid-template-columns: 60px 1fr 70px 70px;
        gap: 1rem;
    }
}

.country__selector .dropdown-options {
    z-index: 1003;
    margin-bottom: 10px;
}

.country__selector .custom-dropdown-container .reset-password-form {
    justify-content: center;
}

.reset-password-container .register__form h2 {
    text-align: left;
}

.selectize-dropdown .selected {
    background-color: #E9E4E1;
}

.selectize-dropdown {
    background-color: white;
    overflow: hidden;
}

.selectize-zipcode-item {
    margin-bottom: 5px;
    padding-left: 5px;
}

.selectize-dropdown-content {
    max-height: 200px !important;
    overflow-y: scroll;
    scrollbar-width: none;
}

.cart-area {
    color: #333;
    align-items: center;
}

.cart-area .container {
    margin: 0 auto;

}


.cart-title {
    text-align: center;
    margin-bottom: 30px;
    padding-top: 15px;
}

.cart-title h1 {
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
}

.cart-title .cart-count {
    display: block;
    color: #777;
    font-size: 14px;
    margin-top: 5px;
}



/* ---- Two-column Layout ---- */
.cart {
    display: flex;
    gap: 30px;
}

.cart-left {
    flex: 2;
}

.cart-right {
    flex: 1;
}

.cart-left h3 {
    font-size: 18px;
    color: #555;
}

.cart-left a {
    display: inline-block;
    color: #000;
    text-decoration: none;
}

.cart-item {
    display: flex;
    padding: 24px 16px;
    border-bottom: 1px solid #eee;
    width: 100%;
    max-width: 100%;
    gap: 16px;
}

.item-image {
    width: 150px;
    height: 210px;
    flex: 0 0 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% 56%, transparent 45%, rgba(0, 0, 0, .05));
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.item-details {
    display: flex;
    flex-direction: row;

}

.product-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1 1 auto;
    padding-left: 20px;

}

.quantity-price-container {
    display: flex;
    flex-direction: row;
}

.remove-item:hover .icon-trash:before {
    content: "\ea42";
}

.add-to-wishlist:hover .icon-heart:before {
    content: "\ea25";
}

.item-title {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 500;
}

.item-color,
.item-size {
    font-size: 14px;
    color: #555;
    margin-bottom: 3px;
}

.item-actions {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.item-actions button {
    display: flex;
    align-items: center;
    gap: .25rem;
    border: none;
    background: none;
    font: inherit;
    cursor: pointer;
    white-space: nowrap;
}


/* ── top row : title left • qty+price right ─────────── */
.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.8rem;
}

.info-left {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.item-title {
    font-weight: 600;
}

.item-color,
.item-size {
    font-size: .9rem;
    color: #555;
}

.info-right {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 0.45rem;
    min-width: 90px;
}


.item-quantity .nice-select.quantity-selector {
    border: 1px solid #212121;
    flex: 1;
    background-color: white;
    border-radius: 0%;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    transition: border-color 0.3s, box-shadow 0.3s;
    width: 60px;
    padding-top: 5px;
    padding-left: 8px;
    padding-right: 8px;
    padding-bottom: 8px;

}

.item-quantity .nice-select.quantity-selector::after {
    right: 10px;
}

.item-quantity .nice-select.quantity-selector .list {
    min-width: 50px;
}

.item-quantity .nice-select.quantity-selector .list {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 60px;
    margin-top: 4px;
    box-sizing: border-box;
    border: 1px solid #212121;
    border-radius: 0;
    background: #fff;
    z-index: 10;
    max-height: 200px;
    overflow-y: auto;
    scrollbar-width: none;
}

.item-quantity .nice-select.quantity-selector .option {
    padding: 6px 0;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
}

.item-quantity .nice-select.quantity-selector .option:hover,
.item-quantity .nice-select.quantity-selector .option.focus {
    background: #f5f5f5;
}

.item-quantity .nice-select.quantity-selector .option.selected {
    background: #ececec;
    font-weight: 600;
}

.quantity-selector .nice-select .option {
    border-radius: 0% !important;
}


/* ---- Price Column ---- */
.item-price {
    display: flex;
    flex-direction: column;
    text-align: right;
    font-size: 16px;
    padding-left: 20px;
    gap: 5px;
}

.discount-price {
    color: #e30513;
    display: block;
}

.original-price {
    text-decoration: line-through;
    color: #333;
    display: block;

}

.price {
    font-weight: 500;
    color: #e30513;
}

/* ---- Right-hand Overview ---- */
.cart-right {
    padding: 40px 30px 30px 50px
}

.cart-right h2 {
    font-size: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    text-align: center;
}

.voucher-section {
    margin-bottom: 25px;
}

.voucher-section span {
    display: block;
    margin-bottom: 20px;
    font-size: 14px;
}

.voucher-section input {
    width: calc(100% - 100px);
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    vertical-align: middle;
}

.voucher-section button {
    width: 95px;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #333;
    background: #fff;
    color: #333;
    text-transform: uppercase;
    cursor: pointer;
    vertical-align: middle;
    font-weight: 600;
}

.price-summary .summary-row,
.price-summary .summary-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 15px;
}

.price-summary .summary-total {
    font-size: 17px;
    font-weight: 600;
    border-top: 1px solid #ddd;
    padding-top: 15px;
    margin-top: 15px;
}

.checkout-btn {
    font-family: 'Gilroy', sans-serif !important;
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    font-size: 16px;
    text-transform: uppercase;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
}

.selectize-control.single .selectize-input:not(.no-arrow):after {
    content: "\ea04";
    font-family: "iconfont";
    position: absolute;
    font-size: 15px;
    top: 50%;
    right: 25px;
    margin-top: -10px;
    width: none !important;
    height: none !important;
    border-style: none !important;
    border-width: none !important;
    border-color: none !important;
}

.selectize-control.single .selectize-input:not(.no-arrow).dropdown-active:after {
    content: "\ea07";
}


.delete-profile-data-btn {
    background-color: darkred;
    text-align: center;
    max-width: 500px;
}

.delete-account-btn {
    background-color: darkred;
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.delete-account-container {
    border: 1px solid #ddd;
    padding: 20px;
}

.delete-account-form p {
    line-height: 20px;
    margin-bottom: 15px;
}

.delete-account-form {
    max-width: 500px;
}

.delete-account-form h4 {
    font-size: 18px;
    margin-bottom: 20px;
}


.map-gray-background {
    background-color: #f5f5f5;
}


.container-padding {
    padding: 20px;
}

.show__stores {
    display: flex;
    gap: 20px;
    height: 80vh;
}

.show__box_left {
    flex: 1;
    max-width: 400px;
    background: white;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow-y: hidden;
    ;
}

.show__map {
    flex: 2;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

#map {
    height: 100%;
    width: 100%;
    z-index: 1;
    border-radius: none;
}

.input-with-icon {
    position: relative;
    margin-bottom: 15px;
}

.input-with-icon input {
    width: 100%;
    padding: 12px 40px 12px 12px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.input-with-icon .icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.use-my-location {
    color: #000102;
    cursor: pointer;
    margin-bottom: 20px;
    font-size: 14px;
    text-decoration: underline;
}

.use-my-location:hover {
    color: #0056b3;
}

.stores-list {
    max-height: calc(100% - 100px);
    overflow-y: auto;
    scrollbar-width: none;
}

.store-container-background {
    margin-bottom: 10px;
}

.store-container {
    padding: 15px;
    border: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.store-container:hover {
    background-color: #f8f9fa;
}

.store-data {
    flex: 1;
}

.title {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
    cursor: pointer;
}

.address {
    color: #666;
    font-size: 14px;
}

.show-more-store-data {
    margin-left: 10px;
    flex-shrink: 0;
}

.btn-show-more {
    cursor: pointer;
    padding: 5px;
    color: #007bff;
    display: inline-block;
    transition: transform 0.2s;
}

.btn-show-more.rotateArrow {
    transform: rotate(180deg);
}

.more-store-data {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.contact-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.store-contact {
    flex: 1;
    min-width: 200px;
}

.store-contact a {
    color: #333;
    text-decoration: underline;
}

.store-contact a:hover {
    text-decoration: underline;
}

.store-opening-hours {
    flex: 1;
    min-width: 200px;
}

.store-opening-hours .title {
    font-weight: bold;
    margin-bottom: 5px;
}

.travel-directions {
    margin-bottom: 10px;
}

.mobile {
    display: block;
    margin-bottom: 5px;
}

.email {
    display: block;
}

.leaflet-popup-content .title {
    font-weight: bold;
    margin-bottom: 5px;
}

.leaflet-popup-content .details {
    color: #333;
    cursor: pointer;
    text-decoration: underline;
}

/* Mobile toggle buttons - HIDDEN on desktop */
.mobile-btn {
    display: none;
    background: white;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-mobile-stores {
    display: inline-block;
    padding: 15px 20px;
    background: #f8f9fa;
    border: none;
    cursor: pointer;
    width: 50%;
    text-align: center;
    transition: background-color 0.2s;
}

.btn-mobile-stores.active-btn {
    background: #007bff;
    color: white;
}

/* Mobile store locations view - HIDDEN on desktop */
.mobile.store-locations {
    display: none;
    background: white;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 970px) {
    .container-padding {
        padding: 10px;
    }

    .show__stores {
        flex-direction: column;
        height: auto;
    }

    .mobile-btn {
        display: block;
    }

    .map-gray-background .show__box_left {
        display: none;
    }

    .mobile.store-locations {
        display: block;
    }

    .show__map {
        height: 60vh;
    }

    #map {
        height: 60vh;
    }
}

@media (max-width: 480px) {
    .container-padding {
        padding: 5px;
    }

    .btn-mobile-stores {
        padding: 12px 15px;
        font-size: 14px;
    }

    .show__map {
        height: 50vh;
    }

    #map {
        height: 50vh;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
    }

    .store-contact,
    .store-opening-hours {
        min-width: auto;
    }
}

.more-store-data {
    padding-top: 0%;
    margin-top: 0%;
    border-top: none;
}

#shopping-cart-popup {
    height: 100vh;
    width: 450px;
    background-color: #ffffff;
    position: fixed;
    right: 0;
    z-index: 1000000;
    display: none;

}

#shopping-cart-popup .continue-shopping {
    text-align: center;
    margin-top: 20px;
    display: block;
    cursor: pointer;
    background: white;
    border: 1px solid black;
    color: black;
    width: 100%;
    padding: 15px;
    text-transform: uppercase;
    word-break: break-all;
}

#shopping-cart-popup .continue-shopping:hover {
    background: black;
    color: white;
    transition: none;
}

#shopping-cart-popup .continue-shopping a {
    transition: none;
}

@media only screen and (max-width: 480px) {
    #shopping-cart-popup {
        width: 96%;
        margin: 0 auto;
    }
}

#shopping-cart-popup .f-container {
    flex-direction: column;
    max-height: 100%;
    width: 100%;
    overflow-y: scroll;
    height: 100%;
    display: flex;
    border-bottom-left-radius: 0.75rem;
    border-bottom-right-radius: 0.75rem;
}

#shopping-cart-popup .f-container::-webkit-scrollbar {
    width: 5px;
}

#shopping-cart-popup .f-container::-webkit-scrollbar-track {
    background-color: #e4e4e4;
    border-radius: 100px;
}

#shopping-cart-popup .f-container::-webkit-scrollbar-thumb {
    border-radius: 100px;
    background: #cccccc;
}

#shopping-cart-popup .header-container {
    width: 100%;
    padding: 10px 20px 30px;
    position: sticky;
    top: 0;
    z-index: 1;
    background-color: #ffffff;
    border-bottom: solid 1px rgb(229, 231, 235);
}

#shopping-cart-popup .header-container .header-container-grid {
    display: grid;
    grid-template-columns: 90% 10%;
    align-items: center;
}

#shopping-cart-popup .header-container .header-container-grid div:last-child {
    text-align: right;
}

#shopping-cart-popup .header-container .header-container-grid div svg {
    width: 15px;
}

#shopping-cart-popup .header-container .header-container-grid div svg:hover {
    stroke: rgb(253, 189, 69);
}

#shopping-cart-popup .header-container .title {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: #333;
    text-align: center;
}

#shopping-cart-popup .main-container {
    flex-grow: 1;
    background-color: #fff;
}

#shopping-cart-popup .main-container .notice-container {
    background-color: #ffffff;
    padding: 20px 20px;
}

#shopping-cart-popup .main-container .articles-in-cart-list {
    padding: 20px 20px;
    display: grid;
    row-gap: 25px;
    grid-template-columns: auto;
}

#shopping-cart-popup .main-container .articles-in-cart-list .empty-cart-text {
    color: #333;
    font-size: 26px;
    text-align: center;
}

#shopping-cart-popup .main-container .articles-in-cart-list .article-box {
    background-color: #ffffff;
}

#shopping-cart-popup .main-container .articles-in-cart-list .article-box .top-container {
    row-gap: 25px;
    display: grid;
    column-gap: 15px;
    grid-template-columns: 100px auto;
}

#shopping-cart-popup .main-container .articles-in-cart-list .article-box .top-container .p-img {
    width: 100%;
    height: 100px;
    background-image: linear-gradient(0deg,
            rgba(241, 239, 240, 0.5),
            rgba(241, 239, 240, 0.5));
}

#shopping-cart-popup .main-container .articles-in-cart-list .article-box .top-container .p-img img {
    width: 100%;
    height: 100%;
    border-top-left-radius: 0.75rem;
    object-fit: contain;
    mix-blend-mode: multiply;
    padding: 10px;
}

#shopping-cart-popup .main-container .articles-in-cart-list .article-box .top-container .p-title {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: #333;
}

#shopping-cart-popup .main-container .articles-in-cart-list .article-box .top-container .p-title a:hover {
    color: #333;
}

#shopping-cart-popup .main-container .articles-in-cart-list .article-box .top-container .p-size {
    font-size: 15px;
    line-height: 1.2;
    color: #464546;
    margin-top: 6px;
    margin-bottom: 6px;
}

#shopping-cart-popup .main-container .articles-in-cart-list .article-box .top-container .p-price-group span {
    display: inline-block;
}

#shopping-cart-popup .main-container .articles-in-cart-list .article-box .top-container .p-price-group .price {
    color: #000;
    display: inline-block;
}

#shopping-cart-popup .main-container .articles-in-cart-list .article-box .top-container .p-price-group.discount .price {
    display: inline-block;
}

#shopping-cart-popup .main-container .articles-in-cart-list .article-box .top-container .p-price-group.discount .price span {
    --tw-text-opacity: 1;
    color: darkred;
    display: inline-block;
}

#shopping-cart-popup .main-container .articles-in-cart-list .article-box .top-container .p-price-group .old-price {
    display: inline-block;
    margin-left: 5px;
}

#shopping-cart-popup .main-container .articles-in-cart-list .article-box .top-container .p-price-group .old-price span {
    display: inline-block;
    --tw-text-opacity: 1;
    color: #333;
    text-decoration-line: line-through;
}

#shopping-cart-popup .main-container .articles-in-cart-list .article-box .bottom-container {
    padding: 10px;
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    border-bottom: solid 1px #472723;

}

#shopping-cart-popup .main-container .articles-in-cart-list .article-box .bottom-container:last-child {
    text-align: right;
}

#shopping-cart-popup .main-container .articles-in-cart-list .article-box .bottom-container .basket-rm-btn {
    float: left;
    display: inline-block;
}

#shopping-cart-popup .main-container .articles-in-cart-list .article-box .bottom-container .remove-from-basket-btn {
    display: grid;
    column-gap: 5px;
    color: #472723;
    cursor: pointer;
    grid-template-columns: 15px auto;
}

#shopping-cart-popup .main-container .articles-in-cart-list .article-box .bottom-container .remove-from-basket-btn svg {
    width: 15px;
}

#shopping-cart-popup .footer-container {
    border-top-width: 2px;
    padding: 10px 20px 30px;
    bottom: 0;
    background-color: #ffffff;
    position: sticky;

    box-shadow: 0 2px 10px 2px rgba(0, 0, 0, 0.08);

}

#shopping-cart-popup .footer-container .subtotal-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: #333;
    margin-bottom: 20px;
}

#shopping-cart-popup .footer-container .subtotal-container div:last-child {
    text-align: right;
}

.footer__menu .hover__line::after {
    background-color: white;
}

.remove-from-basket-btn:hover svg path {
    stroke: darkred;
}

.close-shopping-cart-popup-btn:hover svg path {
    stroke: #333;
}


.form-style-1 .form-input-group label,
.form-style-1 .form-textarea-group label {
    margin-bottom: 4px;
    display: flex;
    flex-direction: column;
}

.form-style-1 input[type="text"],
.form-style-1 input[type="password"],
.form-style-1 input[type="email"],
.form-style-1 input[type="number"] {
    padding: 10px 15px;
    border: 1px solid #212121;
    max-width: 500px;
    width: 100%;
    padding-top: 15px;
}



.form-style-1 textarea {
    display: block;
    max-width: 500px;
    width: 100%;
    border-radius: 0.25rem;
    border-width: 1px;
    border-color: #d0cbca;
    padding: 1rem 1.25rem;
    font-size: 14px;
    line-height: normal;
    outline: 2px solid #0000;
    outline-offset: 2px;
    min-height: 100px;
}

/* CHECKBOX group start */
.form-style-1 .form-checkbox-group {
    display: block;
    margin-bottom: 40px;
}

.form-style-1 .form-checkbox-group input {
    padding: 10px 15px;
    border: 1px solid #212121;
    width: 100%;
    padding-top: 15px;
}

.form-style-1 .form-checkbox-group label {
    position: relative;
    cursor: pointer;
    font-weight: 400;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.form-style-1 .form-checkbox-group label:before {
    content: "";
    background-color: transparent;
    background: #ffffff;
    border: 1px solid #bdbdbd;
    box-sizing: border-box;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 10px;
    width: 22px;
    height: 22px;
}

.form-style-1 .form-checkbox-group input:checked+label:after {
    content: "";
    display: block;
    position: absolute;
    top: 3px;
    left: 8px;
    width: 7px;
    height: 12px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.form-style-1 .form-checkbox-group input:checked+label:before {
    background: #472723;
    border-color: #472723;
}

/* CHECKBOX group end */

/* RADIO group start */

.form-style-1 .form-radio-group {
    margin-top: 5px;
}

.form-style-1 .form-radio-group input:checked,
.form-radio-group input:not(:checked) {
    position: absolute;
    left: -9999px;
}

.form-style-1 .form-radio-group input:checked+label,
.form-radio-group input:not(:checked)+label {
    position: relative;
    padding-left: 32px;
    cursor: pointer;
    display: inline-block;
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    display: flex;
    align-items: center;
    margin: 0 0 0px;
}

.form-style-1 .form-radio-group input:checked+label:before,
.form-radio-group input:not(:checked)+label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border: 1px solid #bdbdbd;
    border-radius: 100%;
    background: #fff;
}

.form-style-1 .form-radio-group input:checked+label:after,
.form-radio-group input:not(:checked)+label:after {
    content: "";
    width: 12px;
    height: 12px;
    background: #472723;
    border: 1px solid #472723;
    position: absolute;
    top: 5px;
    left: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.form-style-1 .form-radio-group input:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.form-style-1 .form-radio-group input:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.form-style-1 .form-radio-group input:focus~label {
    top: 0;
}

/* RADIO group end */

.form-style-1 .form-select-group .nice-select {
    width: 100%;
    margin-bottom: 10px;
}

.form-style-1 button {
    background: #212121;
    max-width: 500px;
    width: 100%;
    border: none;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    padding: 15px;
    display: block;
    font-size: 14px;
}


.form-style-1 .form-holder {
    margin: 15px 0;
}

.form-style-1 .form-button-group .spinner {
    display: none;
    float: left;
    margin-top: 2px;
    margin-right: 5px;
}

.form-style-1 .form-alert-message {
    margin: 15px 0;
}

.form-style-1 .validationMessages {
    color: darkred;
    font-size: 12px;
    display: none;
}

.form-style-1 .errorValidation {
    border-color: darkred !important;
}

.form-style-1 .validationMessages:not(:empty).extra-space {
    margin-top: -12px;
    margin-bottom: 8px;
}

.search-results {
    background-color: white;
    display: grid;
    grid-template-columns: repeat(4, minmax(200px, 1fr));
    gap: 1rem;
    padding-bottom: 20px;
    padding-left: calc(108px - 2vw);
    padding-right: calc(108px - 2vw);
    padding-top: 50px;
}
.search-results {
    display: none;
}
.search-results-title {
    display: none;
    padding-top: 10px;
    background-color: white;
    padding-left: calc(108px - 2vw);
    padding-right: calc(108px - 2vw);
    font-size: 20px;
    line-height: 41px;
    color: #212121;

}


.search-result {
    position: relative;
    background: radial-gradient(circle at 50% 56%, transparent 45%, rgba(0, 0, 0, .05));
    overflow: hidden;
    transition: box-shadow 0.2s;
    padding: 5px;
}


.search-result:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sr-main-link {
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
}

.sr-image {
    width: 100%;
    padding-top: 100%;
    position: relative;
    background: radial-gradient(ellipse at center, #fff 40%, #f5f5f5);
}

.sr-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

/* 5) Title + price */
.sr-info {
    padding: 0.5rem;
    text-align: center;
}

.sr-title {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 0.25rem;
}

.sr-price-group {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    gap: 0.5rem;
}

.sr-price-discount {
    font-size: 1rem;
    font-weight: bold;
    color: darkred
}

.sr-price-regular {
    font-size: 1rem;
    color: #333;

}

#in_address,
#city {
    min-width: 500px;
}

@media (max-width: 1200px) {
    .input-containers {
        flex-direction: column;
        gap: 0px !important;
        margin-bottom: 0px !important;

    }

    #in_address,
    #city {
        min-width: 0;
    }
}

@media (max-width: 991px) {
    .desktop-user-icon {
        display: none;
    }
    .search-results {
        padding-top: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .search-results-title {

        padding-left: 20px;
        padding-right: 20px;

    }
}

.header__menu>ul>li.active>.outter__area {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

@media (max-width: 991px) {

    .search-result {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 0.75rem;
        border-bottom: 1px solid #e0e0e0;
        max-width: 120px;
        max-height: 100px;
    }
    
    .search-results-title {
        padding-top: 40px;
    }

    .search-results {
        grid-template-columns: repeat(1, minmax(200px, 1fr));
    }


    .product-box {
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: center;
    }

    .sr-price-group {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 15px;
    }

    .account-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.account-page__link-wrapper {
    display: none;
}


@media (max-width: 1024px) {
    .account-container .sidebar {
        display: none;

    }

    .account-page__link-wrapper {
        display: block;
    }



    .account-container .welcome-section {
        border-left: none;
        border-right: none;
        border-bottom: none;
    }

    .input-containers {
        flex-direction: column;
        gap: 0px !important;
        margin-bottom: 0px !important;
    }

    .profile-content {
        display: flex;
        flex-direction: column;
    }

    .sidebar {
        flex: 1 1 auto;
        max-width: 100%;
    }


}

.quick-link-chevron {
    display: none;
}

@media (max-width: 768px) {

    .order-meta th {
        width: auto;
        display: block;
    }

    .order-meta td {
        display: block;
    }

    .product-row {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .address-grid {
        grid-template-columns: 1fr;
    }

    .quick-links {
        display: flex;
        flex-direction: column;
    }



    .account-container .quick-link {
        display: flex !important;
        flex-direction: row !important;

    }

    .quick-link-description {
        text-align: left;
        padding-left: 25px;
    }

    .welcome-section {
        border: none !important;
    }

    .quick-link-chevron {
        padding-left: 45px;
    }

    .quick-link-chevron {
        margin-left: auto;
        padding-left: 15px;
        flex-shrink: 0;
        display: block;
    }

    .quick-link {
        border: 1px solid #e1e1e1;
        margin-bottom: 10px;
    }

}

.account-page__link::before {
    font-family: iconfont;
    content: "\ea05";
    font-size: 14px;
    left: -3px;
    margin-right: 10px;
    position: relative;
}

.icon-password::before {
    content: "\ea18";
}

.error-page {
    color: #1a1a1a;
    background: #fafafa;
    padding: 3rem 1rem;
    margin-inline: auto;
}

.error-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}
.error.container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.error-left {
    width: 100%;
    max-width: 400px;
    padding-left: 0;
}

.error-right {
    width: 100%;
    max-width: 300px;
    margin-left: 0;
}

.oops {
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .85rem;
    margin: 0 0 .25rem;
}

.code {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin: 0 0 1rem;
}

.msg {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.back-btn {
    background: #212121;
    width: 100%;
    border: none;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    padding: 15px;
    display: block;
    font-size: 14px;
    text-align: center;
}

.error-right img {
    width: 100%;
    height: auto;
    opacity: .6;
    max-width: 300px;
}

@media (min-width:480px) {
    .code {
        font-size: 4.5rem;
    }

    .msg {
        font-size: 1.15rem;
    }
}

@media (min-width:768px) {
    .error-page {
        padding: 4rem 2rem;
    }

    .error-right img {
        max-width: 350px;
    }
}

@media (min-width:992px) {
    .error-container {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 4rem;
    }

    .error-left {
        flex: 0 0 400px;
        padding-left: 10px;
        max-width: none;
    }

    .error-right {
        margin-left: auto;
        width: auto;
        max-width: none;
    }

    .code {
        font-size: 6rem;
    }

    .msg {
        font-size: 1.25rem;
        margin-bottom: 2.75rem;
    }

    .error-right img {
        max-width: 400px;
    }
}


@media (max-width: 1024px) {
    .cart {
        display: flex;
        flex-direction: column;
    }

    .cart .item-price {
        text-align: left;
        padding-left: 20px;
        flex-direction: column;
        gap: 5px;
    }
}

.fw-bold {
    font-weight: 500 !important;
}

@media (max-width: 768px) {

    .cart .item-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart .item-price {
        text-align: left;
        padding-left: 20px;
        flex-direction: column;
        gap: 5px;
    }

}

@media (max-width: 480px) {

    .cart-item {
        padding: 16px 0;
        gap: 22px;
        max-width: 100%;
        overflow: hidden;
    }

    .cart-item .item-image {
        width: 82px;
        height: 108px;
        flex: 0 0 82px;
    }

    .cart-item .item-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .cart-item .product-panel {
        flex: 1 1 auto;
        min-width: 0;
        padding-left: 0;
        gap: 16px;
    }

    .cart-item .product-panel .item-header {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 8px;
        flex-wrap: wrap;
        width: 100%;
    }

    .cart-item .item-header .info-left {
        flex: 1 1 auto;
        min-width: 0;
    }

    .cart-item .item-title {
        overflow-wrap: anywhere;
        word-break: break-word;
        font-size: 15px;
        line-height: 1.3;
    }

    .cart-item .item-color,
    .cart-item .item-size {
        font-size: 13px;
    }

    .cart-item .item-header .info-right {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        gap: 8px;
        min-width: 0;
        text-align: right;
    }

    .cart-item .item-quantity select.quantity-selector {
        max-width: 60px;
    }

    .cart-item .item-price {
        white-space: nowrap;
        font-size: 15px;
        padding-left: 0%;
    }

    .cart-item .item-price .original-price {
        font-size: 13px;
    }

    .cart-item .item-actions {
        margin-top: 10px;
        gap: 8px 16px;
        flex-wrap: wrap;
    }

    .cart-item .item-actions button {
        font-size: 13px;
    }

    .cart-right {
        padding: 24px 0 0 0;
    }

    .cart {
        gap: 0;
        flex-direction: column;
    }


}

.cart__double__item {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
}

.cart__double__item .cart__image {
    flex: 1 1 0;
    max-width: calc(50% - 5px);
}

.cart__double__item .cart__image img {
    width: 100%;
    height: auto;
    display: block;
}

.cart__mobile-swiper-wrapper {
    display: none;
}

@media (max-width: 768px) {
    .account-container .welcome-section {
        padding: 0;
    }
}

@media (max-width: 991px) {
    .slider__button__holder {
        width: 45px !important;
    }

    .cart__left .cart__view {
        display: none !important;
    }

    .cart__mobile-swiper-wrapper {
        display: block;
        width: 100%;
        position: relative;
        margin-bottom: 24px;
    }

    .cart__mobile-swiper {
        width: 100%;
        height: auto;
        overflow: hidden;
    }

    .cart__mobile-swiper .swiper-wrapper {
        align-items: stretch;
    }

    .cart__mobile-swiper .swiper-slide {
        width: 100% !important;
    }

    .cart__mobile-swiper-slide {
        position: relative;
        width: 100%;
        padding-top: 100%;
    }

    .cart__mobile-swiper-slide>img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        background: #fff;
    }

    .cart__mobile-swiper-prev,
    .cart__mobile-swiper-next {
        color: #212121;
        width: 32px;
        height: 32px;
        margin-top: -16px;
    }

    .cart__mobile-swiper-pagination {
        position: absolute;
        bottom: 8px;
        left: 0;
        right: 0;
        text-align: center;
    }

    .cart__right .cart__added__item {
        padding: 24px 16px;
    }

    .cart__content {
        flex-direction: column;
        align-items: center;
    }

    .cart__right {
        width: 100%;
    }
}
.img-wrap {
  position: relative;
  overflow: hidden;
}

.img-wrap.loading::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 10;
  pointer-events: none;
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.img-wrap.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  border: 4px solid rgba(0,0,0,0.2);
  border-top-color: rgba(0,0,0,0.7);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  z-index: 11;
  pointer-events: none;
}
.product__favourite {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 25px;
    color: #000000;
    z-index: 9;
    display: flex;
}
.cart__added__item {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "title favorite"
    "info  info";
  gap: 1rem  
}
.added__item__title { 
  grid-area: title; 
}

.cart__right .product__favourite {  
  grid-area: favorite;
  justify-self: end;    
  align-self: start;    
  position: static;     
  margin: 0;            
}

.cart__item__info {
  grid-area: info;
}

@media (max-width: 991px) {
    .quick__buy {
        display: none;
    }

}

.img-wrap {
  width: 100%;            
  aspect-ratio: 1 / 1;   
  position: relative;
  overflow: hidden;
}
 
.img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;   
}

.product__mini__image .product-color-swatch {
  display: inline-block;       
  width: 40px;                 
  aspect-ratio: 1 / 1;         
  position: relative;          
  overflow: hidden;

}

.product__mini__image .product-color-swatch img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding-left: 2px;
    padding-right: 2px;
}

.img-wrap img.lazy {
  opacity: 0;
  transition: opacity .3s ease;
}

.img-wrap img.lazy.loaded {
  opacity: 1;
}

.product__mini__image .product-color-swatch img.lazy {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product__mini__image .product-color-swatch img.lazy.loaded {
  opacity: 1;
}
.custom-cart-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  display: none;        
}

.swiper-pagination-bullet-active {
    background: #333;
}

@media (max-width: 991px) {
   .previous__page-mobile {
        display: block !important;
   }
}

#header__offcanva .offcanva__sub {
  z-index: 2; 
}
#header__offcanva .tab-content {
  overflow: visible !important;
}

#header__offcanva .offcanva__menu {
  position: relative;
  overflow: visible !important;  
}


#header__offcanva .offcanva__menu .offcanva__sub {
  position: absolute !important;
  top: 0 !important;             
  left: 0 !important;
  width: 100% !important;
  height: auto !important;      
  margin: 0 !important;          
  transform: translateX(100%) !important; 
  z-index: 2 !important;         
}
.offcanva__menu .submenu__collapse a[data-bs-toggle="collapse"] .iconfont {
  transition: transform 0.3s ease;
}

.offcanva__menu .submenu__collapse a[data-bs-toggle="collapse"]:not(.collapsed)
  .icon-angle-category-down {
  transform: rotate(180deg);
}

.offcanva__menu .submenu__collapse a[data-bs-toggle="collapse"].collapsed
  .icon-angle-category-down {
  transform: rotate(0deg);
}
#header__offcanva .offcanva__menu .offcanva__container.active .offcanva__sub {
  transform: translateX(0) !important;
}

#header__offcanva #pills-tabContent,
#header__offcanva #offcanvasExample {
  overflow: visible !important;
}

#header__offcanva .offcanva__menu:has(.offcanva__container.active) .sub__offcanva {
  transform: translateX(-115%);
}


#header__offcanva .offcanva__menu:has(.offcanva__container.active) 
  .offcanva__container > a {
  position: relative;
  transform: translateX(-115%);
}
#header__offcanva .offcanva__main__area .contact__offcanva {
  transition: transform 0.5s ease;
}
#header__offcanva .offcanva__tab__area:has(.offcanva__menu .offcanva__container.active)
  ~ .offcanva__main__area .contact__offcanva {
  transform: translateX(-115%);
}
#header__offcanva #pills-tab {
  display: flex;
  width: auto;
}
#header__offcanva #pills-tab .nav-link {
  flex: 1 1 auto;
  text-align: center;
}

#header__offcanva .nav-pills .nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;      
}


#header__offcanva .nav-pills .nav-link img {
  height: 80px;            
  object-fit: cover;
  object-position: top center; 
}

#pills-tab .nav-link.active span {
  position: relative;
  display: inline-block;
}

#pills-tab .nav-link span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1px;
  width: 100%;
  background: #212121;
  transform: scaleX(0);              
  transform-origin: left center;
  transition: transform 0.3s ease;  
}

#pills-tab .nav-link.active span::after {
  transform: scaleX(1);
}

@media (min-width: 991px) {

    .previous__page-mobile {
        display: none !important;
    }
    .cart__content {
        margin-top: 20px;
    }
}

.reset-password-container .input__container, .reset-password-container .form__btn  {
    max-width: 500px;
}

.validation-error-message {
    padding-top: 5px;
}

.media-banner {
  position: relative;
  width: 100vw;
  height: 1500px;
  overflow: hidden;


  margin-left: calc((100% - 100vw) / 2); 
}

.media-banner__link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.media-banner__bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}

.media-banner__overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.media-banner__content {
  position: relative;
  z-index: 3;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 0 1rem;
  max-width: 700px;
}

.media-banner__subline {
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  color: #fff;
}
.media-banner img {
    height: 100%;
    object-fit: cover;
} 
.media-banner__headline {
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 0.25rem 0 1rem;
  color: #fff;
}

.media-banner__text {
  font-size: 0.75rem;
  line-height: 1.4;
  margin-bottom: 2rem;
  color: #fff;
  opacity: 0.9;
}

.media-banner__button {
  display: inline-block;
  background: #fff;
  color: #000;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border-radius: 2px;
  transition: opacity .2s ease;
}

.media-banner__button:hover {
  opacity: 0.8;
}
@media (max-width: 991px) {
  .new__baner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  .new__banner-img {
    width: 100%;
    flex: none;
  }
  .new__banner-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .new__banner--content {
    width: 100%;
    padding: 2rem 1rem;
    background: #EAEAEA;
    text-align: center;
  }
  .new__banner--content span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
  .new__banner--content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  .new__banner--content a {
    width: 100%;
    max-width: 200px;
    margin: 0.5rem auto;
    padding: 0.75rem 0;
    font-size: 0.875rem;
  }

/*   .media-banner img {
    height: 100%;
    object-fit: cover;
  } */
}
.offcanva__menu .submenu__collapse a[data-bs-toggle="collapse"]{
  display:flex;
  align-items:center;        /* vertical centring */
  justify-content:space-between;
  width:100%;
}


.offcanva__menu .submenu__collapse a[data-bs-toggle="collapse"] .icon-angle-category-down{
  font-size:12px;
  line-height:1;
  transition:transform .3s ease;
  flex-shrink:0;            
}

.swiper-button-prev i, .swiper-button-next i {
    font-size: 25px;
}

.swatches-next i, .swatches-prev i {
    font-size: 15px;
}
.swatches-next, .swatches-prev {

    color: #333;
    background-color: white;
}

.swatches-next {
    right: 0px;
}

.swatches-prev {
    left: 0px;
}
.product-details-name {
  display: flex;
  flex: 1 1 0;
  gap: 0.5em;             
}


.discount-badge {
  display: inline-flex; 
  align-items: center;  
  justify-content: center; 
  background-color: #e60023;
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1;
  padding: 0.2em 0.4em;
  border-radius: 0.2em;
  margin: 0;            
  text-align: center;
  max-height: 20px;
  
}

.single__size__input.out-of-stock {
    pointer-events: none;
}

.single__size__input.out-of-stock label {
    background: #f5f5f5 !important;
    color: #999 !important;
    border-color: #e0e0e0 !important;
    cursor: not-allowed !important;
    opacity: 0.6;
}

.single__size__input.out-of-stock label:hover {
    background: #f5f5f5 !important;
    border-color: #e0e0e0 !important;
}



.single__size__input.out-of-stock input[type="radio"] {
    pointer-events: none;
}
body.overlay-popup .overlay-bg-popup {
  width: 100%;
  content: var(--tw-content);
  opacity: 0.4;
  z-index: 100000;
}
body.overlay-bg .overlay-bg-container {
  width: 100%;
  content: var(--tw-content);
  opacity: 0.4;
  z-index: 100000;
}
.content-popup {
  background-color: #ffffff;
  position: fixed;
  display: none;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  max-height: 100vh;
  max-width: 800px;
  margin: auto;
  top: 50%;
  z-index: 1000000;
  overflow: auto;
  padding: 32px 0 32px;
}

.content-popup::-webkit-scrollbar {
  width: 5px;
}

.content-popup::-webkit-scrollbar-track {
  background-color: #e4e4e4;
}

.content-popup::-webkit-scrollbar-thumb {
  background: #cccccc;
}

@media (min-width: 768px) {
  .content-popup {
    max-height: 600px;
  }
}

@media only screen and (max-width: 768px) {
  .content-popup {
    width: 90%;
    height: 96%;
  }



}
.product-details-name {
  display: flex;
  justify-content: space-between;
  align-items: center;     
  width: 100%;
  box-sizing: border-box;
  padding-top: 10px;
  padding-bottom: 5px;
}


.discount-badge-container {
  display: flex;
  align-items: center;    
  justify-content: center; 
}


.prodcut__details {
    height: 100%;
}

.color-swatches-slider .swiper-wrapper {
  display: flex;
  justify-content: flex-start;
}

.color-swatches-slider .swiper-slide {
  flex: 0 0 auto !important;
  width: auto !important;
}

.black {
    color: #333 !important;
}

.single__footer__collapse > a.collapse__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.single__footer__collapse > a .icon-arrow-down {
  transition: transform 0.3s ease;
  transform-origin: center center;
  font-size: 1em;   
  line-height: 1;
}

.single__footer__collapse > a[aria-expanded="true"] .icon-arrow-down {
  transform: rotate(180deg);
}


@media (min-width: 992px) {
/*     body:has(.header__menu > ul > li.active) .nav__map__container {
        padding-top: 65px;
    } */
    body:has(.header__menu > ul > li.active) .main__wrapper {
        padding-top: 35px;
    }
}


.social-link {
    padding-right: 15px;
}

.color-swatches-slider .swiper-slide {
  width: 40px !important; 
}
.color-swatches-slider .swatches-prev,
.color-swatches-slider .swatches-next { display: none; }

.color-swatches-slider.swiper-initialized .swatches-prev:not(.swiper-button-lock),
.color-swatches-slider.swiper-initialized .swatches-next:not(.swiper-button-lock) { display: flex; }

.video-teaser {
  display: flex;
  flex-direction: column;
  width: 100vw;
  margin-left: calc((100% - 100vw) / 2);
  margin-right: calc((100% - 100vw) / 2);
  overflow: hidden;
}

.video-teaser__top {
  width: 100%;
  max-height: 30vh;   
  object-fit: cover;
  display: block;
}

.video-teaser__bottom {
  width: 100%;
  min-height: 50vh;
  object-fit: cover;
  display: block;
}

.video-teaser__video--mobile {
  display: none;
}

@media (max-width: 600px) {
  .video-teaser__top.video-teaser__image {
    display: none;
  }
  .video-teaser__video--mobile {
    display: block;
    max-height: 30vh;   
    width: 100%;
    object-fit: cover;
  }
} 

.categories-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: center;
  background: #fff;
  margin-left: calc((100% - 100vw) / 2); 
  margin-right: calc((100% - 100vw) / 2);
  padding-top: 165px;
  padding-bottom: 165px;

}

.categories-intro {
  text-align: center;
  background-color: rgb(242, 241, 228);
  padding: 45px;
}

.categories-intro h1 {
  font-size: 2rem;
  margin: 0 0 0.75rem;
  font-weight: 700;
  color: #333;
}

.categories-intro p {
  color: #555;
  margin: 0 0 1rem;
  line-height: 1.5;
}

.categories-intro a {
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #000;
  transition: all 0.3s ease;
}

.categories-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px;
}

.categories-swiper {
  width: 100%;
  overflow: hidden;
}

.categories-swiper .swiper-wrapper {
  display: flex;
}

.categories-swiper .swiper-slide {
  flex-shrink: 0;
  width: auto;
}

.categories-slider__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 4;
  width: 20%;
  cursor: pointer;
}

.categories-slider__image {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.categories-slider__link {
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.categories-slider__caption {
  position: relative;
  bottom: 1.25rem;
}

.categories-slider__btn {
  background: #fff;
  border: none;
  padding: 0.6rem 1.1rem;
   cursor: pointer;
  transition: all 0.3s ease;
}


.categories-slider__arrow {
  width: 42px;
  height: 42px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #212121;
}
.categories-slider__arrow--right {
    margin-right: 15px;
}
.categories-slider__arrow--left {
    margin-left: 15px;
}
.categories-slider__arrow--right::before {
    content: "\ea06";
    font-size: 35px;
}

.categories-slider__arrow--left::before {
    content: "\ea05";
    font-size: 35px;
}


.categories-slider__arrow::after {
  font-size: 18px;
  color: #000;
}

.categories-slider__dots {
  margin-bottom: 20px !important;
}

.categories-slider__dots .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #bdbdbd;
  opacity: 1;
  margin: 0 4px !important;
  transition: all 0.3s ease;
}

.categories-slider__dots .swiper-pagination-bullet-active {
  background: #333;
}

.categories-slider__dots .swiper-pagination-bullet:hover {
  background: #999;
}

@media (max-width: 960px) {
  .categories-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .categories-intro {
    text-align: center;
  }
  
  .categories-slider__item {
    aspect-ratio: 2 / 3;
  }
}

@media (max-width: 768px) {

  .categories-intro h1 {
    font-size: 1.75rem;
  }
  
  
  .categories-slider__btn {
    padding: 0.5rem 0.9rem;
    font-size: 0.9rem;
  }
}


.categories-section {
  display: none; 
}

.categories-section.is-active {
  display: grid;
}
.collection-banner {
  display: grid;
  grid-template-columns: 2fr 1fr;   
  align-items: stretch;
  min-height: 640px;                
  background: #f6f6f6;
  margin-left: calc((100% - 100vw) / 2); 
  margin-right: calc((100% - 100vw) / 2);            
}

/* Left media */
.collection-banner__media {
  position: relative;
  overflow: hidden;
}
.collection-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;                /* crops like the screenshot */
  display: block;
}

/* Right panel */
.collection-banner__panel {
  background: #90b0a1;              /* sage green background */
  color: #0a0a0a;
  display: flex;
  align-items: center;              /* center content vertically */
  justify-content: center;
  padding: 24px;
}
.collection-banner__panel-inner {
  width: 100%;
  max-width: 440px;                 /* keeps text column narrow like shot */
  padding: 0 48px;
  text-align: left;
}

/* Text styles */
.collection-banner__eyebrow {
  margin: 0 0 22px 0;
  font-size: 14px;
  letter-spacing: .02em;
  opacity: .85;
  text-align: center;
}
.collection-banner__title {
  margin: 0 0 34px 0;
  font-size: clamp(36px, 4.5vw, 52px);
  line-height: 1.05;
  font-weight: 700;
  text-align: center;
}

/* CTA buttons */
.collection-banner__cta-group {
  display: grid;
  gap: 28px;
}
.collection-banner__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  min-height: 54px;
  border: 1px solid #2b2b2b;
  color: #0a0a0a;
  background: transparent;
  text-decoration: none;
  font-weight: 700;
  border-radius: 2px;
  text-align: center;
}
.collection-banner__cta:hover {
  background: #000;
  color: white;
}
.collection-banner__cta:active {
  transform: translateY(1px);
}

/* Responsive tweaks */
@media (max-width: 1024px) {
  .collection-banner {
    grid-template-columns: 1.6fr 1fr;
    min-height: 560px;
  }
  .collection-banner__panel-inner {
    padding: 0 36px;
  }
}



@media (max-width: 768px) {
  .collection-banner {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .collection-banner__panel {
    padding: 32px 0 40px;
  }
  .collection-banner__panel-inner {
    max-width: 520px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
  }
  .collection-banner__cta-group {
    gap: 18px;
  }
}
.collection-banner--lefttext .collection-banner__panel{
  background:#f2f1e4;           /* light beige like screenshot */
  justify-content:flex-start;   /* move block to the left edge */
}

.collection-banner--lefttext .collection-banner__panel-inner{
  max-width:440px;
  padding:0 48px;
  text-align:left;              /* left-aligned text */
  margin:0;                     /* no auto-centering */
}

/* Primary CTA (solid black) */
.collection-banner__cta--primary{
  background:#000;
  color:#fff;
  border-color:#000;
}
.collection-banner__cta--primary:hover{
  background:#111;
  color:#fff;
}

.collection-banner--lefttext .collection-banner__title {
    text-align: left;
}

.collection-banner--lefttext .collection-banner__eyebrow {
    text-align: left;
}

.collection-banner--lefttext .collection-banner__text {
    padding-bottom: 15px;
}
.icon-banner {
  padding: 70px 0;
  background: #fff; /* or transparent if inside a section */
  text-align: center;
}

.icon-banner__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.icon-banner__item {
  display: inline-block;
  width: 174px;
  height: 174px;
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}

.icon-banner__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.icon-banner__item:hover {
  transform: scale(1.05);
}

.product__view__slider .container 
{
    max-width: none !important;
}

.product__view__slider {
    margin-left: calc((100% - 95vw) / 2); 
    margin-right: calc((100% - 95vw) / 2); 
}
.cart__area .product__view__slider {
  margin-left: 0;
  margin-right: 0;
}
.services-line {
  padding: 56px 20px;
  background: #fff;
}

.services-line__row {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  justify-items: center;
  gap: 32px;
}

.services-line__item {
  text-decoration: none;
  color: #6b6b6b;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.services-line__item .iconfont {
  font-size: 44px;          
  line-height: 1;
  display: block;
  color: #6b6b6b;
}

.services-line__label {
  font-size: 13px;
  line-height: 1;
  color: #5a5a5a;
  background: #f2f2f2;
  padding: 4px 8px;
  border-radius: 2px;
  white-space: nowrap;
}

/* Hover effect */
.services-line__item:hover .iconfont {
  color: #4b4b4b;
}
.services-line__item:hover .services-line__label {
  background: #e9e9e9;
  color: #353535;
}

/* Responsive */
@media (max-width: 900px) {
  .services-line__row { grid-template-columns: repeat(2, 1fr); }
  
}
@media (max-width: 520px) {
  .services-line__row { grid-template-columns: 1fr; gap: 24px; }
    .services-line__item {
    flex-direction: row;
  }

}
.text-block {
  padding: 30px 0;
  margin: 0 auto;
}

.text-block h1 {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
  margin: 36px 0 14px;
  color: #111;
}

.text-block p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin: 0 0 24px;
  text-align: justify;
}
.video-teaser__top,
.video-teaser__bottom {
  outline: none;
}

.video-teaser__top::-webkit-media-controls,
.video-teaser__bottom::-webkit-media-controls {
  display: none !important;
}

@media (max-width: 992px) {
    .widget__social h3 {
        display: none;

    }
    .footer__social{
        text-align: center;
    }
    .social-link {
        padding-right: 25px;
        padding-left: 25px;
    }
}

@media (min-width: 992px) and (max-width: 1130px) {

    body:has(.header__menu > ul > li.active) .main__wrapper {
        padding-top: 55px !important;
    }
   
}

.categories-slider__arrow  {
     position: absolute;

}


.reset-forgotten-password-container {
    margin: 0 auto;
    max-width: 500px;
    padding: 20px;
}

.reset-forgotten-password-container h4 {
    margin-bottom: 10px;
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
}
.offcanvas {
  visibility: hidden;
  transform: translateX(-100%);
}

#header__offcanva {
  display: none;       
}

table.size-chart__table{
    text-align: center;
}

table.size-chart__table td{
    padding: 5px;
}

.main-center-block{
    padding-top: 0 !important;
}

.main__wrapper .data-copy{
    margin-top: 20px;
}

body .page-layout{
    display: flex;
    width: 100%;
    flex-direction: column;
    flex: 1;
}

.ro_img_footer {
    display: inline-flex;
    margin-top: 15px;
    gap: 10px;
}

.ro_img_footer img {
    max-width: 170px;
}

.buttons .video-teaser{
    position: relative;
}

.buttons .video-content-overly{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

.buttons a.video-button {
    display: inline-block;
    padding: 12px 25px;
    border: 1px solid #ffffff;
    text-decoration: none;
    font-weight: bold;
    background-color: #ffffff;
    color: #000000;
}

.buttons .video-banner-buttons{
    display: flex;
    gap: 5px;
}

.buttons .video-content-overly h1{
    font-size: 120px;
    line-height: 1;
    margin: 10px 0;
    color: #ffffff;
    font-weight: normal;
    margin-bottom: 20px;
}

.buttons .video-teaser__video--mobile{
    display: none;
}

@media (max-width: 991px) {
    .buttons .video-content-overly h1{
        font-size: 80px;
        margin-bottom: 15px;
    }
}

table tr td{
    border-width: 2px;
}

.country__selector .custom-select-box{
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
}