body.no-scroll {
  overflow: hidden;
}

.products-filters-overlay {
    display: none;
}

@media only screen and (max-width: 1199px) {
    .products-filters-overlay {
        display: block;
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100%;
        padding: 0;
        border: 0;
        background: rgba(0, 0, 0, 0.35);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 80;
    }

    .products-filters-overlay.is-visible {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .show__filter .mobile-filters-panel {
        display: block !important;
        position: fixed;
        top: 0;
        left: max(-420px, calc(48px - 100vw));
        width: min(420px, calc(100vw - 48px));
        max-width: calc(100vw - 48px);
        height: 100dvh;
        padding: 20px 15px calc(24px + env(safe-area-inset-bottom));
        overflow-y: auto;
        background: #fff;
        z-index: 100;
        visibility: hidden;
        pointer-events: none;
        transition: none;
        box-shadow: none;
    }

    .show__filter .mobile-filters-panel.mobile-filters-transition-ready {
        transition: left 0.3s ease, visibility 0s linear 0.3s;
    }

    .show__filter .mobile-filters-panel.mobile-filters-open,
    .show__filter.active .mobile-filters-panel.mobile-filters-open {
        left: 0;
        visibility: visible;
        pointer-events: auto;
        box-shadow: 8px 0 24px rgba(0, 0, 0, 0.16);
    }

    .show__filter .mobile-filters-panel.mobile-filters-open.mobile-filters-transition-ready,
    .show__filter.active .mobile-filters-panel.mobile-filters-open.mobile-filters-transition-ready {
        transition: left 0.3s ease;
    }

    .show__filter .mobile-filters-panel.mobile-filters-open .mobile-filters-header {
        margin-bottom: 16px;
        padding-bottom: 16px;
        border-bottom: 1px solid #CCCBC9;
    }

    .show__filter .mobile-filters-panel.mobile-filters-open .mobile-filters-header-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }

    .show__filter .mobile-filters-panel.mobile-filters-open .mobile-filters-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        padding: 0;
        border: 1px solid #000;
        background: #fff;
        color: #000;
        cursor: pointer;
        flex-shrink: 0;
    }

    .mobile-filter-selected-items {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 16px;
    }

    .mobile-filter-chip {
        padding: 0 12px;
        min-height: 40px;
        background: #000;
        color: #fff;
        font-size: 13px;
        font-weight: 800;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        border: 0;
        cursor: pointer;
        white-space: nowrap;
        line-height: 1;
    }

    .mobile-filter-chip i {
        margin-left: 0 !important;
        flex-shrink: 0;
    }

    .mobile-filters-count {
        min-width: 22px;
        height: 22px;
        margin-left: 8px;
        padding: 0 6px;
        border-radius: 999px;
        background: #000;
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
        flex-shrink: 0;
    }

    .vue-sort-menu-mobile {
        width: 100%;
        top: calc(100% + 8px);
        left: 0;
        right: auto;
        border-top: 1px solid #000 !important;
    }
}

@media only screen and (min-width: 1200px) {
    .plp-mobile-controls {
        display: none !important;
    }

    .plp-desktop-controls {
        display: flex !important;
    }

    .plp-desktop-chips {
        display: flex !important;
    }

    .show__filter:not(.active) .plp-filter-sidebar {
        display: block !important;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1279px) {
    .show__filter {
        display: flex;
        flex-wrap: nowrap !important;
        align-items: flex-start;
    }

    .show__filter:not(.active) .plp-filter-sidebar {
        display: block !important;
        width: 23% !important;
        flex: 0 0 23% !important;
        max-width: 23%;
    }

    .show__filter .plp-products-area {
        width: 75% !important;
        flex: 0 0 75% !important;
        max-width: 75%;
    }

    .show__filter.active .plp-products-area {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100%;
    }
}

.plp-filter-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.plp-filter-pill {
    min-height: 42px;
    height: 42px !important;
    width: auto;
    min-width: calc((100% - 16px) / 3);
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1;
    flex: 0 0 auto;
}

.plp-filter-size-scroll {
    max-height: 252px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #000000 #e4e4e4;
}

.plp-filter-size-scroll .plp-filter-pill-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-right: 10px;
}

.plp-filter-size-scroll .plp-filter-pill {
    min-width: 0;
    width: 100%;
}

.plp-filter-size-scroll::-webkit-scrollbar {
    width: 6px;
}

.plp-filter-size-scroll::-webkit-scrollbar-track {
    background-color: #e4e4e4;
    border-radius: 0;
}

.plp-filter-size-scroll::-webkit-scrollbar-thumb {
    border-radius: 0;
    background: #000000;
}

@media (hover: none), (pointer: coarse) {
    .plp-filter-pill:hover:not(.bg-black) {
        background-color: #fff !important;
        color: #000 !important;
    }
}

br[draggable=true] {
    display: none;
}

.collapse-element .faq_title {
    font-size: 30px;
    text-align: center;
    color: #444;
    font-family: MuseoRounded300, Arial, sans-serif
}

.collapse-element .faq_single {
    display: inline-block;
    font-size: 16px;
    text-align: left;
    color: #444;
    /*font-family: Montserat, Arial, sans-serif;*/
    line-height: 40px;
    width: 90%;
    padding-right: 15px;
}

.collapse-element  .faq_single:hover {
    cursor: pointer;
    color: #444;
    font-family: Montserat, Arial, sans-serif
}

.collapse-element .click_row:hover {
    cursor: pointer;
    color: #444
}

.collapse-element .faq-title-img-minus,
.collapse-element .faq-title-img-plus {
    width: 15px;
    height: 15px;
    float: right;
    vertical-align: middle;
    display: inline-block;
    margin-left: auto;
    position: absolute;
    right: 8px;
    top: 25%;
}

.collapse-element .faq-title-img-plus  {
    content:url("data:image/svg+xml,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 9'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23231f20;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3EUntitled-1%3C/title%3E%3Cpolygon class='cls-1' points='9 4.2 4.8 4.2 4.8 0 4.2 0 4.2 4.2 0 4.2 0 4.8 4.2 4.8 4.2 9 4.8 9 4.8 4.8 9 4.8 9 4.2'/%3E%3C/svg%3E");
}

.collapse-element .faq-title-img-minus {
    display: none;
    content:url("data:image/svg+xml,%3Csvg id='Livello_1' data-name='Livello 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15.0005 15'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23231f20;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3EClose%3C/title%3E%3Cpolygon class='cls-1' points='15 0.675 14.325 0 7.5 6.825 0.675 0 0 0.675 6.825 7.5 0 14.325 0.675 15 7.5 8.175 14.325 15 15 14.325 8.175 7.5 15 0.675'/%3E%3C/svg%3E");
}

.collapse-element .faq_content {
    overflow: auto;
    box-sizing: content-box;
    -moz-box-sizing: content-box;
    margin: 1% 0 2% 0;
    padding-left: 2%;
    color: #444;
    font-size: 14px;
    display: none;
}

.collapse-element .faq_hr {
    border-color: #f2f2f2;
    height: 1px
}


.load-more-articles-loader {
    display: none;
    margin-bottom: 5px;
    text-align: center;
}

.loader-s-1 {
    display: block;
    width: 48px;
    height: 48px;
    margin: 0 auto;
    border-radius: 50%;
    position: relative;
    animation: rotateLoaderS1 1s linear infinite
}
.loader-s-1::before, .loader-s-1::after {
    content: "";
    box-sizing: border-box;
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 5px solid #FFF;
    animation: LoaderS1ClipFix 2s linear infinite ;
}
.loader-s-1::after{
    inset: 8px;
    transform: rotate3d(90, 90, 0, 180deg );
    border-color: #FF3D00;
}

@keyframes rotateLoaderS1 {
    0%   {transform: rotate(0deg)}
    100%   {transform: rotate(360deg)}
}

@keyframes LoaderS1ClipFix {
    0%   {clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)}
    50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)}
    75%, 100%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
}

.w-\[60\%\] {
    width: 60%;
}

.w-\[35\%\] {
    width: 35%;
}

.leading-\[12px\] {
    line-height: 12px;
}

.\32xl\:w-\[60\%\] {
    width: 60%;
}

.\32xl\:w-\[35\%\] {
    width: 35%;
}

.already-have-an-account-btn{
    cursor: pointer;
}

button.pb-\[6px\].mt-6.border-primaryDark.border-b.hover\:border-accent1.forgot-password-btn{
    font-weight: bold;
    text-decoration: underline;
}

.errors{
    display: none;
    color: #fff;
    background: #f00000;
    padding: 5px;
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
}

.errors.success{
    display: none;
    color: green;
    background: none;
    padding: 0;
    padding-left: 0;
    padding-right: 15px;
    text-align: left;
    font-size: 20px;
}

.error-container {
    padding-bottom: 15px;
}

.hide-color{
    display: none;
}

.product-description ul{
    list-style: unset;
    margin: revert;
    padding: revert;
}

.hide-img-sp {
    display: none;
}

.desible {
    position: relative;
    color: #878d9d !important;
}
.desible:before {
    position: absolute;
    content: "";
    height: 54px;
    width: 1px;
    background: #878d9d;
    transform: rotate(-45deg);
    z-index: 1;
}
.desible:before {
    background: #878d9d !important;
    color: #fff !important;
}
.desible:hover {
    background: #878d9d !important;
    color: #fff !important;
}

.article-size-selection:hover{
    cursor: pointer;
    background-color: #000000;
    color:#fff;
}

.article-size-selection.selected{
    background-color: #000000;
    color:#fff;
}

input.article-color-selection{
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.color-pick-selection input[type="radio"]:checked ~ img{
    border: 1px solid #000;
}

img.popUpBasketArticleImage{
    max-width: 120px;
}

.popUpBasketArticleInfo{
    padding: 0 10px;
}

.popUpBasketArticleInfo .size-color-container{
    margin-top: 10px;
}

.popUpBasketArticleInfo .price{
    color: #000000;
}

.popUpBasketArticleInfo .size-color-container span{
    color: #878787;
    font-size: 15px;
}

.remove-from-basket-btn{
    cursor: pointer;
}

#shopping-cart-popup .total-section{
    border-bottom: 0;
}

#shopping-cart-popup .f-container{
    overflow: auto;
    /*height: calc(100% - 270px);*/
}

#shopping-cart-popup{
    z-index: 1000000;
    display: flex;
    justify-content: space-between;
}

body .overlay-bg-container {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0;
    background-color: #472723;
    opacity: 0;
    content: "";
}

body.overlay-bg .overlay-bg-container {
    width: 100%;
    content: var(--tw-content);
    opacity: 0.4;
    z-index: 100000;
}

.show-shopping-cart-btn .NumOfItems{
    background: red;
    position: absolute;
    height: 18px;
    width: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 11px;
    color: #fff;
    right: 35px;
    top: 25px;
}

.show-shopping-cart-btn .NumOfItems p{
    padding-top: 3px;
}

.percent-value{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
}

.plp-percent-value{
    margin-left: 8px;
    padding-top: 2px;
}

.quick-add-percent-value{
    margin-left: 8px;
    padding-top: 2px;
}

.price-group.discount .price{
    display: inline-flex;
    align-items: center;
}

.increase-article-qty-in-basket, .decrease-article-qty-in-basket{
    font-size: 22px;
}

.filter-color-checkbox, .filter-color-checkbox-mobile{
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.color-filter{
    cursor: pointer;
    position: relative;
}

.color-filter:focus,
.color-filter:focus-visible {
    outline: none;
}

.color-filter p{
    padding: 10px;
    text-align: center;
}

.filter-size-checkbox, .filter-size-checkbox-mobile, .filter-brand-checkbox, .filter-brand-checkbox-mobile, .filter-tag-checkbox, .filter-tag-checkbox-mobile{
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.filter-brand-checkbox-mobile{
    width: 100%;
    height: 100%;
}

#faqs-text-02 label:has(input[type="checkbox"]:checked)
{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}

#faqs-text-02 div label{
    cursor: pointer;
}

.color-filter span:has(input[type="checkbox"]:checked) {
    --tw-border-opacity: 1;
    border-color: rgb(0 0 0 / var(--tw-border-opacity));
    border-width: 1px;
    border-radius: 50%;
}

.tags label:has(input[type="checkbox"]:checked){
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}

.brandFilterImg:hover{
    -webkit-filter: invert(100%); /* Safari/Chrome */
    filter: invert(100%);
}

.brand-filter:has(input[type="checkbox"]:checked),
.brand-filter-mobile:has(input[type="checkbox"]:checked){
    -webkit-filter: invert(100%); /* Safari/Chrome */
    filter: invert(100%);
    font-weight: 900;
}

.woman-close-left-btn.filter-selected-items{
    display: inline-flex;
    column-gap: 10px;
}

.woman-close-left-btn{
    cursor: pointer;
}

.color-active label span{
    cursor: pointer;
}

.clearAllFilter{
    cursor: pointer;
}

.brandFilterImg{
    cursor: pointer;
}

.show__btns{
    cursor: pointer;
}

.sortBySelect, .btn-show-filter{
    font-weight: 900;
}

.brand-filter-mobile{
    max-width: 82px;
}

.brand-filter-mobile, .brand-filter-mobile .brandFilterImg, .brand-filter, .brand-filter .brandFilterImg{
    max-width: 82px;
}

@media screen and (max-width: 1201px){

    .brandFilterImg:hover{
        -webkit-filter: none; /* Safari/Chrome */
        filter: none;
    }

    .show-shopping-cart-btn .NumOfItems{
        right: 10px;
        top: 24px;
    }

    .brand-filter{
        position: relative;
    }
}

@media only screen and (max-width: 1030px) {
    .show-shopping-cart-btn .NumOfItems {
        right: 51px;
        top: 20px;
    }
}

@media screen and (max-width: 990px){
    .show-shopping-cart-btn .NumOfItems{
        right: 50px;
        top: 26px;
    }
}

@media screen and (max-width: 767px){
    .show-shopping-cart-btn .NumOfItems{
        top: 21px;
    }

    .mobile-hidden{
        display: none;
    }
}

@media screen and (max-width: 400px){
    .brand-filter-mobile, .brand-filter-mobile .brandFilterImg{
        max-width: 70px;
    }
}

#map{
    height: 790px;
}

.stores-list{
    height: 680px;
    overflow: auto;
}

.stores-list .store-container{
    background: #FAF2F0;
    padding: 30px;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: auto 40px;
    align-items: center;
}

.stores-list .show-more-store-data{
    text-align: center;
}

.stores-list .show-more-store-data .btn-show-more{
    font-size: 25px;
    cursor: pointer;
    display: inline-block;
}

.rotateArrow{
    transform: translateY(40%) rotate(180deg);
}

.contact-info{
    margin-top: 20px;
}

.store-data .title{
    font-weight: 900;
}

.store-contact{
    color: #F00000;
    font-weight: 900;
    line-height: 40px;
}

.store-opening-hours .title{
    margin-top: 20px;
    font-weight: 900;
    font-size: 16px;
}

.store-opening-hours .title:before{
    content: url("../img/time_icon.svg");
    vertical-align: sub;
    margin-right: 5px;
}

.store-contact .travel-directions:before{
    content: url("../img/location_icon.svg");
    vertical-align: sub;
    margin-right: 5px;
}

.store-contact .mobile:before{
    content: url("../img/phone_icon.svg");
    vertical-align: sub;
    margin-right: 5px;
}

.store-contact .email:before{
    content: url("../img/email_icon.svg");
    vertical-align: sub;
    margin-right: 5px;
}

.store-opening-hours .day-time{
    width: 260px;
    display: grid;
    grid-template-columns: 50% 50%;
}

.mobile-btn{
    display: none;
    margin-bottom: 20px;
    margin-top: 10px;
}

.mobile.store-locations{
    display: none;
    width: 100%;
}

.mobile-btn .active-btn{
    color: #fff;
    background: #000;
}

.page-title{
    margin-top: 20px;
}

.line{
    border-bottom: 1px solid #000;
    margin-bottom: 5px;
}
.line.mobile{
    margin-left: 10px;
    margin-right: 10px;
}

.use-my-location:before{
    content: url("../img/location_icon.svg");
    vertical-align: sub;
    margin-right: 5px;
}

.use-my-location{
    color: #f00;
    font-weight: 900;
    padding-bottom: 10px;
    cursor: pointer;
}

.mobile .use-my-location{
    padding-left: 10px;
}

.mobile.store-locations #search-stores-mobile{
    height: 44px;
    width: -webkit-fill-available;
    padding: 15px;
    padding-left: 45px;
    margin: 5px;
}

.mobile.store-locations #search-stores-mobile:focus-visible{
    outline: none;
}

.show__stores #search-stores{
    height: 44px;
    width: -webkit-fill-available;
    padding: 15px;
    padding-left: 45px;
    margin-bottom: 20px;
    border: none;
    display: inline-block;
}


.input-with-icon {
  position: relative;
  width: 100%; 
}

.input-with-icon .icon {
  position: absolute;
  left: 15px;        
  top: 35%;
  transform: translateY(-50%); 
  pointer-events: none; 
}

#search-stores:focus-visible{
    outline: 1px solid #000 !important;
}

@media screen and (max-width: 1500px){
    .show__stores .xl\:w-\[75\%\]{
        width: 63%;
    }
    .show__stores .w-\[23\%\] {
        width: 35%;
    }
    .stores-list .store-container{
        padding: 15px
    }
}

@media screen and (max-width: 1201px){
    .filter-tag-checkbox{
        display: none;
    }

    .tags label.border-black{
        position: relative;
    }

    .filter-tag-checkbox-mobile{
        width: 100%;
        height: 100%;
    }
}

@media screen and (max-width: 970px){
    .mobile-btn{
        display: grid;
        grid-template-columns: auto auto;
        column-gap: 5px;
    }

    .mobile-btn .btn-mobile-stores{
        width: 100%;
    }

    .show__stores .show__box_left{
        display: none;
    }

    .show__stores .show__map{
        width: 100%;
    }
    .page-title{
        display: none;
    }
    #map{
        height: 600px;
    }
    .leaflet-popup-content{
        width: 130px !important;
    }
    .leaflet-popup{
        left: -91px !important;
    }

    .container-padding.px-\[20px\]{
        padding-left: 0;
        padding-right: 0;
    }

    .stores-list{
        height: 100%;
    }
}

.mobile .stores-list .store-container{
    margin: 10px;
}

.leaflet-popup-content p{
    font-weight: 900;
}

.leaflet-popup-content .details{
    color: #f00;
    font-weight: 900;
    cursor: pointer;
}

.single-desktop-image.diff-color{
    display: none !important;
}

.slick-dots li img:nth-child(1) {
    display: block;
}

.slick-dots li img:nth-child(2) {
    display: none;
}

.slick-dots li.slick-active img:nth-child(1) {
    display: none;
}

.slick-dots li.slick-active img:nth-child(2) {
    display: block;
}

.slick-dots{
    bottom: 0 !important;
}

.menu-banner{
    height: 100%;
}

.add__bar a{
    text-align: center !important;
    color: #fff;
    cursor: pointer !important;
}

.owl-stage-outer{
    z-index: 99;
}

.border-transparent{
    border-color: transparent !important;
}

.brand-img-height{
    height: 100% !important;
}

div#map{
    z-index: 0;
}

.display-block-filter{
    display: block !important;
}

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

.group-hover\/mmenu1\:display-block-filter:hover{
    display: block !important;
}

.hover\:border-black:hover {
    --tw-border-opacity: 1;
    border-color: rgb(0 0 0 / var(--tw-border-opacity)) !important;
}

.until-free-shipping{
    margin-left: 5px;
    margin-right: 5px
}

#slider-shipping .ui-slider-handle,
#slider-shipping-basket .ui-slider-handle{
    display: none;
}

#slider-shipping,
#slider-shipping-basket{
    height: 6px;
    background: #DBDBDB;
}

.ui-slider-horizontal .ui-slider-range{
    background: #000;
}

.slider_color_free_shipping{
    background: #11BF2D !important;
}

.slider_text_free_shipping{
    color: #11BF2D;
}


body.overlay-popup .overlay-bg-popup {
    width: 100%;
    content: var(--tw-content);
    opacity: 0.4;
    z-index: 100000;
}

body .overlay-bg-popup {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0;
    background-color: #504d4d;
    opacity: 0;
    content: "";
}

.overlay-bg{
    overflow: hidden;
}

@media screen and (max-width: 1260px) and (min-width: 990px){
    div.menu-banner{
        display: none;
    }
}

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

.content-popup::-webkit-scrollbar {
    width: 5px;
}

.content-popup::-webkit-scrollbar-track {
    background-color: #e4e4e4;
    border-radius: 100px;
}

.content-popup::-webkit-scrollbar-thumb {
    border-radius: 100px;
    background: #cccccc;
}

@media (min-width: 768px) {
    .content-popup {
        max-height: 600px;
    }
}

@media only screen and (max-width: 768px) {
    .content-popup {
        width: 90%;
        height: 96%;
    }
}

.content-pop-up-container {
    padding: 20px;
}

.content-popup-text ul {
    margin-left: 30px;
    margin-bottom: 10px;
}

.close-popup-btn{
    right: 15px;
    position: absolute;
}

h3.content-popup-title,
.content-pop-up-container h1{
    font-size: 26px;
    font-weight: 900;
    line-height: 28.8px;
    margin-bottom: 20px;
}

.dropDown-menu-container{
    border-top: 2px solid;
    border-bottom: 2px solid;
}

.content-pop-up-container .description{
    padding-bottom: 15px;
}

.content-pop-up-container.dropdown-menu-data-container {
    padding-top: 15px;
}

.content-pop-up-container .dropDown-menu-container .dropdown-title{
    font-weight: 900;
    font-size: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
}

.content-pop-up-container .sizeTable{
    overflow: auto;
}

.title-icon i{
    position: absolute;
    right: 50px;
    padding-top: 12px;
    font-size: 30px;
}

.content-pop-up-container .dropdown-menu-data{
    display: none;
    padding-bottom: 10px;
}

.sizeTable table{
    width: 100%;
    margin-top: 10px;
    margin-bottom: 20px;
}

.sizeTable thead{
    background: #000;
    color: #fff;
    text-align: center;
}

.sizeTable thead tr th{
    padding-left: 5px;
    padding-right: 5px;
}

.sizeTable tbody{
    text-align: center;
}

.content-pop-up-container i.fas.fa-minus {
    font-size: 25px;
    padding-top: 17px;
}

.serch__active{
    z-index: 99 !important;
}

.btn-for-filters{
    position: fixed;
    bottom: 0;
    display: grid;
    grid-template-columns: 30% 70%;
    width: -webkit-fill-available;
    column-gap: 10px;
    left: 0;
    background: #fff;
    padding: 15px;
    z-index: 99;
}

.btn-for-filters button{
    padding: 12px 32px 12px 32px;
}

.clear-filters-btn:hover{
    color: #fff;
    background: #000;
}

div.mobile-filter{
    height: 100dvh;
}

.show-all-search-btn{
    cursor: pointer;
}

@media only screen and (max-width: 768px) {
    .brand__sliders .owl-stage,
    .brand__sliders .owl-item,
    .brand__sliders .owl-item div{
        height: 180px;
    }

    .brand__sliders .sm\:\!w-\[100px\]{
        height: 100% !important;
    }

    .brand__sliders .\!w-16{
        width: unset !important;
    }
}

@media only screen and (max-width: 500px) {
    .brand__sliders .owl-stage,
    .brand__sliders .owl-item,
    .brand__sliders .owl-item div{
        height: 150px;
    }

    .owl-carousel button.owl-dot{
        width: 10px;
        height: 10px;
    }

    .brand__sliders .sm\:\!w-\[100px\]{
        height: 100% !important;
    }
}

.addToWishlistButton{
    cursor: pointer;
}

.wishlist-icon{
    position: relative;
}

span.numItemsOnWishList{
    position: absolute;
    font-size: 13px;
    text-align: center;
    width: 100%;
    height: 100%;
    top: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
}

span.numItemsOnWishList:hover{
    color: #fff;
}

div span.brandImage img{
    max-width: 64px;
}

.articles-list-items .item-container{
    position: relative;
    box-sizing: border-box;
}

.articles-list-items .item-container .btn-wishlist button{
    /*position: absolute;
    bottom: 0;*/
}

button.change-password{
    margin-left: 15px;
}

.change-password input{
    margin-bottom: 10px;
}

.error-message-container {
    color: #c54b0f;
    font-size: 16px;
    font-weight: 500;
    display: none;
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 10px;
    width: 100%;
    text-align: center;
    border-radius: 5px;
    border: solid 1px #c54b0f;
}

.success-message-container {
    display: none;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    display: none;
    color: #198754;
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 10px;
    width: 100%;
    text-align: center;
    border-radius: 5px;
    border: solid 1px #198754;
}

.validation-error-message {
    display: none;
    margin-top: 2px;
    font-size: 13px;
    color: #c54b0f;
}

.validation-error-message.extra-ts {
    margin-top: 5px;
}

.plus-images-dashboard{
    right: 45px
}

.image-opacity-30 {
    filter: opacity(40%);
}

.order-container span img{
    height: auto;
    width: 100px;
}

.order-list-inside{
    grid-template-columns: 200px 400px;
}

.order-list-inside img{
    width: 200px;
}

form.edit-profile-form, .password-form{
    width: 602px;
}

form.edit-profile-form .iti--show-flags{
    width: 100%;
}

input#zip_code-selectized,
form.edit-profile-form .selectize-input input[type="text"]{
    font-size: 16px;
    padding: 0 5px !important;
    margin-top: 8px !important;
    vertical-align: baseline;
    display: inline-block !important;
    zoom: 1;
}

.selectizeInput.selectize-control .selectize-input.items.full .item {
    padding: 0 5px !important;
    margin-top: 8px;
}

.selectizeInput.selectize-control .selectize-input.items .item {
    font-size: 16px;
}

form.edit-profile-form .selectize-zipcode-item{
    padding: 5px;
}

.selectize-input>* {
    vertical-align: baseline;
    display: inline-block;
    zoom: 1;
}

form.edit-profile-form .selectizeInput .items{
    height: 50px;
    background: #fff;
    border-radius: 0;
}

form.edit-profile-form .selectize-dropdown .selected{
    background-color: #d9d9d9;
    color: #000;
}

.nice-select.withoutNiceSelect.selectizeInput.displayNone{
    display: none;
}

.edit-profile-form .fullWidth{
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

form.edit-profile-form .selectize-control{
    width: 100%;
}

@media only screen and (max-width: 1120px) {
    .order-list-inside{
        grid-template-columns: 150px 300px;
    }

    .order-list-inside img{
        width: 150px;
    }
}

@media only screen and (max-width: 990px) {
    form.edit-profile-form, .password-form{
        width: 100%;
    }
}

@media only screen and (max-width: 550px) {
    .order-list-inside{
        grid-template-columns: 150px auto;
    }
}
.store-opening-hours table tr td:first-child{
    padding-right: 30px;
}

.store-opening-hours table tr td{
    height: 30px;
}

.nice-select {
    width: 100% !important;
    border-radius: 0 !important;
    --tw-border-opacity: 1 !important;
    border-color: rgb(189 189 189 / var(--tw-border-opacity)) !important;
    height: 50px !important;
}

.nice-select .current{
    vertical-align: sub !important;
    font-size: 1rem !important;
}

.accordionItem .accordionItemHeading{
    cursor: pointer;
}

.gray-disabled{
    background: #878787;
}

.disable-link{
    pointer-events: none;
}

.filter-size-checkbox-mobile{
    width: 80px;
    height: 40px;
}

.font-bold{
    font-weight: bold;
}

.form-style-1 input[type="text"], .form-style-1 input[type="password"], .form-style-1 input[type="email"], .form-style-1 input[type="number"], .form-style-1 select {
    display: block;
    width: 100%;
    border-width: 1px;
    border-color: #d0cbca;
    padding: 1rem 1.25rem;
    font-size: 14px;
    line-height: normal;
    outline: 2px solid #0000;
    outline-offset: 2px;
}

.form-style-1 .validationMessages {
    margin-top: 10px;
    display: none;
    color: #fff;
    background: #f00000;
    padding: 5px;
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
}

.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

.alert {
    margin-top: 20px;
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.form-input-group.mb-3,
.form-select-group.mb-3,
.form-input-group{
    display: inline-block;
    width: 100%;
    padding-bottom: 10px;
    padding-top: 10px;
}

.form-style-1 .form-input-group:not(.mb-3){
    position: absolute;
}

.form-style-1 textarea {
    display: block;
    width: 100%;
    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: 200px;
}

.form-style-1 #submitFormBtn {
    width: auto;
    padding: 0 15px;
    margin-top: 25px;
    background: #F00000;
}

.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

.form-checkbox-group.mb-3{
    margin-top: 15px;
}

@media only screen and (max-width: 767px) {
    .form-input-group.mb-3,
    .form-select-group.mb-3{
        display: block;
        width: 100%;
    }
    .form-style-1 .form-input-group:not(.mb-3) {

    }
    .form-select-group.mb-3{
        margin-top: 25px;
    }
}

.mobile-filter .py-2.px-5 h2{
    position: relative;
    z-index: 99;
}

.profile .p-qty span{
    display: inline-block;
}

.item-container .items-center .rounded-full{
    border: 1px solid #dedede;
}

.color-filter span.color-circle{
    border: 1px solid #dedede;
}

.border-to-element{
    border: 1px solid;
}

.owl-carousel button.owl-dot{
    border: 1px solid #dedede;
    background: #DBDBDB !important;
}
.owl-dots button.active{
    background: #000 !important;
}

.reset_password{
    margin-right: 100px;
    margin-left: 150px;
    padding-bottom: 50px;
}

.reset_password #login-template-email,
.reset_password input#login-template-password,
.reset_password input#login-template-password-repeat{
    width: 400px;
    margin-top: 15px;
}

.reset_password .buttons-container button{
    margin-top: 30px;
    display: inline-block;
    padding: 5px 10px;
}

.reset_password .buttons-container .cancel-forgotten-password{
    margin-right: 5px;
    border: 1px solid #000;
}

.reset_password_container{
    max-width: 1000px;
}

.reset_password .errors{
    margin-top: 15px;
}

.owl-carousel .owl-stage-outer{
    height: fit-content !important;
}

.owl-carousel.image__slider .owl-stage-outer{
    text-align: -webkit-center;
}

.btn-show-filter{
    width: auto !important;
    padding-left: 7px;
    padding-right: 7px;
    max-width: 190px;
}

.article-box.basket-item {
    border: 1px solid;
    margin-bottom: 10px;
}

.article-box div.flex.items-center{
    flex: 1;
}

.article-box .popUpBasketArticleInfo{
    flex: 1;
}

.tag-Sustainable-container{
    width: 47px;
    height: 47px;
    background-color: #c3d669;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50px;
    right: 16px;
    z-index: 1;
}

.tag-Sustainable-container span.sustainable-icon img{
    height: 40px;
    width: 40px;
}

@media screen and (max-width: 1201px){
    .btn-show-filter{
       display: none;
    }
    .sortBySelect_form {
        display: none;
    }
}

.reset_password_container .success-message {
    color: green;
    margin-top: 10px;
}

span.empty_wishlist_content{
    font-size: 18px;
    padding-left: 15px;
}

.subscribeCheckbox_container{
    padding-top: 15px;
    padding-bottom: 10px;
}

.subscribeCheckbox_container #subscribeCheckbox{
    width: 20px;
    height: 20px;
}

.subscribeCheckbox_container label{
    display: flex;
    align-items: stretch;
    gap: 5px;
}

/*Popup stock by stores*/
.shop-stock-popup #mainContent .colorslistStock {
    display: inline-block;
}
.shop-stock-popup #mainContent .colorslistStock img {
    width: 50px;
}
.spacer_size_stock_popup {
    margin-top: 20px;
}
.size-refine-sizes {
    clear: both;
}
.size-refine-sizes>div:nth-child(odd) {
    margin-top: 5px;
}
.size-refine-sizes ul#uStock {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50px, 100px));
    column-gap: 10px;
}
.size-refine-sizes ul li label div {
    font-family: Arial;
    font-size: 14px;
    border: 1px solid #a3a3a3;
    font-weight: 400;
    padding: 10px;
    cursor: pointer;
    white-space: nowrap;
}
.size-refine-sizes ul li {
    float: left;
    padding: 0;
    position: relative;
    text-align: center;
    color: #444;
    margin-bottom: 7px;
    overflow: hidden;
    cursor: pointer;
}
.size-refine-sizes ul li div.radio, .size-refine-sizes ul li span {
    display: none;
}
.size-refine-sizes ul li label span:first-child, .size-refine-sizes.show-us-sizes ul li label span:nth-child(2) {
    display: block;
}
button#cboxCloseDelivery_stores {
    position: absolute;
    top: 10px;
    right: 10px;
}
.size-refine-sizes ul li.sel label div {
    border: 2px solid #2a7ab0;
    padding: 9px;
}
ul.color-refine-colors li ul li.sel img {
    border: 1px solid #000;
}
.check_stock_btn {
    margin-top: 20px;
}
#notify-about-stock {
    margin-top: 15px;
    color: #308c30;
}
#notify-about-stock #stock_email {
    border: 1px solid #a3a3a3;
    color: #000;
}
#notify-about-stock #stock_email_button {
    padding: 15px;
    display: inline-flex;
}
#notify-about-stock p#textofstockagreement {
    margin-top: 10px;
    display: inline-flex;
}
.check_stock_btn {
    margin-top: 20px;
}
.h-\[46px\] {
    height: 46px;
}
p#checkstosk-call-text {
    text-align: center;
    margin-top: 15px;
    font-style: italic;
    font-size: 14px;
}
p#checkstosk-store-link {
    text-align: center;
    color: #006da4;
}
#stock-stores-result .row-store-stock {
    border-top: 1px solid #a3a3a3;
    padding: 10px;
}
.stock-status-color-oos {
    background: red;
}
.stock-status-color-ons, .stock-status-color-ons-last, .stock-status-color-oos {
    margin-left: 8px;
    float: right;
    width: 16px;
    height: 16px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    margin-top: 3px;
}
b.row-store-stock-status-text {
    float: right;
}
.stock-status-color-ons {
    background: #24e26c;
}
.stock-status-color-ons-last {
    background: #ff9800;
}
ul.color-refine-colors {
    margin-top: 15px;
}


#formSearch input#searchItems{
    width: 350px;
}

.header__socail .group\/socail:first-child{
    margin-left: 20px;
}

@media screen and (max-width: 1750px) {
    #formSearch input#searchItems{
        width: 300px;
    }
    .header__socail .group\/socail{
        margin-left: 20px;
    }
}

@media screen and (max-width: 1680px) {
    .header__logo div:first-child{
        margin-right: 50px;
    }
    .header__menus .menu__link{
        margin-right: 5px;
    }
}

@media screen and (max-width: 1880px) {
    .mobile_search{
        display: block;
    }
    .search__mob{
        display: none;
    }
}

@media screen and (max-width: 1300px) {
    .header__menus .menu__link{
        margin-right: 5px;
    }
    .header__menus .menu__link a{
        font-size: 14px;
    }
    .header__socail .group\/socail {
        margin-left: 10px;
    }
}

@media screen and (max-width: 1215px) {
    .header__logo div:first-child{
        margin-right: 40px;
    }
}

@media screen and (max-width: 1201px) {
    .price-group.discount .price{
        display: inline-flex;
        align-items: center;
    }
}


@media screen and (max-width: 1100px) {
    .email-signup-lightbox {
        max-height: 100lvh !important;
    }
    .email-signup-lightbox {
        width: 800px !important;
        overflow: auto;
    }
}
@media screen and (max-width: 959px) {
    .email-signup-lightbox {
        width: calc(100% - 100px) !important;
    }
}
@media screen and (max-width: 600px) {
    .email-signup-lightbox {
        width: calc(100% - 30px) !important;
        overflow: auto;
    }
    .email-signup-lightbox {
        padding: 10px !important;
    }
}
@media screen and (max-width: 500px) {
    .email-signup-lightbox {
        width: 100% !important;
        font-size: 12px;
    }
}

.price-group.discount .old-price{
    display: block;
    font-size: 18px;
    font-weight: 400;
    margin-top: 5px;
}

.cookie-banner-consent {
    width: 100%;
    position: fixed;
    bottom: 0;
    padding: 20px 0;
    box-shadow: 0 -5px 25px 0 rgba(0, 0, 0, 0.10);
    background-color: #ffffff;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    z-index: 99999;
    overscroll-behavior: contain;
}

.cookie-banner-inner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    column-gap: 20px;
    grid-template-columns: auto 240px;
}

.button-cookie-group button:not(:last-child) {
    margin-bottom: 15px;
}

.button-cookie {
    width: 100%;
    cursor: pointer;
    padding: 15px;
    text-align: center;
    font-size: 13px;
}

.button-cookie.button-cookie-outlined {
    background-color: transparent;
    color: #000000;
    border: solid 1px #000000;
}

.cookie-banner-inner-container .consent-text {
    margin-bottom: 5px;
    line-height: 20px;
    text-align: justify;
}

@media only screen and (max-width: 1000px) {
    .cookie-banner-inner-container .consent-text {
        overflow: auto;
        max-height: 160px;
    }
    .button-cookie-group .button-cookie{
        padding: 6px;
    }
}

@media only screen and (max-height: 500px) {
    .cookie-banner-consent {
        height: 100%;
        overflow: scroll;
    }

    .cookie-banner-inner-container .consent-text {
        overflow: unset;
        max-height: unset;
    }
}

.cookie-banner-options {
    width: 100%;
    margin-top: 15px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-banner-options .switch {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 15px;
}

.cookie-banner-options .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-banner-options .slider.round {
    border-radius: 34px;
}

.cookie-banner-options .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    -webkit-transition: .4s;
    transition: .4s;
}

.cookie-banner-options input:checked + .slider:before {
    -webkit-transform: translateX(15px);
    -ms-transform: translateX(15px);
    transform: translateX(15px);
    background: #009090;
}

.cookie-banner-options .slider.round:before {
    border-radius: 50%;
}

.cookie-banner-options .slider:before {
    position: absolute;
    background-color: #000000;
    content: "";
    height: 20px;
    width: 20px;
    left: 0px;
    bottom: -7px;
    -webkit-transition: .4s;
    transition: .4s;
}

.cookie-banner-options .switch-option{
    display: flex;
    align-items: center;
    gap: 10px;
}

@media only screen and (max-width: 1250px) {
    .cookie-banner-inner-container {
        width: calc(100% - 40px);
    }
}

@media only screen and (max-width: 1000px) {
    .cookie-banner-inner-container {
        row-gap: 15px;
        grid-template-columns: auto;
    }
}


span.vendor-id-code:not(:empty)::before {
    content:"/";
    margin-left: 5px;
    margin-right: 5px;
}

span.code-style-color-size:not(:empty)::before {
    content:"/";
    margin-left: 5px;
    margin-right: 5px;
}

.click_row {
    position: relative;
    height: auto;
}

@media only screen and (max-width: 800px) {
    .collapse-element .faq_single {
        line-height: 1.2 !important;
    }
}

.table-container .document-table tbody tr th,
.table-container .document-table tbody tr td{
    border: 1px solid #000;
    padding: 10px;
}

.table-container table.document-table{
    width: 100%;
}

.articles-list-items .brand-container .brand-img img{
    width: 200px;
}

.articles-list-items .brand-container .brand-img{
    display: flex;
    justify-content: center;
}

.articles-list-items .brand-container .brand-inside{
    text-align: center;
}

.articles-list-items .brand-container .brand-inside a:hover .brand-title{
    text-decoration: underline;
}

.brands_list .show__pro{
    padding-left: 150px;
    padding-right: 150px;
}

.brands_list .show__pro h3{
    text-align: center;
}

@media only screen and (max-width: 1450px) {
    .brands_list .show__pro{
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media only screen and (max-width: 600px) {
    .brands_list .show__pro{
        padding-left: 20px;
        padding-right: 20px;
    }

    .tag-Sustainable-container{
        width: 37px;
        height: 37px;
    }

    .tag-Sustainable-container span.sustainable-icon img{
        height: 30px;
        width: 30px;
    }
}

@media only screen and (max-width: 550px) {
    .articles-list-items .brand-container .brand-img img {
        width: 150px;
    }

    .brands_list .articles-list-items{
        gap: 30px;
    }
}

.sub-items-menu-columns{
    min-height: 200px;
    height: auto;
}
@media only screen and (max-width: 1030px) {
    .desktop-navbar-menu {
        display: none;
    }
    .header__socail span.menu__bar{
        display: block;
    }
    .header__socail .numItemsOnWishList{
        display: none;
    }
    .header__socail .wishlist-icon{
        display: none;
    }
}

@media only screen and (max-width: 1450px) {
    .right-side-search {
        width: auto;
        min-width: 200px;
    }
}

@media only screen and (max-width: 1880px) {
    .header__active.active .search__mob {
        display: block;
        width: 100%;
    }
}

.tag-special-container{
    background-color: #ff0;
    padding: 3px 12px;
    width: fit-content;
}

.tag-special-container .tag-text{
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0;
    color: #292929;
    font-weight: 900;
}

.tag-special-container-article{
    display: inline-block;
    background-color: #ff0;
    position: absolute;
}

.tag-special-container-article .tag-text{
    line-height: 20px;
    letter-spacing: 0;
    color: #292929;
    font-weight: 900;
    padding: 5px 10px;
}

.tag-title-spacer{
    height: 28px;
    display: block;
    padding-bottom: 15px;
}

@media only screen and (max-width: 1201px) {
    .tag-special-container-article{
        position: relative;
    }

    .category-description{
        padding: 0 15px;
    }
}

.grid label.brand-filter{
    max-width: unset;
    padding: 10px;
    font-weight: 400;
}

.grid label.brand-filter label{
    width: 100%;
    text-align: left;
}

@media only screen and (max-width: 786px) {
    .brandsFilter-mobile-container {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media only screen and (max-width: 550px) {
    .brandsFilter-mobile-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.banner-ah-h{
    height: 39px;
}

.article-image{
    visibility: hidden;
}

.article-image.loaded{
    visibility: visible;
}

/*.sizeTable table tbody tr:first-child{
    background: #000;
    color: #fff;
}*/

.sizeTable .left-header{
    background: #000;
    color: #fff;
    border: 1px solid #fff;
}

.small_table.big{

}

.sizeTable tr:nth-child(even){background-color: #d8d8d8;}

.bg-black {
    background: #000;
    color: #fff;
}

.sizeTable table td{
    padding: 3px 10px;
    white-space: nowrap;
}

.article-image-wrapper {
    position: relative;
    height: 0;
    padding-top: calc(360 / 360 * 100%);
}

.article-image-wrapper__img {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    height: auto;
}

.divide-y.divide-slate-200 {
    padding-bottom: 80px;
}

.visibleSearch {
    display: block;
    opacity: 1;
    transition: opacity 0.3s linear;
}

.hiddenSearch {
    display: none;
}

#editCookieSettingsButton{
    cursor: pointer;
    color: rgb(38 114 242);
}

@media only screen and (max-width: 450px) {
    p.flex.items-center.text-base.text-black.leading-5.font-normal.info {
        font-size: 15px;
    }

    .tag-special-container .tag-text{
        font-size: 14px;
    }
}

@media only screen and (max-width: 400px) {
    p.flex.items-center.text-base.text-black.leading-5.font-normal.info {
        font-size: 14px;
    }
}

.buy-button:disabled,
.buy-button[disabled]{
    background-color: #BDBDBD;
    color: #FFFFFF;
    cursor: not-allowed;
}

.category-description h4{
    margin-bottom: 15px;
}

.category-description .category-content{
    text-align: justify;
}

.bcg-white{
    background: #fff;
}

div.mobile_bottom_menu{
    bottom: 0;
}

.bottom-spacer-100{
    margin-bottom: 100px;
}

.mobile__menu{
    overflow: auto;
}

.mobile-menu-container{
    z-index: 9999;
}

.mega__menu2.active,
.mega__menu{
    overflow: auto;
}

.bottom-spacer-30{
    padding-bottom: 30px;
}

.spacer_p_50{
    height: 50px;
}

@media (min-width:768px) and (max-width:956px) {
    .banner-show-container .md\:py-\[40px\]{
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .banner-show-container .grid-cols-2 a img.h-full{
        height: unset;
    }
}

.flex.spc-btwn{
    justify-content: space-between;
}

.spc-btwn-icons{
    gap: 50px;
}

.pdd-20{
    padding-bottom: 20px;
}

.color-000{
    color: #000;
}

.pdd-l-5{
    padding-left: 5px;
}

.gap-50{
    gap: 50px;
}

.border-red{
    border-width: 2px !important;
    border-color: #ff0000 !important;
}

.show{
    display: block;
    margin-bottom: 20px;
}

.newsletter-form .newsletterSubscription-ok{
    display: none;
}

.newsletter-form .newsletterSubscription-isSubscribed{
    display: none;
    color: green;
    font-size: 20px;
}

.newsletter-form .newsletterSubscription-ok p{
    color: green;
    font-size: 20px;
}

.edit-profile-form .nice-select .list{
    overflow: auto;
    max-height: 200px;
}

.min-price-x-days {
    /*color: #878787;*/
    font-size: 18px;
}

.min-price-x-days.hidden-elm {
    display: none;
}

.percent-value.hidden-elm {
    display: none;
}

.product-list-lowest-price-in-the-last-xx-days {
    display: block;
    color: #7A7E81;
    margin-top: 5px;
}

.wend-left-product-img{
    position: relative;
}

.item_tags{
    position: absolute;
    top: 10px;
    left: 0;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.item_tags_article{
    z-index: 9;
    position: absolute;
    top: 10px;
    left: 0;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.posRelative{
    position: relative;
}


/*Price slider*/

.price-container h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.price-inputs {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    margin-bottom: 20px;
}

.price-input {
    z-index: 9;
    /*display: flex;
    align-items: center;
    flex-direction: column;*/
}

.price-input span {
    margin-right: 5px;
    font-size: 1rem;
}

.price-input input {
    width: 70px !important;
    height: 30px;
    text-align: center;
    font-size: 15px;
    border: 1px solid #000;
    color: #000;
}

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

.slider {
    width: 100%;
    height: 5px;
    background: #ccc;
    border-radius: 2px;
    outline: none;
    appearance: none;
    position: absolute;
}

.slider::-webkit-slider-thumb {
    appearance: none;
    width: 24px;
    height: 24px;
    background: black;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: black;
    border-radius: 50%;
    cursor: pointer;
}

.slider-track {
    position: absolute;
    height: 5px;
    background: black;
    top: 0;
    z-index: 1;
    border-radius: 2px;
}

.price-container{
    height: 110px;
}

.price-input label{
    color: #000;
    display: block;
    font-weight: bold;
    font-size: 15px;
}

.input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #000;
    padding: 5px 15px;
    width: 100%; /* Adjust width as needed */
}

.input-wrapper span {
    margin-right: 5px;
    color: #000;
    font-size: 16px;
    font-weight: bold;
}

.input-wrapper input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 16px;
    width: 100%;
}

.input-wrapper input::placeholder {
    color: #000;
}

@media only screen and (max-width: 1725px) {
    .price-input input {
        width: 60px !important;
    }
}

@media only screen and (max-width: 1540px) {
    .price-input input {
        width: 50px !important;
    }
}

@media only screen and (max-width: 1449px) {
    .price-input input {
        width: 70px !important;
    }
}

.banner-video-section{
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
    border-radius: 0px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
}

.video-player{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    border-radius: 0px;
}

.banner-video-section .v-title{
    font-size: 48px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    max-width: 90%;
}

.banner-video-section .v-subtitle{
    font-size: 18px;
    max-width: 800px;
    text-align: center;
    color: white;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.image__slider .owl-stage{
    margin: 0 auto;
}

.banner-section-title{
    padding-left: 40px;
}

.four-in-line-images-container{
    margin: 40px 0;
}

.multiple-images-container{
    margin: 20px 0;
    margin-top: 10px;
}

@media only screen and (max-width: 1202px) {
    .banner-section-title {
        padding-left: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .banner-section-title {
        padding-left: 5px;
    }
}

.owl-carousel .owl-item img{
    /*max-height: 600px;*/
    width: 100%;
}

.gjs-cell{
    display: table-cell !important;
}

.flex-wrapper-main {
    display: flex;
    min-height: 100dvh;
    flex-direction: column;
}

.max-w-\[1530px\],
.max-w-\[2560px\]{
    width: 100%;
}

body{
    height: 100dvh;
}

.banner-video-section div.overlay{
    display: none;
}

/*ERROR popup*/
.error-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #47272344;
    justify-content: center;
    align-items: center;
    z-index: 9999999;
}

.error-popup-content {
    background: #fff;
    color: #000;
    padding: 35px;
    width: 500px;
    text-align: center;
    position: relative;
    font-weight: bold;
}

.error-popup-content .error-title{
    font-size: 26px;
    text-align: left;
}

.error-popup-content p.error-text-replace {
    margin-top: 30px;
    font-size: 16px;
    font-weight: normal;
}

.close-popUp-btn {
    position: absolute;
    right: 20px;
    top: 3px;
    font-size: 30px;
    cursor: pointer;
    color: #000;
    font-weight: 500;
}

.b-s-disabled{
    overflow: hidden;
}

@media only screen and (max-width: 600px) {
    .error-popup-content{
        margin: 0 20px;
    }
}

.section.dropdown-tabs {
    border-bottom: 1px solid #000;
    padding: 10px 0;
}
.dropdown-tabs .section-header {
    font-weight: bold;
    font-size: 28px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.dropdown-tabs .section-header img{
    height: 100%;
    width: 24px;
}

.dropdown-tabs .section-content {
    padding: 15px 0;
    text-align: justify;
}

.rotate {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

form#data-form {
    margin-top: 20px;
}

/*BLOG-template START*/
.img-center-container img.center-img{
    margin-left: auto;
    margin-right: auto;
}
h3.main-title{
    text-align: center;
}
div.blog-data-time{
    padding-bottom: 20px;
    color: #878787;
    font-size: 15px;
}
div.double-img{
    display: flex;
    justify-content: space-between;
    gap: 16px;
}
div.double-img img{
    width: calc(50% - 8px);
}
div.p-large{
    font-size: 24px;
    line-height: 140%;
    padding-top: 48px;
    padding-bottom: 32px;
    font-weight: 200;
}
div.p-small{
    font-size: 16px;
    line-height: 140%;
    padding-bottom: 40px;
}
p.img-caption{
    margin-top: 15px;
    margin-bottom: 40px;
    border-left: 2px solid #000;
    padding-left: 10px;
}
div.p-quotes{
    font-weight: bold;
    border-left: 2px solid #000;
    padding-left: 25px;
    margin-bottom: 40px;
}
h3.title-left{
    font-size: 28px;
    padding-bottom: 30px;
    padding-top: 48px;
    font-weight: bold;
}

div.border-separate{
    border-bottom: 1px solid #000;
}

div.p-small.two-columns{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    text-align: justify;
}

.blog-container .cover-photo {
    max-width: 1176px;
    width: 100%;
}



@media screen and (max-width: 900px){
    div.double-img{
        flex-wrap: wrap;
    }
    h3.main-title{
        font-size: 32px;
    }
    div.p-small.two-columns{
        grid-template-columns: 1fr;
    }

    div.double-img img{
        width: 100%;
    }
}

/*BLOG-template END*/

.footer {
    margin-top: 20px;
}
div.space-article{
    padding-bottom: 45px;
}

main .divide-y .py-2{
    padding-top: 0; /*Filter padding*/
    padding-bottom: 0; /*Filter padding*/
}

/*Custom spacing*/
.custom-carousel-space-set{
    padding-top: 10px;
    padding-bottom: 20px;
}

.banner-show-container .md\:pb-\[95px\]{
    padding-bottom: 45px;
}

.banner-show-container .pb-\[100px\]{
    padding-bottom: 45px;
}
.custom-space-category-title{
    margin-bottom: 16px;
}

.close-banner-btn{
    position: absolute;
    font-size: 20px;
    cursor: pointer;
    color: #535353;
    right: 16px;
    top: 7px;
}

/* For /returns content */
.max-w-\[912px\].m-auto .OutlineElement span{
    display: flex;
    flex-wrap: wrap;
}

.basket-alert-message {
    margin-bottom: 25px;
    padding: 12px 16px;
    color: #FAF2F0;
    background-color: #F00000;
}

/* SIZE GUIDE TABLE */
.dataframe.size-chart-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.dataframe.size-chart-table tr{
    background: #fff;
}

.dataframe.size-chart-table th,
.dataframe.size-chart-table td {
    border: 1px solid #000;
    padding: 10px 14px;
    text-align: center;
    font-size: 16px;
}

.dataframe.size-chart-table thead {
    background-color: #fbe5d6;
}

.dataframe.size-chart-table th {
    font-weight: bold;
    background-color: #fbe5d6;
    color: #333;
}

.best-price-badge {
    /* display: flex;
    flex-direction: row-reverse; */
    margin-bottom: 10px;
    margin-top: 10px;
}

/* .best-price-badge-mobile {
    margin-bottom: 10px;
    display: none;
}
 */

@media screen and (max-width: 1201px){
    /* .best-price-badge {
        display: none;
    } */

    /* .best-price-badge-mobile {
        display: block;
    } */
}

@media only screen and (max-width: 768px) {
    .gjs-cell {
        width:100%;
        display: contents !important;
    }
}

.multiple-images-container .banner-section-title{
    padding-bottom: 20px;
}

.img-center-w-title .explore-btn{
    justify-content: center;
}

.img-center-w-title .content-on-img{
    z-index: 99;
    text-align: center;
}

.hero2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.hero2__item {
  position: relative;
  overflow: hidden;

}


.hero2__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4; /* taller than wide */
  background: #eee;
}

.hero2__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills & crops, no distortion */
}


.hero2__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 28px;
  pointer-events: none;
}

.hero2__text {
  max-width: 75%;
  color: #fff;
  pointer-events: none;
}

.hero2__eyebrow {
  margin: 0 0 6px;
  font: 600 12px/1.2 system-ui, sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .9;
}

.hero2__title {
  margin: 0;
  text-transform: uppercase;
}

.hero2__arrow {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  pointer-events: all;
}

.hero2__arrow svg {
  width: 32px;
  height: 32px;
}

.hero2__item {
  overflow: hidden; 
}

.hero2__img img {
  transform: scale(1);
  transition: transform 400ms ease;
}

.hero2__item:hover .hero2__img img {
  transform: scale(1.06);
}

@media (max-width: 768px) {
  .hero2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hero2__title {
    font-size: 26px;
    line-height: 1.1;
  }
}
.cards3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0 auto !important; 
  padding-left: 10px !important;
  padding-right: 10px !important;
}

@media (max-width: 1023px) {
  .cards3 {
    display: block; 
  }
}


.cards3__item {
  display: block;
  color: inherit;
  text-decoration: none;
}

.cards3__media {
  position: relative;
  overflow: hidden;
  background: #eee;
  width: 100%;
  margin: 0 auto;
}

.cards3__img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.cards3__item:hover .cards3__img {
  transform: scale(1.05);
}

.cards3__logo {
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 80px;
  height: auto;
  max-height: 80px;
  object-fit: contain;
}

.cards3__title {
  margin: 16px 2px 0;
  font-weight: 600;
  font-size: 20px;
  font-family: "Helvetica", sans-serif;
}

.cards3 .owl-stage {
  display: flex;
  justify-content: center;
}

.cards3 .owl-item {
  display: flex;
  justify-content: center;
}

.cards3 .owl-nav {
  position: absolute;
  top: -50px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 10px;
}

.cards3 .owl-nav button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #333;
  transition: all 0.2s ease;
}

.cards3 .owl-nav button:hover {
  background: #333;
  color: #fff;
}

.cards3 .owl-dots {
  text-align: center;
  margin-top: 10px;
}
.highlighted-no {
    margin-left: 300px;
    padding-right: 60px;
}

.highlighted-yes {
    margin-left: 20px;
    padding-right: 20px;
}

@media (max-width: 1200px) {
    .highlighted-no {
        margin-left: 210px;
    }
}

@media (min-width: 1450px) {
    .highlighted-no {
        margin-left: 340px;
    }
}

@media (min-width: 1680px) {
    .highlighted-no {
        margin-left: 370px;
    }
}

/* .circle-sketch-highlight{
  position:relative;
    left:0.5em;
  
} */
.circle-sketch-highlight {
  position: relative;
  display: inline-block; 
  z-index: 0;
  padding: 0.15em 0.4em; 
}

.circle-sketch-highlight::before,
.circle-sketch-highlight::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -0.25em;
  width: calc(100% + 0.5em); 
  border: 2px solid #ff0303;
  border-radius: 50%;
  opacity: 0.7;
  box-sizing: border-box;
}

.circle-sketch-highlight::before {
  top: -0.2em;
  height: calc(100% + 0.25em);
  border-right-color: transparent;
  transform: rotate(2deg);
}

.circle-sketch-highlight::after {
  top: -0.05em;
  height: calc(100% + 0.45em);
  border-left-color: transparent;
  border-top-color: transparent;
  transform: rotate(-1deg);
}

#zoomModal{
  position: fixed;
  inset: 0;
  display: none;                
  align-items: center;
  justify-content: center;
  background: #fff;              
  z-index: 999999;
}
#zoomModal.open { display: flex; }

#zoomModal .inner{
  position: relative;
  width: 100vw;
  height: 100dvh;                
  padding: clamp(12px, 2vw, 24px);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

#zoomModalGallery{ width: 100%; height: 100%; }
#zoomModalGallery .slick-list,
#zoomModalGallery .slick-track{ height: 100%; }
#zoomModalGallery .modal-slide{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#zoomModalGallery .modal-zoom-img{
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.hover-zoom{
  position: relative;
  overflow: hidden;
  display: block;
  cursor: crosshair;            
  contain: layout paint;
}
.hover-zoom img{
  display: block;
  width: 100%;
  height: auto;
  transition: transform .25s ease, transform-origin .1s linear;
  will-change: transform, transform-origin;
  transform: translateZ(0);
}
.hover-zoom img.zoomed{ transform: scale(2.4); }

#zoomModal .close{
  position: absolute;
  top: clamp(12px, 2vw, 24px);
  right: clamp(12px, 2vw, 24px);
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; line-height: 1;
  color: #000;
  cursor: pointer;
  z-index: 4;
}

#zoomModal .slick-prev, #zoomModal .slick-next{
  width: 56px; height: 56px; z-index: 3;
}
#zoomModal .slick-prev{ left: 24px; }
#zoomModal .slick-next{ right: 24px; }
#zoomModal .slick-prev:before, #zoomModal .slick-next:before{
  font-size: 36px; line-height: 56px;
  color: #000; opacity: .9;
}
#zoomModal .slick-dots{ bottom: clamp(8px, 2vh, 24px); }
#zoomModal .slick-dots li button:before{ color: #000; opacity: .4; }
#zoomModal .slick-dots li.slick-active button:before{ opacity: .9; }
#zoomModal .inner{
  width: 100vw;
  height: 100dvh;
  padding: 0;                
}

@media (max-width: 768px) {

    #zoomModal .slick-arrow {
        display: none !important;
    }

}

.popUpBasketArticleInfo .p-price-group, .p-price-group .price, .p-price-group .pValue { white-space: nowrap; }

.all-items-link {
    padding-bottom: 15px;
}

.collection-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .collection-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .collection-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

.collection-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .collection-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .collection-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}
.unique-discount-price {
    display: none;
}
.brands-grid {
  gap: 48px !important;
}
.input-with-icon {
  display: flex;          
  width: 100%;            
}
.input-with-icon input {
  flex: 1;                
  min-width: 0;          
}
@media (max-width: 425px) {
    .price-size-color-container {
        flex-direction: column;
        align-items: flex-start;
    }
}

.registration-form .submit-btn:disabled {
    background: #BDBDBD;      
    color: #fff;
    opacity: 0.7;
}

.mob__slider .slick-dots {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mob__slider.slick-initialized .slick-dots {
  opacity: 1;
}

.newsletter-form .newsletter-subscribe-btn:disabled {
    background: #BDBDBD;      
    color: #fff;
    opacity: 0.7;
}

.login-form .submit-btn:disabled {
    background: #BDBDBD;
    color: #fff;
    opacity: 0.7;
}

.forgotten_password-form .submit-btn:disabled {
    background: #BDBDBD;
    color: #fff;
    opacity: 0.7;
}

.forgotten_password-form .cf-turnstile {
    max-width: 400px;
    margin-top: 12px;
}

  #delivery-addresses {
      --da-border: #d9d9d9;
      --da-text: #111;
      --da-muted: #6b6b6b;
      --da-bg: #fff;
      --da-accent: #0E66FF;
      --da-danger: #e10000;
  }

  #delivery-addresses {
      padding: 40px 20px 100px;
  }

  #delivery-addresses .da-wrap {
      max-width: 1530px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
  }

  #delivery-addresses .da-content {
      width: 69.7%;
  }



  @media (max-width:990px) {
      #delivery-addresses .da-content {
          width: 100%;
      }
  }

  #delivery-addresses .da-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 32px;
  }

  #delivery-addresses .da-title {
      position: relative;
      margin: 0;
      font-size: 36px;
      line-height: 36px;
      font-weight: 800;
  }

  @media (min-width:768px) {
      #delivery-addresses .da-title {
          font-size: 50px;
          line-height: 50px;
      }
  }


  #delivery-addresses .da-add-btn {
    display: flex;
      appearance: none;
      border: 0;
      background: var(--da-danger);
      color: #fff;
      font-weight: 900;
      padding: 0 18px;
      height: 48px;
      cursor: pointer;
      transition: background .15s ease, color .15s ease;
        align-items: center;
        justify-content: center;
        line-height: 1; 
        text-align: center;
        max-width: 140px;


  }

#delivery-addresses .add-button-container {
  display: flex;
  justify-content: flex-end; 
  align-items: flex-end; 
  padding-bottom: 20px;
}

  #delivery-addresses .da-add-btn:hover {
      background: #000;
      color: #fff;
  }

  #delivery-addresses .da-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
  }

  @media (min-width:768px) {
      #delivery-addresses .da-grid {
          grid-template-columns: 1fr 1fr;
      }
  }

  #delivery-addresses .da-card {
      position: relative;
      background: var(--da-bg);
      border: 1px solid var(--da-border);
      padding: 20px;
      min-height: 160px;
      color: var(--da-text);
  }

  #delivery-addresses .da-card.is-default {
      border-color: #000;
      box-shadow: inset 0 0 0 1px #000;
  }

  #delivery-addresses .da-card-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 8px;
  }

  #delivery-addresses .da-name {
      font-weight: 800;
  }

  #delivery-addresses .da-menu {
      background: transparent;
      border: 0;
      padding: 4px 8px;
      cursor: pointer;
      line-height: 1;
      font-size: 20px;
  }

  #delivery-addresses .da-line {
      margin-top: 3px;
  }

  #delivery-addresses .da-muted {
      color: var(--da-muted);
  }

  #delivery-addresses .da-badge {
      display: inline-block;
      margin-top: 12px;
      background: #eee;
      color: #000;
      font-size: 12px;
      font-weight: 700;
      padding: 4px 8px;
  }



  #delivery-add .iti {
    display:block;
  }

  #delivery-add .selectize-input.items {
    height: 50px;
    background: #fff;
    border-radius: 0;
  }
input#zip_code-selectized, form.add-address-form .selectize-input input[type="text"] {
    font-size: 16px;
    padding: 0 5px !important;
    margin-top: 8px !important;
    vertical-align: baseline;
    display: inline-block !important;
    zoom: 1;
}

form.add-address-form .selectize-dropdown .selected {
    background-color: #d9d9d9;
    color: #000;
}
#delivery-addresses .da-modal {
  position: absolute;
  z-index: 999;
  background: white;
  box-shadow: 0px 2px 10px rgba(0,0,0,0.15);
  border-radius: 4px;
  padding: 8px 0;
  width: 160px;
}

#delivery-addresses .da-modal.hidden {
  display: none;
}

#delivery-addresses .da-modal-content {
  display: flex;
  flex-direction: column;
}

#delivery-addresses .da-action {
  padding: 10px 16px;
  text-align: left;
  background: white;
  border: none;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

#delivery-addresses .da-action:hover {
  background-color: #f5f5f5;
}

#delivery-addresses .da-card {
  border: 1px solid #000;
  padding: 16px;
  position: relative;
}

#delivery-addresses .da-card.da-default {
  border: 2px solid #000;
}

#delivery-addresses .da-tag-default {
  display: inline-block;
  background-color: #888;
  color: white;
  font-size: 12px;
  font-weight: normal;
  padding: 4px 10px;
  border-radius: 2px;
  margin-top: 8px;
}

.pdp-tags {
    display: flex;
    flex-direction: column; 
    gap: 4px; 
}

.pdp-finale-sale-tag,
.pdp-exclude-from-all-promotions-tag {
    color: red;
}

.pdp-exclude-from-all-promotions-tag {
    margin-bottom: 4px;
}


.pdp_buy_btn_coming {
    background-color: #BDBDBD;
    color: #FFFFFF;
    cursor: not-allowed;
    margin-right: 0;
}

.pdp_buy_btn_coming:hover {
    background-color: #BDBDBD;
    color: #FFFFFF;
}

.pdp-release-date-date-time {
    font-weight: bold;
}

.order-status_badge {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 15px;
    padding-right: 15px;
    font-weight: bold;
}

.ordered-products-my-profile-tags {
  display: flex;
  gap: 5px;
  margin-top: 5px;
}

.ordered-products-my-profile-tags  .tag-label {
  background-color: #ED4B2B;
  color: white;
  padding: 2px 6px;
  text-align: center;
  border-radius: 5px;
  font-size: 14px;
}

.plp-info-tab {
    border-bottom: 0; 
    padding-bottom: 0; 
    margin-bottom: 0;
}

.nice-select {
  width: 100%;
  height: 48px;
  border: 1px solid #000 !important;
  border-radius: 0 !important;
  padding: 0 40px 0 12px;
  font-size: 15px;
  color: #000;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: normal;
  transition: border-color 0.15s ease;
}

.nice-select:hover,
.nice-select:focus,
.nice-select.open {
  border-color: #000 !important;
}

.nice-select::after {
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  height: 8px;
  width: 8px;
  right: 14px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}

.nice-select .current {
  font-weight: 400;
}

.nice-select .list {
  width: calc(100% + 2px) !important;
  left: -1px !important;
  box-sizing: border-box !important;
  border: 1px solid #000 !important;
  border-top: none !important;
  border-radius: 0 !important;
  margin-top: 0;
  background: #fff;
  box-shadow: none;
  z-index: 10;
}
.nice-select .current {
  font-weight: 600; 
}
.nice-select .option {
  padding: 10px 12px;
  font-size: 15px;
  color: #000;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #f5f5f5;
}

.nice-select.open .list {
  top: 100%;
  left: 0;
  right: 0;
}

.form-style-1 .submit-btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #6c757d !important;
}

.form-style-1 .submit-btn.disabled:hover {
    background-color: #6c757d !important;
}

#formDescription {
    margin-bottom: 15px;
}

.form-textarea-group {
    padding-top: 10px;
}

.form-style-1 .nice-select {
    width: 100%;
    height: 48px;
    border: 1px solid #d0cbca !important;
    border-radius: 0 !important;
    padding: 0 40px 0 12px;
    font-size: 15px;
    color: #000;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: normal;
    transition: border-color 0.15s ease;
}

.form-style-1 .nice-select .current {
    font-weight: normal;
}

.form-style-1 .nice-select .option.selected {
    font-weight: normal;
}

.form-style-1 .nice-select .option {
    padding-bottom: 5px;
    padding-top: 5px;
}

.form-style-1 .nice-select .list {
    border: 1px solid #d0cbca !important;
}

.form-style-1 .nice-select .list {
  max-height: 220px;       /* adjust to your preference */
  overflow-y: auto;         /* enable vertical scrolling */
  overflow-x: hidden;
}
.nice-select .list::-webkit-scrollbar {
  width: 6px;
}

.nice-select .list::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 3px;
}

.nice-select .list::-webkit-scrollbar-thumb:hover {
  background-color: #aaa;
}

.form-holder {
  display: flex;
  flex-direction: column; 
  gap: 16px;              
}

.form-input-group,
.form-select-group,
.form-textarea-group,
.form-checkbox-group,
.form-radio-group,
.form-file-group {
width: 100%;
  display: flex;
  flex-direction: column; 
}

.form-select-group .seperator {
    content: "";
    height: 50px;
}

.form-alert-message {
    width: calc(50% - 3px); 
}

.validationMessages.extra-space {
    position: absolute;

}
.file_upload_container {
  width: calc(50% - 3px);
  display: flex;
  flex-direction: column;
}

.file_upload_container label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}

.upload-btn {
  display: flex !important;
  flex-direction: row !important;  
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100%;
  background-color: #9e9595;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 24px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  user-select: none;
  border: none;
  box-sizing: border-box;
}

.upload-btn svg {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0;
  stroke: white;
  display: inline-block !important; 
}


.upload-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0; 
}


.upload-btn:hover {
  background-color: #F00000;
}

.upload-btn:active {
  background-color: #F00000;
  transform: scale(0.98);
}

.uploaded-attachments {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #333;
}

.file-item {
  background: #f8f9fa;
  border-radius: 0.4rem;
  padding: 0.4rem 0.75rem;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.file-item span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.remove-file {
  color: #dc3545;
  cursor: pointer;
  font-weight: bold;
  margin-left: 0.75rem;
  font-size: 1rem;
  transition: color 0.2s;
}


.file_upload_container .validationMessages {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
.upload-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0; 
}

.upload-btn span {
  display: inline-block;     
  line-height: 1;            
}
.uploaded-file {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ffffff; 
  border: 1px solid #dcdcdc; 
  color: #333;
  font-size: 14px;
  padding: 8px 12px;
  margin-bottom: 8px;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  padding-bottom: 5px;
}
.file-status.uploading {
  background-color: #ffffff; 
  border: 1px solid #dcdcdc; 
  color: #555; 
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  padding-bottom: 5px;
}

.remove-file {
  position: relative;
  width: 18px;
  height: 18px;
  border: none;
  background: transparent;
  cursor: pointer;
  margin-left: auto;
  transform: translateY(1px);
  opacity: 0.6;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.remove-file::before,
.remove-file::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background-color: #666;
  border-radius: 1px;
  transition: background-color 0.2s ease;
}

.remove-file::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.remove-file::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.taf-red {
    background-color: #F00000 !important;
}

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

.show-shopping-cart-btn .NumOfItems {
    position: absolute;
    right: -4px;
    top: -4px;
}

.region-settings-popup.display-show {
    display: flex;
}

.region-settings-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #100706bf;
    justify-content: center;
    align-items: center;
    z-index: 9999999;
}

.region-settings-popup .region-settings-content {
    background: #fff;
    color: #000;
    padding: 35px;
    width: 100%;
    max-width: 500px;
    position: relative;
    font-weight: bold;
}

.region-settings-popup .region-settings-content .region-popup-title {
    font-size: 26px;
    text-align: left;
    margin-bottom: 25px;
}

.region-settings-popup .close-popUp-btn {
    position: absolute;
    right: 12px;
    top: 16px;
    font-size: 30px;
    cursor: pointer;
    color: #000;
    font-weight: 500;
}

.region-settings-popup .selection-option-container {
    margin-bottom: 15px;
}

.region-settings-popup .selection-option-container label{
    margin-bottom: 4px;
}

.confirm-region-preference {
    width: 100%;
    padding:  12px 32px;
    color: #ffffff;
    background: #F00000;
}

.confirm-region-preference:hover {
    background: #FC4C4C;
}

.displayNone{
    display: none;
}

label.p-0{
    padding-left: 0 !important;
}

.registration-form label.containerss a{
    color: #00a2fe; cursor: pointer;
}

.hero-slider .swiper-slide {
    height: 100vh;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    /*z-index: 1;*/
}

/*.hero-slider-conf .hero-overlay{
    pointer-events: none;
}*/

.hero-container {
    max-width: 1800px;
    width: 100%;
    margin: 0 auto;
    height: 100%;
    position: relative;
}

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

.hero-slider {
    width: 100%;
    height: 100vh;
    position: relative;
}

.hero-slider-text{
    position: absolute;
}

.hero-container.top-left{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 100px;
}

.hero-container.top-center{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
}

.hero-container.top-right{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-top: 100px;
}

.hero-container.bottom-left{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 120px;
    justify-content: flex-end;
}
.hero-container.bottom-center{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 120px;
    justify-content: flex-end;
}
.hero-container.bottom-right{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-bottom: 120px;
    justify-content: flex-end;
}

.hero-container.middle-left{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-container.middle-center{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero-container.middle-right{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.hero-slider-text{
    color: #fff;
}

.hero-slider-text h3{
    font-size: clamp(32px, 5vw, 64px) !important;
    margin-bottom: 5px;
}

.hero-slider-text p{
    font-size: clamp(21px, 3vw, 30px) !important;
}

.btn-hero{
    color: #000;
    font-size: clamp(12px, 2vw, 16px) !important;
    background-color: #fff;
    padding: 15px 20px;
    margin-top: 15px;
    display: inline-block;
}

.swiper-pagination-bullet-active{
    background: #fff !important;
}

.middle-center .hero-slider-text,
.top-center .hero-slider-text,
.bottom-center .hero-slider-text{
    text-align: center;
    max-width: calc(100% - 50px);
}

.middle-right .hero-slider-text,
.top-right .hero-slider-text,
.bottom-right .hero-slider-text{
    text-align: right;
}

.middle-left .hero-slider-text,
.top-left .hero-slider-text,
.bottom-left .hero-slider-text{
    text-align: left;
}

.swiper-slide video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide video{
    /*pointer-events: none;*/
}

@media only screen and (max-width: 2000px) {
    .hero-container {
        padding: 0 60px;
    }
}

@media only screen and (max-width: 900px) {
    .hero-slider-text h3{
        line-height: 40px;
    }
    .hero-container {
        padding: 0 25px;
    }
}

#shopping-cart .register-container{
    background: #FAF2F0;
    padding: 20px 30px;
    margin-bottom: 20px;
}

#shopping-cart .grid-register{
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: center;
}

#shopping-cart .register-btn .btn{
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
}

#shopping-cart .register-btn .btn-register{
    padding: 15px 30px;
    border: 1px solid #000;
    margin-right: 20px;
}

#shopping-cart .register-btn .btn-login{
    background: #F00000;
    color: #fff;
    padding: 15px 30px;
}

#shopping-cart .register-text .tx1,
#shopping-cart .register-text .tx2{
    font-size: 15px;
}

#shopping-cart .register-text .tx2{
    font-weight: bold;
}

.article-box.basket-item .mb-5{
    margin-bottom: 0;
}

.article-box.basket-item .pl-5.pr-5.pt-6.pb-6{
    padding: 15px 20px;
}

.article-box.basket-item img{
    width: 180px;
    max-width: 180px;
}

#shopping-cart .btn-to-shopping{
    margin-top: 10px;
}

.basket-order-summary .padd-tb-0{
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

#shopping-cart .orderSummary{
    padding-top: 50px;
}

#shopping-cart .couponCode-container #addcoup{
    background: #F00000;
    color: #fff;
    padding: 15px 30px;
}

#shopping-cart .couponCode-container{
    margin-bottom: 24px;
}

#shopping-cart .couponCode-container #couponFld{
    height: 50px;
    border: 1px solid #BDBDBD;
    width: 100%;
    padding: 15px;
}

#shopping-cart .dwfrm_cart_couponCode{
    height: 50px;
}

#shopping-cart .flex-coupon{
    display: inline-flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

#shopping-cart .couponAppliedMsg{
    font-size: 12px;
    margin-top: 5px;
    color: #f00;
}

#shopping-cart .remove-applied-coupon{
    color: #f00;
    font-weight: bold;
}

#shopping-cart .recommended-products{
    margin-top: 80px;
}

#shopping-cart .custom-carousel-space-set{
    padding: 0;
}

#shopping-cart .or-mobile{
    display: none;
}

.recommended-products.mobile{
    display: none;
}

.all-price-container.mobile{
    display: none;
}

.decrease-article-qty-in-basket{
    padding-right: 10px;
}

.increase-article-qty-in-basket{
    padding-left: 10px;
}

@media only screen and (max-width: 1449px) {
    .recommended-products.desktop{
        display: none;
    }

    .recommended-products.mobile{
        display: block;
    }

    #shopping-cart .recommended-products {
        margin-top: 25px;
    }
}

@media only screen and (max-width: 767px) {
    .grid-basket-item{
        justify-content: space-between;
        padding-right: 15px;
    }

    .rm-container{
        text-align: left;
        left: 15px;
    }

    .qtyContainer{
        margin: auto;
    }

    .all-price-container.mobile{
        display: flex;
        align-items: flex-end;
    }

    .all-price-container.desktop{
        display: none;
    }

    .article-box.basket-item img{
        width: 110px;
    }

    #shopping-cart .mob-qty-line{
        background: #FAF2F0;
        width: 100%;
        position: relative;
        padding: 5px;
    }

    #shopping-cart .recommended-products {
        margin-top: 0;
    }

    #shopping-cart .register-text .tx1{
        display: block;
    }

    #shopping-cart .grid-register{
        grid-template-columns: auto;
    }

    #shopping-cart .register-btn .btn{
        margin-top: 15px;
    }

    #shopping-cart .register-btn .btn-register{
        padding: 0;
        border: none;
        margin-right: 15px;
        color: #F00000;
        font-size: 16px;
    }

    #shopping-cart .register-btn .btn-login{
        background: none;
        color: #F00000;
        padding: 0;
        margin-left: 15px;
        font-size: 16px;
    }

    #shopping-cart .or-mobile{
        display: inline-block;
        font-size: 16px;
    }

    #shopping-cart .register-text .tx1,
    #shopping-cart .register-text .tx2{
        font-size: 16px;
    }

    #shopping-cart .orderSummary{
        padding-left: 0;
        padding-right: 0;
    }

    .basket-order-summary .padd-tb-0{
        padding-left: 0;
        padding-right: 0;
    }
}

#shopping-cart-popup .order-insurance-grid,
#shopping-cart .order-insurance-grid{
    display: grid;
    grid-template-columns: 60px auto 50px;
    gap: 20px;
}

#shopping-cart-popup .order-insurance-container,
#shopping-cart .order-insurance-container{
    border-top: 1px solid #000;
}

#shopping-cart-popup .order-insurance-container h3,
#shopping-cart .order-insurance-container h3{
    font-size: 18px;
}

#shopping-cart-popup .order-insurance-container .insurance-content p,
#shopping-cart .order-insurance-container .insurance-content p {
    color: #878787;
    font-size: 14px;
    line-height: normal;
}

#shopping-cart-popup .order-insurance-container .tittle,
#shopping-cart .order-insurance-container .tittle{
    display: grid;
    grid-template-columns: auto auto;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 10px;
}

#shopping-cart-popup .order-insurance-container .insurance-option,
#shopping-cart .order-insurance-container .insurance-option{
    display: grid;
    align-items: center;
}

#shopping-cart-popup .order-insurance-container .insurance-img,
#shopping-cart .order-insurance-container .insurance-img{
    display: flex;
    align-items: center;
}

#shopping-cart-popup .switch,
#shopping-cart .switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

/* Hide default checkbox */
#shopping-cart-popup .switch input,
#shopping-cart .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* Pill background */
#shopping-cart-popup .sliderInsurance,
#shopping-cart .sliderInsurance {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #ccc;
    border-radius: 34px;
    transition: 0.3s;
}

/* Circle */
#shopping-cart-popup .sliderInsurance::before,
#shopping-cart .sliderInsurance::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    top: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s;
}

/* Checked state */
#shopping-cart-popup input:checked + .sliderInsurance,
#shopping-cart input:checked + .sliderInsurance {
    background-color: #878787;
}

#shopping-cart-popup input:checked + .sliderInsurance::before,
#shopping-cart input:checked + .sliderInsurance::before {
    transform: translateX(24px);
}

#shopping-cart .order-insurance-container{
    border-top: none;
    border-bottom: 1px solid #000;
    padding-left: 0;
    padding-right: 0;
}

#shopping-cart .order-insurance-container h3 {
    font-size: 17px;
}

@media only screen and (max-width: 480px) {
    #shopping-cart-popup .order-insurance-container h3 {
        font-size: 17px;
    }

    #shopping-cart-popup .order-insurance-grid {
        display: grid;
        grid-template-columns: 50px auto 50px;
        gap: 15px;
    }
}

@media only screen and (max-height: 800px) {
    #shopping-cart-popup .order-insurance-container{
        padding: 10px;
    }

    #shopping-cart-popup .order-insurance-grid {
        display: grid;
        grid-template-columns: 50px auto 50px;
        gap: 15px;
    }

    #shopping-cart-popup .order-insurance-container h3 {
        font-size: 17px;
    }
}

/*NEW banner code START*/

.swiper-button-prev,
.swiper-button-next {
    position: relative !important;       /* remove absolute positioning */
    width: 16px !important;
    height: 16px !important;
    margin: 0 !important;
    transform: none !important;
    color: #fff !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 14px !important;        /* make arrows small */
}

/* Controls wrapper */
.swiper-controls {
    width: 100%;
    position: absolute;
    display: flex;
    bottom: 5px;
    justify-content: center;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

/* Pagination wrapper */
.swiper-pagination {
    width: auto !important;
    left: unset !important;
    position: relative !important;
    bottom: 0 !important;
}

/* Default bullet */
.swiper-pagination-bullet {
    width: 9px !important;
    height: 9px !important;
    margin: 0 7px !important;
    background: #fff !important;
    position: relative;
    border-radius: 50%;
    opacity: .4 !important;
}

/* Hide SVG for inactive bullets */
.swiper-pagination-bullet svg {
    display: none;
}

/* Active bullet */
.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: transparent !important;
}

/* Show SVG only on active */
.swiper-pagination-bullet-active svg {
    display: block;
}

/* Position SVG ring */
.swiper-pagination-bullet-active svg {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 20px;
    height: 20px;
    transform: rotate(-90deg);
}

/* Gray background full ring */
.progress-bg {
    stroke: #fff;
    opacity: .4;
    stroke-width: 2;
    fill: none;
}

/* White animated progress ring */
.progress-ring {
    stroke: #fff;
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    transition: stroke-dashoffset 0.1s linear;
}

.hero-slider-conf[data-banner-height="full"] .swiper.hero-slider,
.hero-slider-conf[data-banner-height="full"] .swiper.hero-slider .swiper-slide{
    height: 100dvh;
}

.hero-slider-conf[data-banner-height="minus-header"] .swiper.hero-slider,
.hero-slider-conf[data-banner-height="minus-header"] .swiper.hero-slider .swiper-slide{
    height: calc(100dvh - 127px);
}

.hero-slider-conf[data-banner-height="50dvh"] .swiper.hero-slider,
.hero-slider-conf[data-banner-height="50dvh"] .swiper.hero-slider .swiper-slide{
    height: 50dvh;
}

.hero-slider-conf[data-banner-height="75dvh"] .swiper.hero-slider,
.hero-slider-conf[data-banner-height="75dvh"] .swiper.hero-slider .swiper-slide{
    height: 75dvh;
}

.hero-slider-conf[data-banner-height="90dvh"] .swiper.hero-slider,
.hero-slider-conf[data-banner-height="90dvh"] .swiper.hero-slider .swiper-slide{
    height: 90dvh;
}

@media only screen and (max-width: 767px) {
    .hero-slider-conf[data-banner-height="minus-header"] .swiper.hero-slider,
    .hero-slider-conf[data-banner-height="minus-header"] .swiper.hero-slider .swiper-slide{
        height: calc(100dvh - 115px);
    }
}

.hero-slider-conf video::-webkit-media-controls {
    display: none;
}

/*NEW banner code END*/

.category_slider.mobile{
    display: none;
}

@media only screen and (max-width: 480px) {
    .category_slider.mobile{
        display: block;
    }
}

.Mobile.categories.slider{
    width: 100%;
    height: auto;
    background: unset;
    border-radius: unset;
    position: unset;
}

.single_category_inside{
border: 1px solid #000;
padding: 10px 12px;
}

.category_slider a span{
font-size: 15px;
font-weight: bold;
}

.category_slider_inside {
display: flex;
overflow-x: auto;
scroll-snap-type: x mandatory;
-webkit-overflow-scrolling: touch;
gap: 5px;
}

/* Hide scrollbar (optional) */
.category_slider_inside::-webkit-scrollbar {
    display: none;
}
.category_slider_inside {
    scrollbar-width: none;
}

/* Each item */
.single_category {
    flex: 0 0 auto;
    scroll-snap-align: start;
}

/* Optional styling */
.single_category_inside {
    white-space: nowrap;
}

.single_category:first-child .single_category_inside {
    margin-left: 10px;
}

/*NEW sticky button add to basket*/
.pos-relative{
    position: relative;
}

.addToWishlistButton.mobile{
    display: none;
    border: none;
    right: 0;
    position: absolute;
    top: 25px;
    z-index: 1;
}

.quick-buy-popUp .size-guide-popup{
    display: none;
}

@media only screen and (max-width: 767px) {
    .buy-button:disabled, .buy-button[disabled]{
        background: #f00000;
    }

    .single-article.addToWishlistButton.desktop{
        display: none;
    }
    .single-article.addToWishlistButton.mobile{
        display: block;
    }
    .single-article.addToWishlistButton.mobile i{
        font-size: 22px;
    }
    .single-article.wend-size-btn{
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: #fff;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    }
    .single-article.wend-size-btn .buy-button{
        margin: 15px 20px;
    }
}

.quick-add-btn{
    float: right;
}

.quick-add-btn a{
    padding: 10px;
    margin: -10px;
    display: block;
}

.wend-size-btn .buy-button:hover{
    background-color: #f00000;
}

.quick-buy-popUp {
    position: fixed;
    top: 0;
    right: -800px; /* hidden off-screen */
    width: 600px;
    height: 100dvh;
    background: #fff;
    z-index: 999999;
    overflow-y: auto;
    /* smooth animation */
    transition: right 0.3s ease;
    /* optional shadow */
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
}

/* Active state (visible) */
.quick-buy-popUp.open {
    right: 0;
}

.quick-size-chart{
    position: fixed;
    top: 0;
    right: -800px; /* hidden off-screen */
    width: 600px;
    height: 100dvh;
    background: #fff;
    z-index: 999999;
    overflow-y: auto;
    /* smooth animation */
    transition: right 0.3s ease;
    /* optional shadow */
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
}

.quick-size-chart.open{
    right: 0;
}

.quick-buy-popUp .quick-add-container,
.quick-size-chart .quick-add-container{
    padding: 40px;
    position: relative;
    height: 100%;
}

.quick-buy-popUp .quick-add-container h4,
.quick-size-chart .quick-add-container h4{
    font-size: 28px;
    font-weight: bold;
}

.quick-buy-popUp .item-preview-grid {
    display: grid;
    grid-template-columns: 160px auto;
    gap: 20px;
}

.quick-buy-popUp .item-preview-grid .regular-price{
    font-size: 15px;
    font-weight: bold;
}

.quick-buy-popUp .item-preview-grid .price-container{
    margin-top: 15px;
}

.quick-buy-popUp .item-preview-grid .brand{
    font-size: 15px;
    font-weight: bold;
}

.quick-buy-popUp .item-preview-grid .item-title{
    font-size: 15px;
}

.quick-buy-popUp .item-preview-grid .preview-img {
    border: 1px solid #DBDBDB;
    width: 160px;
    height: 160px;
}

.quick-buy-popUp .item-preview-section{
    margin-top: 25px;
}

.quick-buy-popUp .colors-list{
    margin-top: 25px;
}

.quick-buy-popUp .bottom-section{
    bottom: 40px;
    position: absolute;
    width: calc(100% - 80px);
    background: #fff;
    padding-top: 5px;
    z-index: 9;
}

.quick-buy-popUp .bottom-links{
    color: #F00000;
    font-weight: bold;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.quick-buy-popUp .bottom-links .link-w-img{
    display: flex;
    gap: 6px;
    align-items: baseline;
}

.quick-buy-popUp .buy-button:disabled, .buy-button[disabled]{
    background-color: #f00000;
}

.quick-buy-popUp .close-icon,
.quick-size-chart .close-icon{
    position: absolute;
    right: 30px;
    top: 30px;
    cursor: pointer;
    padding: 15px;
    margin: -15px;
}

.quick-size-chart .size-guide-text{
    margin-top: 20px;
}

.quick-buy-popUp .sizes-list .size-text{
    margin-bottom: 5px;
}

.quick-buy-popUp .colors-list .color-text{
    margin-bottom: 5px;
}

.grid-cols-6{
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.item-preview-section.displayAll{
    display: block !important;
}

.quick-buy-popUp .price-container .pValue{
    font-size: 15px;
    font-weight: bold;
}

.quick-buy-popUp .old-price span{
    font-size: 15px;
}

.quick-buy-popUp .price-group.discount .old-price{
    font-size: 15px;
}

.quick-buy-popUp .color-pick-selection img{
    height: 100%;
}

.quick-size-guide-popup{
    cursor: pointer;
}

@media only screen and (max-width: 767px) {

    .quick-size-chart .quick-add-container{
        padding: 0;
    }

    .quick-size-chart .size-guide-text{
        padding: 0 20px;
    }

    .quick-buy-popUp{
        width: 100%;
        height: 100dvh;
    }

    .quick-buy-popUp .grid-cols-6.article-colors-list{
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .quick-buy-popUp .grid-cols-6.article-sizes-list{
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .quick-buy-popUp .quick-add-container{
        padding: 0;
    }

    .quick-buy-popUp .bottom-section{
        width: 100%;
        bottom: 0;
        position: sticky;
        padding-top: 5px;
    }

    .quick-buy-popUp {
        position: fixed;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        height: 100dvh;
        transform: translateY(120%);
        transition: transform 0.3s ease;
        will-change: transform;
    }

    .quick-buy-popUp {
        height: 100vh;
        height: 100dvh;
    }

    .quick-size-chart {
        position: fixed;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        height: 100dvh;
        transform: translateY(120%);
        transition: transform 0.3s ease;
        will-change: transform;
    }

    .quick-size-chart {
        height: 100vh;
        height: 100dvh;
    }

    .quick-buy-popUp.open {
        transform: translateY(0);
    }

    .quick-size-chart.open {
        transform: translateY(0);
    }

    .quick-buy-popUp .quick-add-container h4,
    .quick-size-chart .quick-add-container h4{
        padding: 20px;
        border-bottom: 1px solid #000;
    }

    .quick-add-container {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .quick-buy-popUp .inside-container {
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .quick-buy-popUp .bottom-section {
        flex-shrink: 0;
        background: #fff;
        padding-bottom: env(safe-area-inset-bottom);
    }

    .quick-buy-popUp .close-icon{
        z-index: 9;
    }

    .quick-buy-popUp .wend-size-btn{
        margin-top: 15px;;
    }

    .quick-buy-popUp .item-preview-section,
    .quick-buy-popUp .colors-list,
    .quick-buy-popUp .bottom-links,
    .quick-buy-popUp .sizes-list{
        padding: 0 20px;
    }

    .quick-buy-popUp .bottom-button{
        padding: 0 20px;
        padding-bottom: 20px;
    }

    .quick-buy-popUp .top-header,
    .quick-size-chart .top-header{
        position: relative;
    }

    body.overlay-active {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    .quick-buy-popUp {
        padding-top: env(safe-area-inset-top);
    }

    .quick-size-chart .quick-add-container h4 {
        padding: 20px;
        border-bottom: 1px solid #000;
    }

    .quick-size-chart {
        padding-bottom: env(safe-area-inset-bottom);
    }
}

.showAll-container{
    display: none;
}

.placeholder-carousel-products .showAll-container{
    display: none;
}

.placeholder-carousel-products[data-show-all] .showAll-container{
    display: block;
}

.quick-add-container .pdp-tags{
    margin-top: 5px;
}

.quick-add-container .pdp-tags{
    gap: 0px;
}

.quick-add-container .price-container{
    height: unset;
}

@media only screen and (max-width: 500px) {
    .quick-add-container .pdp-release-date-date-time{
        font-size: 13px;
    }
    .quick-add-container .pdp-tags{
        font-size: 13px;
    }
}

/* new items banner START */

.placeholder-carousel-products .showAll-container{
    text-align: right;
    position: absolute;
    top: 21px;
    right: 152px;
}

.placeholder-carousel-products .showAll-container a{
    background: #000 !important;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    padding: 10px;
    font-weight: bold;
    font-size: 15px;
    height: 48px;
    display: flex;
    align-items: center;
}

.showAll-container .icon--outline{
    fill: none;
    stroke: #000;
    stroke-width: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: inline-block;
}

.custom-carousel-space-set{
    position: relative;
}

@media only screen and (max-width: 1201px) {
    .placeholder-carousel-products .showAll-container{
        right: 127px;
    }
}

/* new items banner END */

.banner-show-container .bg-taf-red{
    position: relative;
}

.banner-show-container .bg-taf-red .close-banner-btn{
    top: 0;
    display: none;
    height: 100%;
    align-items: center;
}

.add__bar .owl-item p{
    padding-left: 15px;
    padding-right: 15px;
}

.add__bar .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 999;
    pointer-events: none;
    padding: 0 100px;
}

.add__bar .owl-nav button {
    pointer-events: auto;
    margin-left: 0 !important;
}

.top-inline-banner-multi .banner.py-\[12px\]{
    padding-top: 15px;
    padding-bottom: 15px;
}

.top-inline-banner-multi[data-show-close] .close-banner-btn{
    display: flex;
}

.top-inline-banner-multi .banner .max-w-\[840px\]{
    max-width: calc(100% - 50px);
}

.add__bar.owl-carousel {
    position: unset;
}

@media only screen and (max-width: 950px) {
    .banner-show-container .max-w-\[840px\]{
        width: calc(100% - 60px) !important;
    }
    .add__bar .owl-item p {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .showAll-container svg{
        display: none !important;
    }

    .placeholder-carousel-products .showAll-container{
        right: 15px;
    }

    .add__bar .owl-nav {
        padding: 0 50px;
    }
}

div.region-selector-btn{
    cursor: pointer;
}

div.region-selector-btn.flex{
    gap: 12px;
    align-items: center;
}


/* stack all slides */
.add__bar .owl-item {
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* active + incoming slide overlap */
.add__bar .owl-item.active {
    opacity: 1;
}

/* ensure smooth rendering */
.add__bar .owl-item {
    will-change: opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.swipe-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.has-bg-video video,
.has-bg-video iframe {
    pointer-events: none; /* allow swipe */
}

[v-cloak] {
    display: none !important;
}

.vue-sort-trigger-btn,
.vue-filter-trigger {
    width: 100%;
    height: 48px;
    border: 1px solid #000 !important;
    border-radius: 0 !important;
    padding: 0 12px;
    font-size: 15px;
    color: #000;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
    transition: border-color 0.15s ease;
    text-align: center;
    position: relative;
    z-index: 1;
    cursor: pointer;
    font-weight: 600;
}

.vue-sort-trigger-btn {
    padding: 0 40px 0 12px;
    justify-content: space-between;
    text-align: left;
}

.vue-sort-trigger-btn:hover,
.vue-sort-trigger-btn:focus,
.vue-filter-trigger:hover,
.vue-filter-trigger:focus,
.vue-sort-trigger-btn.open {
    border-color: #000 !important;
}

.vue-sort-trigger-btn::after {
    border-bottom: 2px solid #000;
    border-right: 2px solid #000;
    content: '';
    height: 8px;
    width: 8px;
    right: 14px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
    position: absolute;
    transform-origin: 66% 66%;
    transition: all 0.15s ease-in-out;
}

.vue-sort-trigger-btn.open::after {
    transform: translateY(-50%) rotate(-135deg);
}

.vue-sort-menu {
    z-index: 2;
    box-sizing: border-box !important;
    border: 1px solid #000 !important;
    border-top: none !important;
    border-radius: 0 !important;
    margin-top: 0;
    background: #fff;
    box-shadow: none;
    z-index: 11;
    position: absolute;
    top: calc(100% - 1px);
    right: 0;
    overflow: hidden;
    transform-origin: 50% 0;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
}

.vue-sort-option {
    width: 100%;
    padding: 12px;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 15px;
    color: #000;
    cursor: pointer;
    transition: background-color 0.15s ease;
    border: 0;
    background: #fff;
    text-align: left;
    font-weight: 400;
    line-height: normal;
}

.vue-sort-option:hover,
.vue-sort-option:focus,
.vue-sort-option.active {
    background-color: #f5f5f5;
}

.vue-sort-option.active {
    font-weight: 700;
}

.sort-fade-enter-from,
.sort-fade-leave-to {
    opacity: 0;
    transform: scale(0.75) translateY(-21px);
}

.sort-fade-enter-to,
.sort-fade-leave-from {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.sort-fade-enter-active,
.sort-fade-leave-active {
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
}


.taf-receipt {
    --taf-ink:   #0A0A0A;
    --taf-paper: #FFFFFF;
    --taf-red:   #F00000;
    --taf-line:  #E4E4E4;
    --taf-mute:  #8A8A8A;
    --taf-fill:  #F6F6F6;

    /* data values use the site's Helvetica (was a monospace receipt stack) */
    --taf-mono: "Helvetica", sans-serif;

    background: var(--taf-fill);
    padding: clamp(28px, 5vw, 64px) 0 clamp(48px, 7vw, 96px);
    color: var(--taf-ink);
}

/* Single-column receipt: user data on top, basket/totals below */
.taf-receipt .max-w-\[1440px\] {
    max-width: 1140px;
    padding-left: clamp(15px, 2vw, 28px);
    padding-right: clamp(15px, 2vw, 28px);
}
.taf-receipt .max-w-\[1440px\] > br { display: none; }

/* The sheet of paper the receipt is printed on ---------------------- */
.taf-receipt .rfe-container {
    background: var(--taf-paper);
    border: 1px solid var(--taf-line);
    border-top: 0;
    padding: clamp(28px, 4vw, 52px) clamp(20px, 4vw, 48px) clamp(20px, 4vw, 48px);
    position: relative;
}

/* Perforated ticket stub — semicircle notches bitten into the top edge
   of the paper, in the page fill colour so they read as a torn edge.
   This is the page's signature cue.                                    */
.taf-receipt .rfe-container::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 12px;
    background:
        radial-gradient(circle at 9px -2px, var(--taf-fill) 8px, transparent 8.5px) repeat-x;
    background-size: 18px 12px;
}
/* the brand-red baseline that anchors the stub */
.taf-receipt .rfe-container::after {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--taf-red);
}

/* =====================================================================
   Canceled-order stamp — shown at the top of the receipt when voided
   ===================================================================== */
.taf-receipt .order-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 clamp(20px, 3vw, 32px);
    padding: 8px 16px;
    font-family: "Helvetica", sans-serif;
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1;
}
.taf-receipt .order-status-canceled {
    color: var(--taf-red);
    border: 2px solid var(--taf-red);
    background: var(--taf-paper);
}
.taf-receipt .order-status-canceled::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--taf-red);
    border-radius: 50%;
}

/* =====================================================================
   Docket section headings — checkout steps demoted to quiet refs
   ===================================================================== */
.taf-receipt .rfe-step {
    display: flex;
    align-items: baseline;
    gap: 12px;
    font-family: "Helvetica", sans-serif;
    font-weight: 900;
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 7px;
    color: var(--taf-ink);
}

/* the 1·2·3·4 become monospace docket index marks, not loud circles */
.taf-receipt .rfe-step-num {
    font-family: var(--taf-mono);
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0;
    color: var(--taf-red);
    align-self: center;
}
.taf-receipt .rfe-step-num::before { content: "0"; }

/* =====================================================================
   Left-rail docket: billing address fills the left column;
   shipping address + payment + shipping method stack down the right
   ===================================================================== */
.taf-receipt .rfe-forms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: clamp(24px, 3vw, 40px) clamp(24px, 3vw, 44px);
}
/* Naslov (01) — left column, spans the full height of the right stack */
.taf-receipt .rfe-overview_left  { grid-column: 1; grid-row: 1 / span 3; }
/* Naslov dostave (02) — right column, top */
.taf-receipt .rfe-overview_right:not(.rfe-overview_right_space) {
    grid-column: 2; grid-row: 1;
}
/* payment (03) + shipping method (04) — stacked below, right column */
.taf-receipt .rfe-overview_right_space { grid-column: 2; }

/* Two fields per row where the markup pairs them (Ime | Priimek),
   otherwise one per row. Each datum stacks: LABEL over value.         */
.taf-receipt .overview-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(20px, 2.5vw, 36px);
}
.taf-receipt .rfe-row { grid-column: 1 / -1; min-width: 0; }
.taf-receipt .rfe_row_left,
.taf-receipt .rfe_row_left_small { grid-column: 1; }
.taf-receipt .rfe_row_right,
.taf-receipt .rfe_row_right_big { grid-column: 2; }

/* the wrapper div carries the divider line; the inner <label> never does */
.taf-receipt .rfe-row > .rfe-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 9px 0;
    border-bottom: 1px solid var(--taf-line);
}

.taf-receipt label.rfe-label {
    display: inline;
    padding: 0;
    border: 0;
    font-family: "Helvetica", sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--taf-mute);
    white-space: nowrap;
}

.taf-receipt .overview_line {
    width: 100%;
    text-align: left;
    font-family: var(--taf-mono);
    font-size: 15px;
    font-weight: 500;
    color: var(--taf-ink);
    word-break: break-word;
}
/* payment / shipping method names have no label — let them go full width */
.taf-receipt .rfe-overview_right_space .overview_line { text-align: left; }
.taf-receipt .rfe-overview_right_space .rfe-label { border-bottom: 0; padding-top: 2px; }


.taf-receipt .shoppingCartContainer {
    margin-top: clamp(27px, 5vw, 27px);
    border: 1px solid var(--taf-line);
    background: var(--taf-paper);
    padding-bottom: clamp(16px, 2vw, 24px);
    /* items full-width on top; then buttons (left) + summary (right) share a row.
       Buttons come first in the DOM, so they land in column 1 naturally. */
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: end;
}
.taf-receipt .title_shopping_cart_basket,
.taf-receipt .cartProductsContainer { grid-column: 1 / -1; }
/* buttons on the LEFT, summary on the RIGHT — same row */
.taf-receipt .btn-container-profile-orders,
.taf-receipt .cart-footer { grid-row: 3; }

.taf-receipt .title_shopping_cart_basket {
    background: var(--taf-ink);
    padding: 16px clamp(16px, 3vw, 28px);
}
.taf-receipt .title_shopping_cart_basket h3 {
    margin: 0;
    color: var(--taf-paper);
    font-family: "Helvetica", sans-serif;
    font-weight: 900;
    font-size: clamp(16px, 1.8vw, 20px);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.taf-receipt .columnHeads { display: block; }
.taf-receipt .columnHeadsRow,
.taf-receipt .productContainerRow {
    display: grid;
    grid-template-columns: 72px 1fr 130px 90px 130px;
    align-items: center;
    gap: 16px;
    padding: 14px clamp(16px, 3vw, 28px);
}
.taf-receipt .columnHeadsRow {
    border-bottom: 2px solid var(--taf-ink);
    padding-top: 18px;
    padding-bottom: 12px;
}
.taf-receipt .columnHeadsRow .column1 { grid-column: 1 / 3; }
.taf-receipt .columnHeadsRow .rightColumns {
    display: contents;
}

.taf-receipt .columnHeads h1.items,
.taf-receipt .columnHeads h6 {
    margin: 0;
    font-family: "Helvetica", sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--taf-mute);
    line-height: 1;
}
.taf-receipt .columnHeads .titlePrice,
.taf-receipt .columnHeads .titleQuantity,
.taf-receipt .columnHeads .titleTotalPrice { text-align: right; }

/* line item rows — zebra striping like a register printout */
.taf-receipt .productContainerBody { margin: 0; padding: 0; list-style: none; }
.taf-receipt .productContainer { border-bottom: 1px solid var(--taf-line); }
.taf-receipt .productContainer:nth-child(even) { background: var(--taf-fill); }
.taf-receipt .productContainerRow { padding-top: 18px; padding-bottom: 18px; }
.taf-receipt .productContainer .rightColumns { display: contents; }

.taf-receipt .product_image {
    width: 72px; height: 72px;
    border: 1px solid var(--taf-line);
    background: var(--taf-paper);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.taf-receipt .product_image img { max-width: 100%; max-height: 100%; object-fit: contain; }

.taf-receipt .productDetails .pNfo h2 {
    margin: 0 0 4px;
    font-size: 15px;
    line-height: 1.25;
}
.taf-receipt .productDetails .pNfo h2 a {
    font-family: "Helvetica", sans-serif;
    font-weight: 900;
    color: var(--taf-ink);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}
.taf-receipt .productDetails .pNfo h2 a:hover { color: var(--taf-red); }
.taf-receipt .productId,
.taf-receipt .productVariation {
    margin: 0;
    font-family: var(--taf-mono);
    font-size: 12px;
    color: var(--taf-mute);
    line-height: 1.5;
}

.taf-receipt .productPrice,
.taf-receipt .productQuantity,
.taf-receipt .productPriceTotal { text-align: right; }
.taf-receipt .productPrice .mobileLabel,
.taf-receipt .productQuantity .mobileLabel,
.taf-receipt .productPriceTotal .mobileLabel,
.taf-receipt .sr-only { display: none; }

.taf-receipt .productPrice .darkText,
.taf-receipt .productQuantity .superCuteFormElemWrapper,
.taf-receipt .productPriceTotal .darkText {
    font-family: var(--taf-mono);
    font-size: 14px;
    color: var(--taf-ink);
    justify-content: flex-end;
}
.taf-receipt .productPriceTotal .darkText.bold { font-weight: 700; }

/* =====================================================================
   Totals — right-aligned with dotted leaders, heavy order-total rule
   ===================================================================== */
.taf-receipt .cart-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: clamp(28px, 4vw, 44px);
    padding: 0 clamp(16px, 3vw, 28px);
}
.taf-receipt .cart-footer-side { display: none; }
.taf-receipt .cart-footer-main { width: 460px; max-width: 100%; }

.taf-receipt .totalsTbl { display: flex; flex-direction: column; }
.taf-receipt .totalsTbl > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 7px 0;
    border-bottom: 1px dotted var(--taf-line);
}
.taf-receipt .totalsTbl .item {
    font-family: "Helvetica", sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--taf-mute);
}
.taf-receipt .totalsTbl .cost,
.taf-receipt .totalsTbl .cost .baskettotalvalue {
    font-family: var(--taf-mono);
    font-size: 14px;
    color: var(--taf-ink);
    text-align: right;
    white-space: nowrap;
}

.taf-receipt .estimatedTotal {
    border-top: 2px solid var(--taf-ink);
    border-bottom: 0 !important;
    margin-top: 6px;
    padding-top: 16px !important;
}
.taf-receipt .estimatedTotal .item strong {
    font-family: "Helvetica", sans-serif;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--taf-ink);
}
/* the order-total amount is the big figure; the bare currency symbol
   after it should not inherit the full 900/24px treatment */
.taf-receipt .estimatedTotal .cost {
    font-family: "Helvetica", sans-serif;
    font-weight: 900;
    font-size: 15px;
    color: var(--taf-red);
}
.taf-receipt .estimatedTotal .cost .baskettotalvalue {
    font-size: clamp(18px, 2.2vw, 24px);
}

/* =====================================================================
   Order actions — return / cancel
   ===================================================================== */
.taf-receipt .btn-container-profile-orders {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
    align-items: flex-end;
    align-self: end;
    margin-top: clamp(20px, 3vw, 32px);
    padding: 0 clamp(16px, 3vw, 28px);
}
.taf-receipt .order-return-actions,
.taf-receipt .order-cancel-actions { display: inline-flex; }

.taf-receipt .btn-return-order,
.taf-receipt .btn-cancel-order {
    font-family: "Helvetica", sans-serif;
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 14px 28px;
    border: 2px solid var(--taf-ink);
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
}
.taf-receipt .btn-return-order {
    background: var(--taf-ink);
    color: var(--taf-paper);
}
.taf-receipt .btn-return-order:hover { background: var(--taf-paper); color: var(--taf-ink); }

.taf-receipt .btn-cancel-order {
    background: var(--taf-paper);
    color: var(--taf-red);
    border-color: var(--taf-red);
}
.taf-receipt .btn-cancel-order:hover { background: var(--taf-red); color: var(--taf-paper); }

.taf-receipt .order-cancel-actions p {
    margin: 0;
    font-family: var(--taf-mono);
    font-size: 13px;
    color: var(--taf-red) !important;
}

.taf-receipt a:focus-visible,
.taf-receipt button:focus-visible {
    outline: 3px solid var(--taf-red);
    outline-offset: 2px;
}

/* =====================================================================
   Cancel-order modal — same docket language
   ===================================================================== */
.cancel-order-modal {
    position: fixed;
    inset: 0;
    /* above the theme's .overlay-bg-popup (z-index 100000) so it isn't covered */
    z-index: 1000001;
    background: rgba(10, 10, 10, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.cancel-order-box {
    background: #FFFFFF;
    border: 2px solid #0A0A0A;
    width: 100%;
    max-width: 460px;
    padding: clamp(24px, 4vw, 40px);
}
.cancel-order-box h3 {
    margin: 0 0 14px;
    font-family: "Helvetica", sans-serif;
    font-weight: 900;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #0A0A0A;
}
.cancel-order-box .message,
.cancel-order-box .errorCancelOrder {
    margin: 0 0 24px;
    font-size: 15px;
    line-height: 1.5;
    color: #444;
}
.cancel-order-buttons {
    display: flex;
    gap: 12px;
    justify-content: space-between;
}
/* each visible button takes an equal half so they sit left & right */
.cancel-order-buttons button {
    flex: 1 1 0;
    min-width: 0;
    font-family: "Helvetica", sans-serif;
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 12px 16px;
    border: 2px solid #0A0A0A;
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.2;
}
.cancel-order-buttons .btn-cancel-no,
.cancel-order-buttons .btn-cancel-close {
    background: #FFFFFF;
    color: #0A0A0A;
}
.cancel-order-buttons .btn-cancel-no:hover,
.cancel-order-buttons .btn-cancel-close:hover { background: #0A0A0A; color: #FFFFFF; }
.cancel-order-buttons .btn-cancel-yes {
    background: #F00000;
    color: #FFFFFF;
    border-color: #F00000;
}
.cancel-order-buttons .btn-cancel-yes:hover { background: #0A0A0A; border-color: #0A0A0A; }
.cancel-order-box button:focus-visible {
    outline: 3px solid #F00000;
    outline-offset: 2px;
}

/* =====================================================================
   Responsive
   ===================================================================== */
/* collapse the docket grid + line-item table on small screens */
@media only screen and (max-width: 880px) {
    /* collapse the docket to a single stacked column */
    .taf-receipt .rfe-forms { grid-template-columns: 1fr; }
    .taf-receipt .rfe-overview_left,
    .taf-receipt .rfe-overview_right,
    .taf-receipt .rfe-overview_right:not(.rfe-overview_right_space),
    .taf-receipt .rfe-overview_right_space {
        grid-column: 1;
        grid-row: auto;
    }

    /* summary + buttons stack instead of sitting side by side */
    .taf-receipt .shoppingCartContainer { display: block; }
    .taf-receipt .cart-footer-main { width: 100%; margin-left: auto; }
    .taf-receipt .btn-container-profile-orders { justify-content: stretch; }
    /* address fields stop splitting in half — one datum per line */
    .taf-receipt .rfe_row_left,
    .taf-receipt .rfe_row_right,
    .taf-receipt .rfe_row_left_small,
    .taf-receipt .rfe_row_right_big { flex: 1 1 100%; }

    .taf-receipt .columnHeads { display: none; }

    .taf-receipt .productContainerRow {
        grid-template-columns: 64px 1fr;
        grid-template-areas:
            "img  info"
            "img  price"
            "qty  total";
        gap: 6px 14px;
    }
    .taf-receipt .product_image  { grid-area: img; width: 64px; height: 64px; }
    .taf-receipt .productDetails { grid-area: info; text-align: left; }
    .taf-receipt .productPrice   { grid-area: price; text-align: left; }
    .taf-receipt .productQuantity { grid-area: qty; text-align: left; }
    .taf-receipt .productPriceTotal { grid-area: total; text-align: right; }

    .taf-receipt .productPrice .mobileLabel,
    .taf-receipt .productQuantity .mobileLabel,
    .taf-receipt .productPriceTotal .mobileLabel {
        display: inline-block;
        font-family: "Helvetica", sans-serif;
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: var(--taf-mute);
        margin-right: 8px;
    }
    .taf-receipt .productPrice .darkText,
    .taf-receipt .productQuantity .superCuteFormElemWrapper,
    .taf-receipt .productPriceTotal .darkText { justify-content: flex-start; display: inline-flex; }
    .taf-receipt .productPriceTotal .darkText { justify-content: flex-end; }

    .taf-receipt .cart-footer-main { max-width: 100%; }
    .taf-receipt .btn-container-profile-orders { justify-content: stretch; }
    .taf-receipt .btn-return-order,
    .taf-receipt .btn-cancel-order { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    .taf-receipt * { transition: none !important; }
}
.top-inline-banner-multi{
    position: relative;
}

.selectize-zipcode-item {
    width: 100%;
    padding: 10px;
}

.selectize-zipcode-item .zipcode-label {
    width: 100%;
    display: block;
}

.selectize-zipcode-item .city-label {
    width: 100%;
    display: block;
    font-size: 12px;
}

.selectize-zipcode-item .area-label {
    width: 100%;
    display: block;
    font-size: 12px;
}

.zip-radius-combined{
    display: flex;
    width: 100%;
    border: 1px solid #bdbdbd;
    margin-bottom: 20px;
    gap: 20px;
}

.zip-radius-combined .distance-select{
    display: inline-block;
    color: #878787;
    margin-right: 10px;
    padding-right: 10px;
    background: #fff;
}

.zip-radius-combined .distance-select:focus-visible{
    outline: none;
}

.show__stores #search-stores{
    border: none;
    margin-bottom: 0;
}

#search-stores:focus-visible{
    outline: none !important;
}

.vertical-line {
    width: 1px;
    height: calc(100% - 16px);
    background-color: #bdbdbd;
    margin-top: 8px;
}

.distance-val{
    position: absolute;
    right: 25px;
    top: 0;
}

.store-data{
    position: relative;
}

.mobile.store-locations .zip-radius-combined{
    margin: 10px;
}

@media only screen and (max-width: 970px) {
    .input-with-icon .icon{
        left: 27px;
        top: 40px;
        font-size: 20px;
    }

    .zip-radius-combined{
        width: calc(100% - 20px);
        gap: 15px;
    }
}

.c-list .content-list-title{
    font-size: 72px;
    margin-bottom: 40px;
}

.c-list .blog-items-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 15px;
    row-gap: 40px;
}

.c-list .description h4{
    margin-top: 12px;
    margin-bottom: 12px;
}

.branchOffices .description h4{
    margin-top: 12px;
    margin-bottom: 5px;
    font-size: 20px;
}

.c-list .readMore{
    margin-top: 15px;
    display: block;
    color: #F00000;
    font-weight: bold;
}

@media only screen and (max-width: 1100px) {
    .c-list .blog-items-container {
        /*grid-template-columns: repeat(2, 1fr);*/
    }
}

@media only screen and (max-width: 767px) {
    .c-list .blog-items-container {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 32px;
    }

    .c-list .content-list-title{
        font-size: 36px;
        margin-bottom: 24px;
    }
}

.c-list.content-list-small .content-list-title{
    font-size: 36px;
    margin-bottom: 24px;
}

.c-list.content-list-small .blog-items-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    row-gap: 32px;
}

.c-list.content-list-small .blog-single-content img{
    box-sizing: border-box;
    aspect-ratio: 2/1;
}

.c-list.content-list-small .description h4{
    font-size: 18px;
    margin-top: 12px;
    margin-bottom: 4px;
}

.c-list.content-list-small .desc{
    font-size: 14px;
    color: #3d3c3c;
}

.c-list.content-list-small .readMore{
    display: none;
}

@media only screen and (max-width: 991px) {
    .c-list.content-list-small .blog-items-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        row-gap: 24px;
    }
}

.content-pagination{
    margin-top: 48px;
    margin-bottom: 100px;
    justify-content: center !important;
    gap: 24px;
}

.content-pagination .btn-pagination a{
    background: #F00000;
    padding: 15px 32px;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.content-pagination .btn-pagination .disabled{
    pointer-events: none;
    cursor: default;
}

.manual-pagination select{
    padding: 13px 20px;
    margin: 0 13px;
    font-weight: bold;
}

.manual-pagination select:focus-visible{
    outline: none;
}

.btn-pagination a.ajax-page span{
    display: inline-block;
}

.btn-pagination.next a.ajax-page span{
    padding-left: 13px;
}

.btn-pagination.prev a.ajax-page span{
    padding-right: 13px;
}

.img-desktop {
    display: block;
}
.img-mobile {
    display: none;
}

@media (max-width: 768px) {
    .img-desktop {
        display: none;
    }
    .img-mobile {
        display: block;
    }
}

#blog-content .btn-showAll{
    background: #F00000;
    color: #fff;
    padding: 15px 32px;
    font-size: 15px;
    margin: auto;
    display: flex;
    margin-top: 25px;
}

.OutlineElement a{
    color: #0000ff;
}

.tag-special-container.hideItemTag{
    display: none;

}

.blog-single-content .address{
    line-height: 22px;
    letter-spacing: 2px;
    font-size: 15px;
    font-family: Arial;
}

.Wide.overlay{
    position: relative;
    opacity: 1;
    filter: unset;
    background: unset;
    backdrop-filter: unset;
    -webkit-backdrop-filter: unset;
    bottom: unset;
    left: unset;
}

.main-side-space-m {
    margin-left: 25px;
    margin-right: 25px;
}

.breadcrumbs-container{
    padding-left: 25px;
    padding-right: 25px;
}

.hero-slider-text{
    z-index: 9;
}

/*.gjs-row:has(.placeholder-carousel-products) {
    display: block !important;
}

.gjs-cell:has(.placeholder-carousel-products) {
    width: 100% !important;
    display: block !important;
    height: unset !important;
}*/

.gjs-row {
    display: block !important;
}

.gjs-cell {
    width: unset !important;
    display: block !important;
    height: unset !important;
}

.wh-b .content-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wh-b h1 {
    font-size: 50px !important;
    margin-bottom: 15px;
    line-height: 60px;
    font-weight: bold;
}

.wh-b .address {
    color: #000 !important;
}

#store-map{
    height: 750px;
}

/* Replaced by PHP .percent-value div in article.php, gated by show_discount_percent_badge_on_article setting
.price-group.discount .old-price::after {
    background: #F00000;
    color: #fff;
    font-weight: bold;
    font-size: 13px;
    padding: 4px 8px;
    display: inline-block;

    content: attr(data-discount) "%";
}

.price-group.discount .old-price.show-minus::after {
    content: "-" attr(data-discount) "%";
}
*/

#blog-content .blog-single-content img{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    aspect-ratio: 1/1;
}
.c-list.content-list-small .blog-single-content img{
    box-sizing: border-box;
    aspect-ratio: 2/1 !important;
}


#blog-content .blog-single-item-container:hover img {
    transform: scale(1.02);
}

.blog-single-content .content-date{
    margin-top: 15px;
    display: block;
    font-size: 15px;
    font-weight: 200;
    letter-spacing: 2px;
}

/*.price .pValue.rp{
    color: #f00000;
}*/

/*.p-price-group.discount .price .pValue,
.price-group.discount .price .pValue{
    color: #f00000;
}*/

.newsletterForm-subscribe .terms{
    display: none;
}

.newsletter-banner[data-show_checkbox_terms] .terms{
    display: block;
}

.newsletterForm-subscribe .errors{
    margin-bottom: 15px;
}

.loyalty-subscribe .terms{
    display: none;
}

.loyalty-form[data-show_checkbox_terms] .terms{
    display: block;
}

.loyalty-subscribe .errors{
    margin-bottom: 15px;
}

.loyalty-subscribe-container .success-register-text{
    color: green;
    font-size: 18px;
}

.c-list {
    padding-inline: 16px;
}

.plp-price-discount {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.plp-old-price {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.plp-old-price::after {
    content: "";
    position: absolute;
    left: -2px;
    right: -2px;
    top: 50%;
    height: 1px;
    background: #000;
    transform: rotate(-8deg);
}

.plp-discount-price-badge {
    display: inline-flex;
    align-items: center;
}

@media screen and (max-width: 570px) {
    .plp-price-discount .plp-discount-price-badge {
        flex-basis: 100%;
        display: flex;
        align-items: center;
        margin-top: 4px;
    }
}