.mini-basket {
    position: fixed;
    inset: 0;
    z-index: 10050;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 280ms ease,
        visibility 220ms ease;
}

.mini-basket.info-opened {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.mini-basket__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    background: color-mix(in srgb, var(--site-text) 48%, transparent);
    border: 0;
    cursor: default;
}

.mini-basket .mini-basket__panel {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    width: min(420px, 92vw);
    height: 100dvh;
    padding: 0;
    overflow: hidden;
    background: var(--site-surface);
    border-radius: 0 18px 18px 0;
    box-shadow: 18px 0 48px var(--site-shadow-color);
    transform: translateX(-105%);
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mini-basket.info-opened .mini-basket__panel {
    left: 0;
    transform: translateX(0);
}

body.mini-basket-open {
    overflow: hidden;
}

.mini-basket__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 22px 18px;
    border-bottom: 1px solid var(--site-border-color);
}

.mini-basket__header h2 {
    margin: 0 0 3px;
    font-size: 22px;
}

.mini-basket__header p {
    margin: 0;
    color: color-mix(in srgb, var(--site-text) 64%, transparent);
    font-size: 13px;
}

.mini-basket__close {
    flex: 0 0 var(--site-control-size, 44px);
}

.mini-basket__status {
    position: absolute;
    z-index: 4;
    top: 94px;
    inset-inline: 0;
    width: min(320px, calc(100% - 36px));
    margin-inline: auto;
    padding: 9px 12px;
    color: #166534;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--site-radius);
    box-shadow: 0 12px 28px
        color-mix(in srgb, var(--site-text) 16%, transparent);
    font-size: 12px;
    line-height: 1.65;
    pointer-events: none;
}

.mini-basket__status[data-state="error"] {
    color: #991b1b;
    background: #fef2f2;
    border-color: #fecaca;
}

.mini-basket__items {
    flex: 1;
    min-height: 0;
    padding: 18px;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.mini-basket__item {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 14px;
    padding: 0 0 18px;
    margin: 0 0 18px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.09);
}

.mini-basket__item:last-child {
    margin-bottom: 0;
}

.mini-basket__image-link {
    display: block;
    width: 82px;
    height: 96px;
    overflow: hidden;
    background: var(--site-surface-muted);
    border-radius: 12px;
}

.mini-basket__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-basket__item-content {
    min-width: 0;
}

.mini-basket__title {
    display: block;
    margin-bottom: 5px;
    color: var(--site-text);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.7;
}

.mini-basket__meta,
.mini-basket__unit-price {
    margin: 0 0 5px;
    color: color-mix(in srgb, var(--site-text) 64%, transparent);
    font-size: 12px;
    line-height: 1.7;
}

.mini-basket__item-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
}

.mini-basket__quantity {
    display: inline-grid;
    grid-template-columns: 36px 38px 36px;
    direction: ltr;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--site-border-color);
    border-radius: var(--site-radius);
}

.mini-basket__quantity button {
    width: 36px;
    height: 36px;
    padding: 0;
    color: var(--site-text);
    background: var(--site-surface-muted);
    border: 0;
    cursor: pointer;
}

.mini-basket__quantity button:disabled {
    color: color-mix(in srgb, var(--site-text) 42%, transparent);
    cursor: not-allowed;
}

.mini-basket__quantity span {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
}

.mini-basket__remove-form {
    margin: 0;
}

.mini-basket__remove {
    padding: 5px 7px;
    color: var(--site-danger);
    background: transparent;
    border: 0;
    font-size: 12px;
    cursor: pointer;
}

.mini-basket__line-total {
    display: block;
    margin-top: 9px;
    color: var(--site-text);
    font-size: 14px;
}

.mini-basket__empty {
    flex: 1;
    display: grid;
    align-content: center;
    justify-items: center;
    padding: 40px 24px;
    text-align: center;
}

.mini-basket__empty strong {
    margin-bottom: 8px;
    font-size: 18px;
}

.mini-basket__empty p {
    margin: 0;
    color: color-mix(in srgb, var(--site-text) 64%, transparent);
    font-size: 13px;
}

.mini-basket__footer {
    padding: 18px 20px 22px;
    background: var(--site-surface);
    border-top: 1px solid var(--site-border-color);
}

.mini-basket__subtotal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
    color: var(--site-text);
}

.mini-basket__view-button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 10px 16px;
    color: #ffffff;
    background: var(--site-primary);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.mini-basket__view-button:hover {
    color: #ffffff;
    background: var(--site-primary-dark);
}

@media (max-width: 991px) {
    .mini-basket .mini-basket__panel {
        top: 12px;
        bottom: auto;
        display: block;
        width: min(340px, 92vw);
        height: auto;
        max-height: calc(100dvh - 24px);
        overflow-y: auto;
        border-radius: 0 var(--site-radius) var(--site-radius) 0;
        transform: translateX(-105%);
    }

    .mini-basket.info-opened .mini-basket__panel {
        transform: translateX(0);
    }

    .mini-basket__items {
        padding-inline: 14px;
        overflow: visible;
    }

    .mini-basket__item {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 10px;
        width: 100%;
        padding-inline: 0;
        box-sizing: border-box;
    }

    .mini-basket__image-link {
        width: 72px;
        height: 84px;
    }

    .mini-basket__item-content {
        min-width: 0;
    }

    .mini-basket__empty {
        min-height: 160px;
        padding-block: 28px;
    }

    .mini-basket__header {
        padding-inline: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mini-basket,
    .mini-basket .mini-basket__panel {
        transition-duration: 1ms;
    }
}

.storefront-shared-shell .site-header-sticky {
    position: sticky;
    z-index: 1000;
    top: 0;
}

.storefront-shared-shell .site-header-sticky .headerarea {
    border-bottom: 1px solid var(--borderColor);
    background: color-mix(in srgb, var(--storefront-card) 94%, transparent);
    backdrop-filter: blur(14px);
    transition: padding 180ms ease, box-shadow 180ms ease;
}

.storefront-shared-shell .site-header-sticky.is-scrolled .headerarea {
    box-shadow: 0 12px 30px color-mix(in srgb, var(--site-text) 12%, transparent);
}

.storefront-shared-shell .site-header-sticky .common__row,
.storefront-shared-shell .headerarea__right,
.storefront-shared-shell .headerarea__right__nav {
    align-items: center;
}

.storefront-shared-shell .headerarea__main__menu > nav > ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.storefront-shared-shell .headermiddle__account__img {
    position: relative;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
}

.storefront-shared-shell .headermiddle__account__img > svg {
    width: 25px;
    height: 25px;
}

.storefront-shared-shell .headermiddle__account__img .bigcounter {
    top: -8px;
    right: -11px;
    left: auto;
    width: auto;
    min-width: 18px;
    height: 18px;
    padding-inline: 4px;
    display: inline-grid;
    place-items: center;
    border: 2px solid var(--storefront-card);
    border-radius: 999px;
    background: var(--site-primary);
    color: #fff;
    font-size: 10px;
    line-height: 1;
    white-space: nowrap;
}

.storefront-shared-shell .bigcounter[hidden] {
    display: none !important;
}

.storefront-shared-shell [data-storefront-search-input] {
    text-align: start;
    unicode-bidi: plaintext;
}

.storefront-shared-shell bdi[data-language-number-technical] {
    unicode-bidi: isolate;
}

.storefront-shared-shell .headerarea__logo img,
.storefront-shared-shell .mobile-logo img,
.storefront-shared-shell .mobile__logo img {
    max-height: 54px;
    width: auto;
    object-fit: contain;
}

.storefront-shared-shell .headerarea__right__nav button,
.storefront-shared-shell .headerarea__right__mobail__menu button {
    font: inherit;
}

.storefront-shared-shell .headersearch__active__input form {
    position: relative;
}

.storefront-shared-shell .header__form__search button,
.storefront-shared-shell .mobile-search .button-search {
    display: inline-grid;
    place-items: center;
}

.storefront-shared-shell .header__form__search button svg,
.storefront-shared-shell .mobile-search .button-search svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
}

/*KEY_STOREFRONT_MOBILE_FOUNDATION_STAGE1_START*/.storefront-shared-shell{--storefront-muted-surface:color-mix(in srgb,var(--site-surface-muted) 78%,#fff);--storefront-action-size:var(--site-control-size,44px);--sfi:var(--site-control-icon-size,22px)}.storefront-shared-shell .headerarea__right__nav,.storefront-shared-shell .headerarea__right__mobail__menu{display:flex;align-items:center;gap:6px;margin:0;padding:0}.storefront-shared-shell .headerarea__right__nav>li,.storefront-shared-shell .headerarea__right__mobail__menu>li,.storefront-shared-shell .headerarea__right__nav>li>div,.storefront-shared-shell .headerarea__right__mobail__menu>li>div,.storefront-shared-shell .headerarea__right__nav .setting__wrap,.storefront-shared-shell .headerarea__right__mobail__menu .setting__wrap,.storefront-shared-shell .headerarea__right__nav .headermiddle__bar,.storefront-shared-shell .headerarea__right__mobail__menu .headermiddle__bar{width:var(--storefront-action-size);height:var(--storefront-action-size);margin:0;padding:0;display:grid;place-items:center}.storefront-shared-shell .storefront-header-action{position:relative;width:var(--storefront-action-size);height:var(--storefront-action-size);min-width:var(--storefront-action-size);min-height:var(--storefront-action-size);margin:0;padding:0;display:inline-grid;place-items:center;border:0;border-radius:var(--site-radius);color:var(--site-text);background:transparent;line-height:1;cursor:pointer}.storefront-shared-shell .storefront-header-action:hover,.storefront-shared-shell .storefront-header-action:focus-visible{color:var(--site-primary);background:var(--storefront-muted-surface);outline:2px solid transparent}.storefront-shared-shell .storefront-header-action>svg,.storefront-shared-shell .storefront-header-action .ionicon,.storefront-shared-shell .storefront-header-action .headermiddle__account__img,.storefront-shared-shell .storefront-header-action .headermiddle__account__img>svg{width:var(--sfi);height:var(--sfi);margin:0;display:block}.storefront-shared-shell .storefront-header-action .headermiddle__account__img{position:relative;display:grid;place-items:center}.storefront-shared-shell .headermiddle__account__img .bigcounter{top:-7px;right:-9px}.storefront-shared-shell .mob_menu_wrapper [class*="col-"]{display:flex;align-items:center}.storefront-shared-shell .mob_menu_wrapper .col-sm-4:first-child,.storefront-shared-shell .mob_menu_wrapper .col-2:first-child{justify-content:flex-start}.storefront-shared-shell .mobile-logo{width:100%;display:flex;justify-content:center}.storefront-shared-shell .header-right-wrap{width:100%}.storefront-mobile-drawer-backdrop{position:fixed;z-index:9997;inset:0;display:block;width:100%;height:100%;padding:0;border:0;background:color-mix(in srgb,var(--site-text) 48%,transparent);opacity:0;visibility:hidden;pointer-events:none;transition:opacity 220ms ease,visibility 220ms ease}.storefront-mobile-drawer-backdrop.is-visible{opacity:1;visibility:visible;pointer-events:auto}body.storefront-mobile-drawer-open{overflow:hidden}.storefront-control-close{width:var(--site-control-size,44px);height:var(--site-control-size,44px);padding:0;display:inline-grid;place-items:center;border:1px solid var(--site-border-color);border-radius:var(--site-radius);background:var(--site-surface-muted);color:var(--site-text);cursor:pointer}.storefront-control-close>span{position:relative;width:16px;height:16px}.storefront-control-close>span::before,.storefront-control-close>span::after{position:absolute;top:7px;left:1px;width:14px;height:2px;border-radius:999px;background:currentColor;content:""}.storefront-control-close>span::before{transform:rotate(45deg)}.storefront-control-close>span::after{transform:rotate(-45deg)}.storefront-control-close:hover,.storefront-control-close:focus-visible{border-color:var(--site-primary);background:var(--site-primary);color:#ffffff;outline:none}.storefront-dialog{width:min(880px,calc(100vw - 32px));max-width:880px;max-height:calc(100dvh - 32px);overflow:hidden}.storefront-dialog .modal-content{max-height:calc(100dvh - 32px);border:1px solid var(--site-border-color);background:var(--site-surface);box-shadow:0 26px 80px var(--site-shadow-color)}.storefront-dialog .modal-body{padding:24px}.storefront-dialog__close{position:absolute;z-index:5;top:12px;right:auto;left:auto;inset-inline-end:12px;box-shadow:none}.storefront-dialog .modal-body>.row{align-items:stretch !important}.storefront-dialog .grid__quick__img{height:clamp(320px,42vw,420px);background:var(--site-surface-muted)}.storefront-dialog .grid__quick__content{height:100%;padding:52px 16px 16px;display:flex;flex-direction:column;align-items:flex-start;justify-content:center}.storefront-dialog .grid__quick__content h3,.storefront-cart-picker h2{font-size:clamp(1.35rem,2.2vw,1.85rem)}.storefront-quick-view__description{max-height:8em;line-height:1.85}.storefront-dialog__price del{color:var(--storefront-muted-text)}.storefront-dialog__price strong{color:var(--site-primary)}.storefront-dialog--cart{width:min(540px,calc(100vw - 32px))}.storefront-cart-picker{padding:34px 34px 30px}.storefront-cart-picker>.storefront-dialog__eyebrow,.storefront-cart-picker>h2{padding-inline-end:48px}.storefront-cart-picker label{color:var(--site-text)}.storefront-cart-picker select{border-color:var(--site-border-color);border-radius:var(--site-radius);background:var(--site-surface);color:var(--site-text)}.storefront-cart-picker__purchase-row{display:flex;align-items:flex-end;justify-content:space-between;gap:16px;flex-wrap:wrap}.storefront-cart-quantity{display:grid;gap:7px}.storefront-cart-quantity__label{color:var(--site-text);font-size:.86rem;font-weight:700}.storefront-quantity-stepper{display:inline-grid;grid-template-columns:40px 44px 40px;direction:ltr;overflow:hidden;border:1px solid var(--site-border-color);border-radius:var(--site-radius);background:var(--site-surface)}.storefront-quantity-stepper button,.storefront-quantity-stepper output{width:100%;min-height:40px;display:grid;place-items:center}.storefront-quantity-stepper button{padding:0;border:0;background:var(--site-surface-muted);color:var(--site-text);cursor:pointer}.storefront-quantity-stepper button:hover:not(:disabled),.storefront-quantity-stepper button:focus-visible:not(:disabled){background:var(--site-primary);color:#ffffff;outline:none}.storefront-quantity-stepper button:disabled{color:var(--storefront-muted-text);cursor:not-allowed}.storefront-quantity-stepper output{font-weight:800}.storefront-cart-picker__stock{margin:0 0 8px;color:var(--storefront-muted-text)}.storefront-dialog__status{border:1px solid var(--site-border-color);border-radius:var(--site-radius);background:var(--site-surface-muted)}.storefront-dialog__status[data-state="success"]{color:var(--site-success);background:color-mix(in srgb,var(--site-success) 10%,var(--site-surface))}.storefront-dialog__status[data-state="error"]{color:var(--site-danger);background:color-mix(in srgb,var(--site-danger) 9%,var(--site-surface))}.storefront-cart-picker__actions .default__button{min-height:46px;padding-inline:20px}@media (max-width:767px){.storefront-products-body .mobile-logo img{max-height:44px}.storefront-dialog,.storefront-dialog--cart{width:calc(100vw - 12px);max-width:none;max-height:calc(100dvh - 12px);margin-bottom:0;border-radius:var(--site-radius) var(--site-radius) 0 0}.storefront-dialog .modal-content{max-height:calc(100dvh - 12px);overflow-y:auto;overscroll-behavior:contain;border-radius:var(--site-radius) var(--site-radius) 0 0}.storefront-dialog .modal-body{padding:14px}.storefront-dialog .grid__quick__img{height:min(300px,38dvh);margin-bottom:0}.storefront-dialog .grid__quick__content{padding:18px 6px 6px;justify-content:flex-start}.storefront-dialog .grid__quick__content h3{padding-inline-end:44px}.storefront-quick-view__description{max-height:none;overflow:visible;margin-bottom:18px}.storefront-cart-picker{padding:26px 18px 20px}.storefront-cart-picker__purchase-row{align-items:center}.storefront-cart-picker__actions{margin-top:18px;gap:12px}}@media (max-width:575.98px){.storefront-products-body .headerarea__right__mobail__menu{gap:2px}.storefront-cart-picker__purchase-row,.storefront-cart-picker__actions{align-items:stretch;flex-direction:column}.storefront-cart-picker__actions .default__button,.storefront-cart-picker__actions a{width:100%;justify-content:center;text-align:center}}@media (prefers-reduced-motion:reduce){.storefront-product-card,.storefront-product-card img,.storefront-product-actions,.storefront-product-actions button,.storefront-filter summary svg,.storefront-header-categories .menu__title{transition:none !important}}

/*KEY_STOREFRONT_HOME_DISCOUNT_RIBBON_START*/
.best__selling .grid__wraper__img {
    position: relative;
    overflow: hidden;
}

.best__selling .storefront-sale-ribbon--home {
    position: absolute;
    z-index: 3;
    top: 18px;
    left: -42px;
    width: 142px;
    padding: 7px 0;
    transform: rotate(-45deg);
    background: #d9343b;
    color: #ffffff;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 5px 14px rgba(180, 26, 32, 0.28);
    pointer-events: none;
}
/*KEY_STOREFRONT_HOME_DISCOUNT_RIBBON_END*/

/* KEY_STOREFRONT_PUBLIC_SHELL_CONSOLIDATION_STAGE2_V7_START */
.storefront-shared-shell {
    --storefront-card: var(--site-surface);
    --storefront-muted-surface: color-mix(
        in srgb,
        var(--site-surface-muted) 82%,
        var(--site-surface)
    );
    --borderColor: var(--site-border-color);
    --headingColor: var(--site-text);
    --bodyColor: var(--site-text);
    --primaryColor: var(--site-primary);
}

/*
 * Use the clean home/index header as the single public reference.
 * The secondary black strip is suppressed consistently; its source
 * remains untouched until browser acceptance proves it can be deleted.
 */
.storefront-shared-shell .header__topbar {
    display: none !important;
}

.storefront-shared-shell .site-header-sticky {
    position: sticky;
    z-index: 1000;
    top: 0;
}

.storefront-shared-shell .site-header-sticky .headerarea {
    border-bottom: 1px solid
        color-mix(
            in srgb,
            var(--site-border-color) 72%,
            transparent
        );
    background: color-mix(
        in srgb,
        var(--site-surface) 74%,
        transparent
    );
    -webkit-backdrop-filter: blur(14px) saturate(145%);
    backdrop-filter: blur(14px) saturate(145%);
    box-shadow: 0 8px 24px
        color-mix(
            in srgb,
            var(--site-text) 6%,
            transparent
        );
    transition:
        background 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.storefront-shared-shell
.site-header-sticky.is-scrolled
.headerarea {
    background: color-mix(
        in srgb,
        var(--site-surface) 84%,
        transparent
    );
    border-bottom-color: color-mix(
        in srgb,
        var(--site-border-color) 88%,
        transparent
    );
    box-shadow: 0 12px 30px
        color-mix(
            in srgb,
            var(--site-text) 11%,
            transparent
        );
}

.storefront-shared-shell
.site-header-sticky
.headerarea
.common__row {
    min-height: 92px;
}

.storefront-shared-shell
.site-header-sticky
.headerarea__logo,
.storefront-shared-shell
.site-header-sticky
.headerarea__right,
.storefront-shared-shell
.site-header-sticky
.headerarea__main__menu {
    min-height: 92px;
    display: flex;
    align-items: center;
}

.storefront-shared-shell
.headerarea__main__menu > nav {
    width: 100%;
}

.storefront-shared-shell
.headerarea__main__menu > nav > ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*
 * Desktop categories open directly below their own navigation item,
 * centred on the trigger rather than attached to the page edge.
 */
.storefront-shared-shell .storefront-category-menu {
    position: relative;
}

.storefront-shared-shell
.headerarea__main__menu > nav > ul > li
> .storefront-category-trigger {
    -webkit-appearance: none;
    appearance: none;
    display: block;
    margin: 0;
    padding: 10px 20px;
    border: 0;
    background: transparent;
    color: var(--blackColor);
    font-family: var(--headingFont);
    font-size: 16px;
    font-weight: 700;
    line-height: 60px;
    position: relative;
    white-space: nowrap;
    cursor: pointer;
}

.storefront-shared-shell
.storefront-category-menu:hover
.storefront-category-trigger,
.storefront-shared-shell
.storefront-category-menu:focus-within
.storefront-category-trigger {
    color: var(--site-primary);
    outline: none;
}

.storefront-shared-shell
.storefront-category-trigger:focus-visible {
    outline: 2px solid var(--site-primary);
    outline-offset: 5px;
    border-radius: 2px;
}

.storefront-shared-shell
.storefront-category-menu
.storefront-header-categories {
    position: absolute;
    top: calc(100% - 1px);
    right: auto;
    left: 50%;
    width: min(680px, calc(100vw - 40px));
    max-height: min(480px, calc(100dvh - 132px));
    padding: 16px;
    display: grid;
    grid-template-columns: repeat(
        auto-fit,
        minmax(145px, 1fr)
    );
    gap: 8px;
    overflow: auto;
    clip: auto !important;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(8px);
    background: var(--site-surface);
    border: 1px solid var(--site-border-color);
    border-radius: var(--site-radius);
    box-shadow: 0 18px 44px
        color-mix(
            in srgb,
            var(--site-text) 12%,
            transparent
        );
    transition:
        opacity 160ms ease 140ms,
        transform 180ms ease 140ms,
        visibility 0s linear 300ms;
}

.storefront-shared-shell
.storefront-category-menu:hover
.storefront-header-categories,
.storefront-shared-shell
.storefront-category-menu:focus-within
.storefront-header-categories {
    clip: auto !important;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition-delay: 0s;
}

.storefront-shared-shell
.storefront-header-categories > li {
    width: auto;
    margin: 0;
    padding: 0;
    float: none;
    text-align: start;
}

.storefront-shared-shell
.storefront-header-categories
.menu__title {
    min-height: 46px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    border-radius: var(--site-radius);
    background: var(--storefront-muted-surface);
    color: var(--site-text);
    line-height: 1.7;
}

.storefront-shared-shell
.storefront-header-categories
.menu__title:hover,
.storefront-shared-shell
.storefront-header-categories
.menu__title:focus-visible {
    color: var(--site-primary);
    background: color-mix(
        in srgb,
        var(--site-primary) 8%,
        var(--site-surface)
    );
    outline: none;
}

.storefront-shared-shell
[data-storefront-mobile-submenu][hidden] {
    display: none !important;
}

.storefront-shared-shell
[data-storefront-mobile-submenu-toggle] {
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.storefront-shared-shell
[data-storefront-mobile-submenu-toggle]:focus-visible {
    outline: 2px solid var(--site-primary);
    outline-offset: 2px;
}

.storefront-shared-shell .storefront-mobile-drawer {
    position: fixed;
    z-index: 9998;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(380px, 88vw);
    max-width: 88vw;
    min-height: 100dvh;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transform: translateX(104%);
    background: var(--site-surface);
    box-shadow: -18px 0 48px var(--site-shadow-color);
    transition:
        transform 220ms ease,
        opacity 180ms ease,
        visibility 180ms ease;
}

.storefront-shared-shell .storefront-mobile-drawer.inside {
    right: 0;
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.storefront-shared-shell
.storefront-mobile-drawer
.header-mobile-aside-wrap {
    height: 100%;
    min-height: 100%;
    padding: 18px 22px 30px;
    overflow-y: auto;
    background: var(--site-surface);
}

.storefront-shared-shell
.storefront-mobile-drawer__head {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.storefront-shared-shell
.storefront-mobile-drawer__head
.mobile__logo {
    min-width: 0;
    min-height: 58px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.storefront-shared-shell
.storefront-mobile-drawer__head
.mobile__logo img {
    max-width: 132px;
    max-height: 52px;
}

.storefront-shared-shell
.storefront-mobile-drawer
.mobile-aside-close {
    position: static;
    flex: 0 0 var(--site-control-size, 44px);
}

.storefront-shared-shell
.storefront-mobile-drawer
.mobile-search {
    margin: 18px 0 22px;
    padding-bottom: 22px;
}

.storefront-shared-shell
.storefront-mobile-drawer
.mobile-search form {
    min-height: 50px;
    border: 1px solid var(--site-border-color);
    border-radius: var(--site-radius);
    background: var(--site-surface-muted);
}

.storefront-shared-shell
.storefront-mobile-drawer
.mobile-search input {
    min-height: 48px;
    background: transparent;
}

.storefront-shared-shell
.storefront-mobile-drawer
.mobile-menu > li {
    position: relative;
}

.storefront-shared-shell
.storefront-mobile-drawer
.mobile-menu > li > a {
    min-height: 48px;
    padding-block: 10px;
    display: flex;
    align-items: center;
}

.storefront-shared-shell
.storefront-mobile-drawer
.mobile-menu
.menu-item-has-children {
    display: block;
}

.storefront-shared-shell
.storefront-mobile-drawer
.storefront-mobile-category-toggle {
    position: static;
    width: 100%;
    min-height: 48px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: start;
    cursor: pointer;
}

.storefront-shared-shell
.storefront-mobile-drawer
.storefront-mobile-category-toggle:focus-visible {
    color: var(--site-primary);
    outline: 2px solid var(--site-primary);
    outline-offset: 2px;
}

.storefront-shared-shell
.storefront-mobile-drawer
.storefront-mobile-category-toggle i {
    flex: 0 0 auto;
}

.storefront-shared-shell
.storefront-mobile-drawer
.menu-item-has-children > .dropdown {
    width: 100%;
}

.storefront-shared-shell
.storefront-mobile-account-wrap {
    margin-top: 16px;
    padding-top: 8px;
    border-top: 1px solid var(--site-border-color);
}

.storefront-control-close {
    width: var(--site-control-size, 44px);
    height: var(--site-control-size, 44px);
    padding: 0;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--site-border-color);
    border-radius: var(--site-radius);
    background: var(--site-surface-muted);
    color: var(--site-text);
    line-height: 1;
    cursor: pointer;
}

.storefront-control-close > span {
    position: relative;
    width: 16px;
    height: 16px;
}

.storefront-control-close > span::before,
.storefront-control-close > span::after {
    position: absolute;
    top: 7px;
    left: 1px;
    width: 14px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    content: "";
}

.storefront-control-close > span::before {
    transform: rotate(45deg);
}

.storefront-control-close > span::after {
    transform: rotate(-45deg);
}

.storefront-control-close:hover,
.storefront-control-close:focus-visible {
    border-color: var(--site-primary);
    background: var(--site-primary);
    color: #fff;
    outline: none;
}

.storefront-dialog__close {
    position: absolute;
    z-index: 5;
    top: 12px;
    right: auto;
    left: auto;
    inset-inline-end: 12px;
    box-shadow: none;
}

body.storefront-shell-panel-open {
    overflow: hidden;
}

@media (min-width: 992px) and (max-width: 1365px) {
    .storefront-shared-shell
    .headerarea__main__menu > nav > ul > li
    > .storefront-category-trigger {
        padding: 10px 15px;
        font-size: 15px;
        line-height: 50px;
    }
}

@media (max-width: 991px) {
    .storefront-shared-shell
    .site-header-sticky
    .headerarea
    .common__row,
    .storefront-shared-shell
    .site-header-sticky
    .headerarea__logo,
    .storefront-shared-shell
    .site-header-sticky
    .headerarea__right,
    .storefront-shared-shell
    .site-header-sticky
    .headerarea__main__menu {
        min-height: auto;
    }

    .storefront-shared-shell
    .storefront-category-menu
    .storefront-header-categories {
        grid-template-columns: repeat(
            2,
            minmax(0, 1fr)
        );
    }

    .storefront-shared-shell
    .headerarea__main__menu > nav > ul > li
    > .storefront-category-trigger {
        min-height: 44px;
    }
}

@media (max-width: 575.98px) {
    .storefront-shared-shell
    .storefront-category-menu
    .storefront-header-categories {
        grid-template-columns: 1fr;
    }

    .storefront-shared-shell .storefront-mobile-drawer {
        width: min(360px, 92vw);
        max-width: 92vw;
    }

    .storefront-shared-shell
    .storefront-mobile-drawer
    .header-mobile-aside-wrap {
        padding-inline: 18px;
    }
}
/* KEY_STOREFRONT_PUBLIC_SHELL_CONSOLIDATION_STAGE2_V7_END */

/* KEY_STOREFRONT_COMPACT_MOBILE_DRAWER_STAGE2_V17_START */
.storefront-shared-shell .storefront-mobile-drawer {
    width: min(320px, 80vw);
    max-width: 80vw;
    direction: rtl;
}

.storefront-shared-shell
.storefront-mobile-drawer
.header-mobile-aside-wrap {
    box-sizing: border-box;
    height: 100dvh;
    min-height: 100dvh;
    padding: 14px 16px 20px;
    overflow-x: hidden;
    overflow-y: auto;
}

.storefront-shared-shell
.storefront-mobile-drawer__head {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.storefront-shared-shell
.storefront-mobile-drawer__head
.mobile__logo {
    min-height: 48px;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
}

.storefront-shared-shell
.storefront-mobile-drawer__head
.mobile__logo img {
    width: auto;
    max-width: 104px;
    max-height: 44px;
}

.storefront-shared-shell
.storefront-mobile-drawer
.mobile-aside-close.storefront-control-close {
    position: static !important;
    inset: auto !important;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    margin: 0 !important;
    transform: none !important;
    box-shadow: none;
}

.storefront-shared-shell
.storefront-mobile-drawer
.mobile-search {
    width: 100%;
    margin: 14px 0 10px !important;
    padding: 0 0 10px !important;
}

.storefront-shared-shell
.storefront-mobile-drawer
.mobile-search form {
    box-sizing: border-box;
    position: relative !important;
    inset: auto !important;
    width: 100%;
    min-height: 46px;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: row;
    align-items: stretch;
    direction: rtl;
    overflow: hidden;
    transform: none !important;
}

.storefront-shared-shell
.storefront-mobile-drawer
.mobile-search input {
    box-sizing: border-box;
    position: static !important;
    inset: auto !important;
    flex: 1 1 auto;
    width: auto !important;
    min-width: 0;
    min-height: 44px;
    height: auto !important;
    margin: 0 !important;
    padding: 8px 12px !important;
    border: 0;
    text-align: right;
    transform: none !important;
}

.storefront-shared-shell
.storefront-mobile-drawer
.mobile-search .button-search {
    box-sizing: border-box;
    position: static !important;
    inset: auto !important;
    flex: 0 0 46px;
    width: 46px !important;
    min-width: 46px;
    height: auto !important;
    min-height: 46px;
    margin: 0 !important;
    padding: 0 !important;
    display: grid !important;
    place-items: center;
    float: none !important;
    transform: none !important;
    border: 0;
    border-inline-start: 1px solid var(--site-border-color);
    background: transparent;
}

.storefront-shared-shell
.storefront-mobile-drawer
.mobile-search .button-search svg {
    width: 20px;
    height: 20px;
    margin: 0;
    transform: none !important;
}

.storefront-shared-shell
.storefront-mobile-drawer
.mobile-menu-wrap,
.storefront-shared-shell
.storefront-mobile-drawer
.mobile-navigation,
.storefront-shared-shell
.storefront-mobile-drawer
.mobile-navigation nav,
.storefront-shared-shell
.storefront-mobile-drawer
.mobile-menu {
    box-sizing: border-box;
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.storefront-shared-shell
.storefront-mobile-drawer
.mobile-menu {
    display: block !important;
    list-style: none;
}

.storefront-shared-shell
.storefront-mobile-drawer
.mobile-menu > li {
    position: relative;
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: normal !important;
    list-style: none;
}

.storefront-shared-shell
.storefront-mobile-drawer
.mobile-menu > li + li {
    margin-top: 2px !important;
}

.storefront-shared-shell
.storefront-mobile-drawer
.mobile-menu > li > a,
.storefront-shared-shell
.storefront-mobile-drawer
.storefront-mobile-category-toggle {
    box-sizing: border-box;
    position: static !important;
    inset: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 42px !important;
    margin: 0 !important;
    padding: 7px 4px !important;
    display: flex !important;
    align-items: center;
    gap: 8px;
    transform: none !important;
    border: 0;
    background: transparent;
    color: var(--site-text);
    font: inherit;
    font-size: 16px;
    line-height: 1.45 !important;
    text-align: start;
    white-space: normal;
}

.storefront-shared-shell
.storefront-mobile-drawer
.storefront-mobile-category-toggle {
    justify-content: flex-start !important;
    cursor: pointer;
}

.storefront-shared-shell
.storefront-mobile-drawer
.storefront-mobile-category-toggle span {
    flex: 0 1 auto;
}

.storefront-shared-shell
.storefront-mobile-drawer
.storefront-mobile-category-toggle i {
    position: relative !important;
    inset: auto !important;
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    margin: 0 6px 0 0 !important;
    border-inline-end: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 160ms ease;
}

.storefront-shared-shell
.storefront-mobile-drawer
.storefront-mobile-category-toggle[aria-expanded="true"] i {
    transform: rotate(225deg) translate(-2px, -2px);
}

.storefront-shared-shell
.storefront-mobile-drawer
.menu-item-has-children > .dropdown {
    position: static !important;
    inset: auto !important;
    box-sizing: border-box;
    width: 100% !important;
    max-width: 100%;
    max-height: 220px;
    margin: 2px 0 6px !important;
    padding: 5px !important;
    overflow-x: hidden;
    overflow-y: auto;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    border: 1px solid var(--site-border-color);
    border-radius: var(--site-radius);
    background: var(--site-surface-muted);
    box-shadow: none;
}

.storefront-shared-shell
.storefront-mobile-drawer
.menu-item-has-children > .dropdown[hidden] {
    display: none !important;
}

.storefront-shared-shell
.storefront-mobile-drawer
.menu-item-has-children > .dropdown > li {
    width: 100%;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
}

.storefront-shared-shell
.storefront-mobile-drawer
.menu-item-has-children > .dropdown a {
    box-sizing: border-box;
    width: 100%;
    min-height: 38px;
    margin: 0;
    padding: 6px 8px;
    display: flex;
    align-items: center;
    border-radius: calc(var(--site-radius) - 2px);
    color: var(--site-text);
    font-size: 14px;
    line-height: 1.5;
    white-space: normal;
}

.storefront-shared-shell
.storefront-mobile-account-wrap {
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    margin: 4px 0 0 !important;
    padding: 4px 0 0 !important;
}

.storefront-shared-shell
.storefront-mobile-account-wrap
.single-mobile-curr-lang,
.storefront-shared-shell
.storefront-mobile-account-wrap
.single-mobile-curr-lang > ul,
.storefront-shared-shell
.storefront-mobile-account-wrap
.single-mobile-curr-lang > ul > li {
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.storefront-shared-shell
.storefront-mobile-account-wrap
.single-mobile-curr-lang > a,
.storefront-shared-shell
.storefront-mobile-account-wrap
.single-mobile-curr-lang > ul a {
    box-sizing: border-box;
    width: 100%;
    height: auto !important;
    min-height: 42px !important;
    margin: 0 !important;
    padding: 7px 4px !important;
    display: flex;
    align-items: center;
    color: var(--site-text);
    font-size: 16px;
    line-height: 1.45 !important;
}

@media (max-width: 575.98px) {
    .storefront-shared-shell .storefront-mobile-drawer {
        width: min(300px, 82vw);
        max-width: 82vw;
    }

    .storefront-shared-shell
    .storefront-mobile-drawer
    .header-mobile-aside-wrap {
        padding-inline: 14px;
    }
}
/* KEY_STOREFRONT_COMPACT_MOBILE_DRAWER_STAGE2_V17_END */

/* KEY_STOREFRONT_MOBILE_CATEGORY_ACCORDION_STAGE2_V18_START */
.storefront-shared-shell
.storefront-mobile-drawer
.storefront-mobile-category-toggle {
    justify-content: flex-start !important;
    column-gap: 8px !important;
}

.storefront-shared-shell
.storefront-mobile-drawer
.storefront-mobile-category-toggle i,
.storefront-shared-shell
.storefront-mobile-drawer
.storefront-mobile-category-toggle i::before,
.storefront-shared-shell
.storefront-mobile-drawer
.storefront-mobile-category-toggle i::after {
    display: none !important;
    content: none !important;
}

.storefront-shared-shell
.storefront-mobile-drawer
.storefront-mobile-category-toggle::before,
.storefront-shared-shell
.storefront-mobile-drawer
.storefront-mobile-category-toggle::after {
    box-sizing: border-box;
}

.storefront-shared-shell
.storefront-mobile-drawer
.storefront-mobile-category-toggle::after {
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    margin: 0 2px 4px 0;
    border: 0;
    border-inline-end: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    content: "" !important;
    transform: rotate(45deg);
    transform-origin: center;
    transition: transform 160ms ease;
}

.storefront-shared-shell
.storefront-mobile-drawer
.storefront-mobile-category-toggle[aria-expanded="true"]::after {
    margin-bottom: -3px;
    transform: rotate(225deg);
}

.storefront-shared-shell
.storefront-mobile-drawer
.menu-item-has-children > .dropdown {
    max-height: 0;
    margin: 2px 0 8px !important;
    padding: 5px !important;
    overflow: hidden;
    scrollbar-width: auto;
}

.storefront-shared-shell
.storefront-mobile-drawer
.menu-item-has-children > .dropdown > li {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: normal !important;
}

.storefront-shared-shell
.storefront-mobile-drawer
.menu-item-has-children > .dropdown > li + li {
    margin-top: 1px !important;
}

.storefront-shared-shell
.storefront-mobile-drawer
.menu-item-has-children > .dropdown > li > a {
    box-sizing: border-box;
    width: 100% !important;
    height: auto !important;
    min-height: 36px !important;
    margin: 0 !important;
    padding: 6px 9px !important;
    display: flex !important;
    align-items: center;
    transform: none !important;
    font-size: 14px;
    line-height: 1.45 !important;
    text-align: start;
}

.storefront-shared-shell
.storefront-mobile-drawer
.header-mobile-aside-wrap {
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
}
/* KEY_STOREFRONT_MOBILE_CATEGORY_ACCORDION_STAGE2_V18_END */

/* KEY_STOREFRONT_GENTLE_MOBILE_MOTION_STAGE2_V19_START */
.storefront-shared-shell .storefront-mobile-drawer {
    will-change: transform, opacity;
    transition:
        transform 380ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 260ms ease,
        visibility 0s linear 380ms !important;
}

.storefront-shared-shell .storefront-mobile-drawer.inside {
    transition-delay: 0s !important;
}

.storefront-mobile-drawer-backdrop {
    transition:
        opacity 300ms ease,
        visibility 0s linear 300ms !important;
}

.storefront-mobile-drawer-backdrop.is-visible {
    transition-delay: 0s !important;
}

.storefront-shared-shell
[data-storefront-mobile-submenu] {
    display: block;
    max-height: 0;
    overflow: hidden !important;
    opacity: 0;
    transform: translateY(-6px);
    transform-origin: top;
    transition:
        max-height 460ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 220ms ease,
        transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.storefront-shared-shell
[data-storefront-mobile-submenu].is-open {
    opacity: 1;
    transform: translateY(0);
}

.storefront-shared-shell
[data-storefront-mobile-submenu][hidden] {
    display: none !important;
}

/* Closed state points LEFT; expanded state points DOWN. */
.storefront-shared-shell
.storefront-mobile-drawer
.storefront-mobile-category-toggle::after {
    margin: 0 3px 0 0;
    border: 0;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(135deg);
}

.storefront-shared-shell
.storefront-mobile-drawer
.storefront-mobile-category-toggle[aria-expanded="true"]::after {
    margin: 0 3px 4px 0;
    transform: rotate(45deg);
}

/* Softer close control with mathematically centred strokes. */
.storefront-shared-shell
.storefront-mobile-drawer
.mobile-aside-close.storefront-control-close {
    position: static !important;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px;
    min-height: 42px;
    margin: 0 !important;
    padding: 0 !important;
    display: grid !important;
    place-items: center !important;
    border: 1px solid var(--site-border-color) !important;
    border-radius: 13px !important;
    background: color-mix(
        in srgb,
        var(--site-surface-muted) 82%,
        var(--site-surface)
    ) !important;
    color: var(--site-text) !important;
    line-height: 0 !important;
    box-shadow: none !important;
}

.storefront-shared-shell
.storefront-mobile-drawer
.mobile-aside-close.storefront-control-close > span {
    position: relative !important;
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
    display: block !important;
    transform: none !important;
}

.storefront-shared-shell
.storefront-mobile-drawer
.mobile-aside-close.storefront-control-close
> span::before,
.storefront-shared-shell
.storefront-mobile-drawer
.mobile-aside-close.storefront-control-close
> span::after {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 16px !important;
    height: 2px !important;
    margin: 0 !important;
    border-radius: 999px;
    background: currentColor !important;
    content: "" !important;
    transform-origin: center !important;
}

.storefront-shared-shell
.storefront-mobile-drawer
.mobile-aside-close.storefront-control-close
> span::before {
    transform: translate(-50%, -50%) rotate(45deg) !important;
}

.storefront-shared-shell
.storefront-mobile-drawer
.mobile-aside-close.storefront-control-close
> span::after {
    transform: translate(-50%, -50%) rotate(-45deg) !important;
}

.storefront-shared-shell
.storefront-mobile-drawer
.mobile-aside-close.storefront-control-close:hover,
.storefront-shared-shell
.storefront-mobile-drawer
.mobile-aside-close.storefront-control-close:focus-visible {
    border-color: color-mix(
        in srgb,
        var(--site-primary) 55%,
        var(--site-border-color)
    ) !important;
    background: color-mix(
        in srgb,
        var(--site-primary) 10%,
        var(--site-surface)
    ) !important;
    color: var(--site-primary) !important;
    outline: none;
}

@media (prefers-reduced-motion: reduce) {
    .storefront-shared-shell .storefront-mobile-drawer,
    .storefront-mobile-drawer-backdrop,
    .storefront-shared-shell
    [data-storefront-mobile-submenu] {
        transition-duration: 1ms !important;
    }
}
/* KEY_STOREFRONT_GENTLE_MOBILE_MOTION_STAGE2_V19_END */

/* KEY_STOREFRONT_RELIABLE_CATEGORY_MOTION_STAGE2_V23_START */
.storefront-shared-shell
[data-storefront-mobile-submenu] {
    box-sizing: border-box;
    max-height: 0;
    margin-block: 0 !important;
    padding-block: 0 !important;
    border-color: transparent !important;
    background: transparent !important;
    overflow: hidden !important;
    opacity: 0 !important;
    transform: translateY(-8px) !important;
    pointer-events: none !important;
    transition:
        max-height 520ms cubic-bezier(0.22, 1, 0.36, 1),
        margin 420ms cubic-bezier(0.22, 1, 0.36, 1),
        padding 420ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color 180ms ease,
        background 180ms ease,
        opacity 300ms ease,
        transform 420ms cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.storefront-shared-shell
[data-storefront-mobile-submenu].is-open {
    margin: 2px 0 8px !important;
    padding: 5px !important;
    border-color: var(--site-border-color) !important;
    background: var(--site-surface-muted) !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

.storefront-shared-shell
[data-storefront-mobile-submenu][hidden] {
    display: none !important;
}

@media (prefers-reduced-motion: reduce) {
    .storefront-shared-shell
    [data-storefront-mobile-submenu] {
        transition-duration: 1ms !important;
    }
}
/* KEY_STOREFRONT_RELIABLE_CATEGORY_MOTION_STAGE2_V23_END */

/* KEY_STOREFRONT_REDUCED_MOTION_REFINEMENT_STAGE2_V25_START */
@media (prefers-reduced-motion: reduce) {
    .storefront-shared-shell
    [data-storefront-mobile-submenu] {
        transform: none !important;
        transition:
            max-height 260ms ease-out,
            margin 220ms ease-out,
            padding 220ms ease-out,
            border-color 140ms ease,
            background 140ms ease,
            opacity 180ms ease !important;
    }

    .storefront-shared-shell
    .storefront-mobile-drawer {
        transition:
            transform 220ms ease-out,
            opacity 180ms ease,
            visibility 0s linear 220ms !important;
    }

    .storefront-mobile-drawer-backdrop {
        transition:
            opacity 180ms ease,
            visibility 0s linear 180ms !important;
    }
}
/* KEY_STOREFRONT_REDUCED_MOTION_REFINEMENT_STAGE2_V25_END */

/* KEY_STOREFRONT_GRID_CATEGORY_ACCORDION_STAGE2_V26_START */
.storefront-shared-shell
.storefront-mobile-drawer
.mobile-menu > li.menu-item-has-children {
    display: grid !important;
    grid-template-rows: auto 0fr;
    align-content: start;
    transition:
        grid-template-rows 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.storefront-shared-shell
.storefront-mobile-drawer
.mobile-menu > li.menu-item-has-children.active {
    grid-template-rows: auto 1fr;
}

.storefront-shared-shell
.storefront-mobile-drawer
.mobile-menu > li.menu-item-has-children
> [data-storefront-mobile-submenu] {
    display: block !important;
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 5px !important;
    overflow: hidden !important;
    border-width: 0 !important;
    border-color: transparent !important;
    background: transparent !important;
    opacity: 0 !important;
    transform: none !important;
    pointer-events: none !important;
    transition:
        margin 420ms cubic-bezier(0.22, 1, 0.36, 1),
        padding 420ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color 180ms ease,
        background 180ms ease,
        opacity 280ms ease !important;
}

.storefront-shared-shell
.storefront-mobile-drawer
.mobile-menu > li.menu-item-has-children.active
> [data-storefront-mobile-submenu] {
    margin: 2px 0 8px !important;
    padding: 5px !important;
    border-width: 1px !important;
    border-color: var(--site-border-color) !important;
    background: var(--site-surface-muted) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.storefront-shared-shell
.storefront-mobile-drawer
[data-storefront-mobile-submenu][hidden] {
    display: block !important;
}

@media (prefers-reduced-motion: reduce) {
    .storefront-shared-shell
    .storefront-mobile-drawer
    .mobile-menu > li.menu-item-has-children {
        transition:
            grid-template-rows 280ms ease-out !important;
    }

    .storefront-shared-shell
    .storefront-mobile-drawer
    .mobile-menu > li.menu-item-has-children
    > [data-storefront-mobile-submenu] {
        transition:
            margin 240ms ease-out,
            padding 240ms ease-out,
            border-color 140ms ease,
            background 140ms ease,
            opacity 200ms ease !important;
    }
}
/* KEY_STOREFRONT_GRID_CATEGORY_ACCORDION_STAGE2_V26_END */

/* KEY_STOREFRONT_ACCOUNT_PANEL_LAYER_V5_START */
/*
 * site-appearance.css sets the shared backdrop to z-index 9997. The
 * legacy style.css account card is z-index 99, so it opened underneath
 * the shade and could not be clicked. Keep the existing interaction;
 * only repair its layer and narrow-screen width.
 */
.storefront-shared-shell .setting__wrap__list {
    z-index: 10020;
    max-width: calc(100vw - 32px);
}

.storefront-shared-shell .setting__wrap__list.show {
    pointer-events: auto;
}
/* KEY_STOREFRONT_ACCOUNT_PANEL_LAYER_V5_END */
/* KEY_STOREFRONT_ACCOUNT_MODAL_AND_SCROLLUP_V1_START */

/*
 * Convert the inherited tiny account popup into an intentional modal.
 * Existing login/account/logout markup and JavaScript remain unchanged.
 */
.storefront-shared-shell .setting__wrap__list {
    top: 50%;
    right: auto;
    bottom: auto;
    left: 50%;
    width: min(430px, calc(100vw - 32px));
    max-width: none;
    max-height: calc(100dvh - 32px);
    margin: 0;
    padding: 30px;
    overflow-y: auto;
    border: 1px solid var(--site-border-color);
    border-radius: var(--site-radius);
    background: var(--site-surface);
    color: var(--site-text);
    box-shadow: 0 26px 80px var(--site-shadow-color);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform:
        translate(-50%, -46%)
        scale(0.98);
    transition:
        opacity 180ms ease,
        visibility 180ms ease,
        transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.storefront-shared-shell .setting__wrap__list.show {
    top: 50%;
    left: 50%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform:
        translate(-50%, -50%)
        scale(1);
}

.storefront-shared-shell .setting__wrap__close {
    position: absolute;
    top: 16px;
    right: auto;
    left: 16px;
    width: var(--site-control-size, 44px);
    height: var(--site-control-size, 44px);
    padding: 0;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--site-border-color);
    border-radius: var(--site-radius);
    background: var(--site-surface-muted);
    color: var(--site-text);
    line-height: 1;
    cursor: pointer;
    transition:
        border-color 160ms ease,
        background-color 160ms ease,
        color 160ms ease;
}

.storefront-shared-shell .setting__wrap__close svg {
    width: 20px;
    height: 20px;
}

.storefront-shared-shell .setting__wrap__close:hover,
.storefront-shared-shell .setting__wrap__close:focus-visible {
    border-color: var(--site-primary);
    background: var(--site-primary);
    color: #ffffff;
    outline: none;
}

.storefront-shared-shell
.setting__wrap__heading h6 {
    min-height: var(--site-control-size, 44px);
    margin: 0;
    padding: 8px 58px 18px 0;
    border-bottom: 1px solid var(--site-border-color);
    color: var(--site-heading, var(--site-text));
    font-size: clamp(1.25rem, 2.4vw, 1.55rem);
    font-weight: 800;
    line-height: 1.5;
    text-align: right;
}

.storefront-shared-shell
.setting__wrap__heading h6 a {
    color: inherit;
}

.storefront-shared-shell
.setting__wrap__list__inner {
    margin: 22px 0 0;
}

.storefront-shared-shell
.setting__wrap__list__inner ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.storefront-shared-shell
.setting__wrap__list__inner ul li {
    margin: 0;
    padding: 0;
}

.storefront-shared-shell
.setting__wrap__list__inner ul li + li {
    margin-top: 10px;
}

.storefront-shared-shell
.setting__wrap__list__inner ul li a {
    min-height: 50px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--site-primary);
    border-radius: var(--site-radius);
    background: var(--site-primary);
    color: #ffffff !important;
    font-weight: 800;
    line-height: 1.6;
    text-align: center;
    text-decoration: none;
    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease;
}

.storefront-shared-shell
.setting__wrap__list__inner ul li a:hover,
.storefront-shared-shell
.setting__wrap__list__inner ul li a:focus-visible {
    border-color: var(--site-primary);
    background: var(--site-surface);
    color: var(--site-primary) !important;
    outline: none;
}

.storefront-shared-shell
.setting__wrap__list__inner ul li:nth-child(n + 2) a {
    border-color: var(--site-border-color);
    background: var(--site-surface-muted);
    color: var(--site-text) !important;
}

.storefront-shared-shell
.setting__wrap__list__inner ul li:nth-child(n + 2) a:hover,
.storefront-shared-shell
.setting__wrap__list__inner ul li:nth-child(n + 2) a:focus-visible {
    border-color: var(--site-primary);
    background: var(--site-primary);
    color: #ffffff !important;
}

/*
 * The legacy scroll-to-top control must never float above an active shell
 * overlay or drawer. Its plugin-controlled display resumes automatically
 * as soon as the corresponding body class is removed.
 */
body.mini-basket-open #scrollUp,
body.storefront-shell-panel-open #scrollUp,
body.storefront-mobile-drawer-open #scrollUp {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

@media (max-width: 575.98px) {
    .storefront-shared-shell .setting__wrap__list {
        width: calc(100vw - 20px);
        max-height: calc(100dvh - 20px);
        padding: 24px 20px 22px;
    }

    .storefront-shared-shell
    .setting__wrap__heading h6 {
        padding-right: 4px;
        padding-left: 54px;
        font-size: 1.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .storefront-shared-shell .setting__wrap__list,
    .storefront-shared-shell .setting__wrap__close,
    .storefront-shared-shell
    .setting__wrap__list__inner ul li a {
        transition-duration: 1ms;
    }
}

/* KEY_STOREFRONT_ACCOUNT_MODAL_AND_SCROLLUP_V1_END */
