/* AZ Boutique header account and cart popovers. Isolated from page/listing styles. */
:root {
    --azb-popover-accent: #de2666;
    --azb-popover-accent-hover: #c91d59;
    --azb-popover-text: #202124;
    --azb-popover-muted: #62666c;
    --azb-popover-border: #e4e6e8;
    --azb-popover-surface: #fff;
    --azb-popover-radius: 10px;
}

#mini-login > .dropdown-toggle {
    align-items: center;
    cursor: pointer;
    display: inline-flex;
    min-height: 44px;
    min-width: 44px;
    position: relative;
}

#mini-login > .dropdown-toggle * {
    pointer-events: none;
}

#mini-login.azb-account-popover-is-open,
#mini-login > .dropdown-toggle,
#mini-login:hover > .dropdown-toggle,
#mini-login.azb-account-popover-is-open > .dropdown-toggle {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

#mini-login > .dropdown-menu.azb-account-popover {
    background: var(--azb-popover-surface);
    border: 1px solid var(--azb-popover-border);
    border-radius: var(--azb-popover-radius);
    box-shadow: 0 14px 36px rgba(14, 19, 17, 0.16);
    box-sizing: border-box;
    color: var(--azb-popover-text);
    left: auto;
    margin: 8px 0 0;
    padding: 20px;
    right: 0;
}

#mini-login.azb-account-popover-is-open > .dropdown-menu.azb-account-popover {
    display: block;
}

#mini-login > .dropdown-menu.azb-account-popover::before {
    content: "";
    height: 10px;
    left: 0;
    position: absolute;
    right: 0;
    top: -10px;
}

#mini-login > .dropdown-menu.azb-account-popover {
    width: min(340px, calc(100vw - 24px));
}

#mini-login > .dropdown-menu.logout-block.azb-account-popover {
    width: min(760px, calc(100vw - 24px));
}

#mini-login .azb-account-popover .block-content-inner,
#mini-login .azb-account-popover .login-box {
    border: 0;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    width: 100%;
}

#mini-login .azb-account-popover__title {
    color: var(--azb-popover-text);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 18px;
    padding: 0;
}

#mini-login .azb-account-popover .login-form-box {
    margin: 0 0 14px;
    width: 100%;
}

#mini-login .azb-account-popover .login-form-box label {
    color: var(--azb-popover-text);
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    margin: 0 0 6px;
}

#mini-login .azb-account-popover .login-form-box input {
    appearance: none;
    background: #fff;
    border: 1px solid #c9cdd1;
    border-radius: 6px;
    box-shadow: none;
    box-sizing: border-box;
    color: var(--azb-popover-text);
    font-size: 16px;
    height: 46px;
    line-height: 22px;
    margin: 0;
    padding: 11px 12px;
    width: 100%;
}

#mini-login .azb-account-popover .login-form-box input:focus {
    border-color: var(--azb-popover-accent);
    box-shadow: 0 0 0 3px rgba(222, 38, 102, 0.14);
    outline: 0;
}

#mini-login .azb-account-popover .pass-field-box {
    display: grid !important;
    gap: 14px;
    width: 100%;
}

#mini-login .azb-account-popover .azb-account-popover__submit,
#mini-login .azb-account-popover .top-create-btn,
.azb-cart-drawer .block-btns .azb-cart-action {
    align-items: center;
    border-radius: 6px;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-flex;
    font-size: 15px;
    font-weight: 600;
    height: 46px;
    justify-content: center;
    line-height: 20px;
    margin: 0;
    padding: 0 18px;
    text-align: center;
    text-decoration: none;
    transform: none;
    transition: background-color 120ms ease, border-color 120ms ease, color 120ms ease;
}

#mini-login .azb-account-popover .azb-account-popover__submit {
    background: #de2666;
    border: 1px solid #de2666;
    color: #fff;
    width: 100%;
}

#mini-login .azb-account-popover .azb-account-popover__submit:hover,
#mini-login .azb-account-popover .azb-account-popover__submit:focus {
    background: var(--azb-popover-accent-hover);
    border-color: var(--azb-popover-accent-hover);
}

#mini-login .azb-account-popover a.fpw {
    color: var(--azb-popover-muted);
    display: inline-block;
    font-size: 14px;
    line-height: 20px;
    margin: 0 0 18px;
    min-height: 24px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

#mini-login .azb-account-popover a.fpw:hover,
#mini-login .azb-account-popover a.fpw:focus {
    color: var(--azb-popover-accent);
}

#mini-login .azb-account-popover .reg-box {
    align-items: center;
    border-top: 1px solid var(--azb-popover-border);
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "label button";
    margin: 0;
    padding: 18px 0 0;
}

#mini-login .azb-account-popover .reg-box label {
    color: var(--azb-popover-text);
    float: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    margin: 0;
    grid-area: label;
    text-align: left;
    width: auto;
}

#mini-login .azb-account-popover .top-create-btn {
    background: #fff;
    border: 1px solid var(--azb-popover-accent);
    color: var(--azb-popover-accent);
    float: none;
    grid-area: button;
    min-width: 150px;
}

#mini-login .azb-account-popover .top-create-btn:hover,
#mini-login .azb-account-popover .top-create-btn:focus {
    background: #fff1f6;
    color: var(--azb-popover-accent-hover);
}

/* Logged-in account menu. */
#mini-login .azb-account-popover .logout-popup-main {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

#mini-login .azb-account-popover .logout-popup-content-box,
#mini-login .azb-account-popover .logout-empty {
    margin: 0;
    padding: 0;
    width: auto;
}

/* Mini-cart, empty and populated states. */
.azb-cart-drawer-backdrop {
    background: rgba(14, 19, 17, 0.46);
    display: block;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transition: opacity 180ms ease;
    visibility: hidden;
    z-index: 2147483000;
}

body > .azb-cart-drawer {
    background: var(--azb-popover-surface);
    border: 0;
    border-radius: 0;
    bottom: 0;
    box-shadow: -12px 0 32px rgba(14, 19, 17, 0.18);
    box-sizing: border-box;
    color: var(--azb-popover-text);
    display: flex;
    flex-direction: column;
    height: 100dvh;
    left: auto;
    margin: 0;
    max-height: none;
    opacity: 1;
    overflow-x: hidden;
    overflow-y: hidden;
    padding: 0;
    position: fixed;
    right: 0;
    text-align: left;
    top: 0;
    transform: translate3d(100%, 0, 0);
    transition: transform 220ms cubic-bezier(.2, .8, .2, 1), visibility 0s linear 220ms;
    visibility: hidden;
    width: min(420px, 100vw);
    z-index: 2147483001;
}

/* Portaled under body to escape legacy header stacking contexts. */
html body > #azb-mini-cart-panel.azb-cart-drawer {
    display: flex;
}

body > .azb-cart-drawer.azb-cart-drawer--open {
    transform: translate3d(0, 0, 0);
    transition-delay: 0s;
    visibility: visible;
}

body > .azb-cart-drawer-backdrop.azb-cart-drawer-backdrop--open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

body.azb-cart-drawer-body-open {
    overflow: hidden;
}

.azb-cart-drawer .azb-cart-drawer__header {
    align-items: center;
    background: #fff;
    border-bottom: 1px solid var(--azb-popover-border);
    box-sizing: border-box;
    display: flex;
    flex: 0 0 72px;
    justify-content: space-between;
    min-height: 72px;
    padding: 14px 20px;
    position: sticky;
    top: 0;
    z-index: 2;
}

.azb-cart-drawer .azb-cart-drawer__header h2 {
    color: var(--azb-popover-text);
    font-size: 21px;
    font-weight: 600;
    line-height: 28px;
    margin: 0;
    padding: 0;
}

.azb-cart-drawer .azb-cart-drawer__header h2 span {
    color: var(--azb-popover-muted);
    font-size: 15px;
    font-weight: 500;
}

.azb-cart-drawer .azb-cart-drawer__close {
    align-items: center;
    appearance: none;
    background: #f3f4f5;
    border: 0;
    border-radius: 50%;
    color: var(--azb-popover-text);
    cursor: pointer;
    display: inline-flex;
    font-size: 28px;
    font-weight: 400;
    height: 44px;
    justify-content: center;
    line-height: 1;
    margin: 0;
    padding: 0 0 3px;
    width: 44px;
}

.azb-cart-drawer .azb-cart-drawer__close:hover,
.azb-cart-drawer .azb-cart-drawer__close:focus {
    background: #e7e9eb;
    box-shadow: 0 0 0 3px rgba(222, 38, 102, 0.2);
    outline: 2px solid var(--azb-popover-accent);
    outline-offset: 1px;
}

.azb-cart-drawer > .azb-cart-drawer__body {
    box-sizing: border-box;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
    padding: 20px;
    width: 100%;
}

.azb-cart-drawer.block .block-content-inner,
.azb-cart-drawer.block > .azb-cart-drawer__body {
    align-items: center;
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
    min-height: calc(100dvh - 72px);
}

.azb-cart-drawer .empty {
    color: var(--azb-popover-muted);
    font-size: 15px;
    line-height: 22px;
    margin: 0;
    padding: 18px 8px;
    text-align: center;
}

.azb-cart-drawer .block-subtitle {
    color: var(--azb-popover-text);
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    margin: 0 0 14px;
}

.azb-cart-drawer #cart-sidebar {
    margin: 0;
    max-height: min(50vh, 420px);
    overflow-y: auto;
    padding: 0 4px 0 0;
}

.azb-cart-drawer #cart-sidebar > li.item {
    border-bottom: 1px solid var(--azb-popover-border);
    box-sizing: border-box;
    display: block;
    margin: 0;
    padding: 14px 0;
}

.azb-cart-drawer #cart-sidebar .block-content-box {
    align-items: start;
    display: grid;
    gap: 14px;
    grid-template-columns: 80px minmax(0, 1fr);
    width: 100%;
}

.azb-cart-drawer #cart-sidebar .block-content-img,
.azb-cart-drawer #cart-sidebar .block-content-data {
    float: none;
    margin: 0;
    min-width: 0;
    position: relative;
    width: auto;
}

.azb-cart-drawer #cart-sidebar .product-image {
    background: #fff;
    border: 1px solid var(--azb-popover-border);
    box-sizing: border-box;
    display: block;
    float: none;
    height: 80px;
    margin: 0;
    padding: 4px;
    width: 80px;
}

.azb-cart-drawer #cart-sidebar .product-image img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.azb-cart-drawer #cart-sidebar .product-details,
.azb-cart-drawer #cart-sidebar .product-name {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    width: 100%;
}

.azb-cart-drawer #cart-sidebar .product-name,
.azb-cart-drawer #cart-sidebar .product-name a {
    color: var(--azb-popover-accent);
    font-size: 14px;
    line-height: 19px;
    overflow-wrap: anywhere;
}

.azb-cart-drawer #cart-sidebar .block-content-data {
    color: var(--azb-popover-muted);
    font-size: 13px;
    line-height: 20px;
    padding: 2px 32px 0 0;
}

.azb-cart-drawer #cart-sidebar .btn-remove2,
.azb-cart-drawer #cart-sidebar .btn-edit {
    align-items: center;
    display: inline-flex;
    height: 44px;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
    width: 44px;
}

.azb-cart-drawer #cart-sidebar .btn-edit {
    top: 44px;
}

.azb-cart-drawer .ship-price,
.azb-cart-drawer .cart-total {
    align-items: center;
    border-top: 1px solid var(--azb-popover-border);
    box-sizing: border-box;
    display: flex;
    font-size: 14px;
    justify-content: space-between;
    line-height: 20px;
    margin: 0;
    padding: 12px 0;
}

.azb-cart-drawer .ship-price {
    background: #fff5f8;
    border: 0;
    color: var(--azb-popover-accent);
    display: block;
    font-weight: 600;
    margin-top: 14px;
    padding: 12px 14px;
    text-align: center;
}

.azb-cart-drawer .ship-price br {
    display: none;
}

.azb-cart-drawer .ship-price .display-block {
    display: inline;
}

.azb-cart-drawer .cart-total .price {
    color: var(--azb-popover-accent);
    font-size: 18px;
    font-weight: 700;
}

.azb-cart-drawer .block-btns,
.azb-cart-drawer .btns-box {
    margin: 0;
    padding: 0;
}

.azb-cart-drawer .btns-box {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
}

.azb-cart-drawer .btns-box > div,
.azb-cart-drawer .btns-box a,
.azb-cart-drawer .block-btns .azb-cart-action {
    float: none;
    width: 100%;
}

.azb-cart-drawer .pink-btn .azb-cart-action {
    background: #fff;
    border: 1px solid var(--azb-popover-accent);
    color: var(--azb-popover-accent);
}

.azb-cart-drawer .gray-btn .azb-cart-action {
    background: var(--azb-popover-accent);
    border: 1px solid var(--azb-popover-accent);
    color: #fff;
}

@media (max-width: 767px) {
    .azb-cart-drawer .azb-cart-drawer__header p {
        display: none;
    }

    #mini-cart > .dropdown-toggle .cartmain {
        position: static;
    }

    #mini-login > .dropdown-menu.azb-account-popover {
        max-height: calc(100vh - 90px);
        overflow-y: auto;
        padding: 16px;
        width: calc(100vw - 24px);
    }

    #mini-login .azb-account-popover .reg-box,
        .azb-cart-drawer .btns-box,
    #mini-login .azb-account-popover .logout-popup-main {
        grid-template-columns: 1fr;
    }

    #mini-login .azb-account-popover .reg-box {
        grid-template-areas: "label" "button";
    }

    #mini-login .azb-account-popover .top-create-btn {
        width: 100%;
    }

    body > .azb-cart-drawer {
        width: 100vw;
    }

    .azb-cart-drawer .azb-cart-drawer__header {
        padding-left: 16px;
        padding-right: 16px;
    }

    .azb-cart-drawer > .azb-cart-drawer__body {
        padding: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    #mini-login .azb-account-popover *,
    body > .azb-cart-drawer *,
    .azb-cart-drawer-backdrop {
        scroll-behavior: auto;
        transition: none;
    }
}

/* Mini-cart v2: lightweight shell, AZ Flag-inspired item controls. */
.azb-cart-drawer .azb-cart-drawer__header {
    flex: 0 0 64px;
    min-height: 64px;
    padding: 10px 18px;
}

.azb-cart-drawer .azb-cart-drawer__header > div {
    min-width: 0;
}

.azb-cart-drawer .azb-cart-drawer__header h2 {
    font-size: 18px;
    line-height: 23px;
}

.azb-cart-drawer .azb-cart-drawer__header p {
    color: var(--azb-popover-muted);
    font-size: 13px;
    line-height: 18px;
    margin: 1px 0 0;
}

.azb-cart-drawer .azb-cart-drawer__close {
    background: transparent;
    border: 1px solid transparent;
    border-radius: 6px;
    color: #30343a;
    height: 40px;
    padding: 0;
    width: 40px;
}

.azb-cart-drawer .azb-cart-drawer__close svg {
    fill: none;
    height: 20px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 2;
    width: 20px;
}

.azb-cart-drawer .azb-cart-drawer__close:hover {
    background: #f2f3f4;
    box-shadow: none;
    outline: 0;
}

.azb-cart-drawer .azb-cart-drawer__close:focus-visible {
    background: #f5f5f5;
    box-shadow: none;
    outline: 2px solid #697078;
    outline-offset: 1px;
}

.azb-cart-drawer > .azb-cart-drawer__body {
    padding: 18px 18px 10px;
}

.azb-cart-drawer .block-info-box.ship-price {
    align-items: center;
    background: #fff4f7;
    border: 1px solid #f7cedd;
    border-radius: 8px;
    color: #de2666;
    display: grid !important;
    font-size: 13px;
    font-weight: 600;
    gap: 9px;
    grid-template-columns: 22px minmax(0, 1fr);
    line-height: 19px;
    margin: 0 0 16px;
    min-height: 44px;
    padding: 10px 12px;
    text-align: left;
}

.azb-cart-drawer .block-info-box.ship-price.ship-price--free {
    background: #edf8f0;
    border-color: #b9ddc2;
    color: #238636;
}

.azb-cart-drawer .block-info-box.ship-price.ship-price--free > span,
.azb-cart-drawer .block-info-box.ship-price.ship-price--free > span * {
    color: #238636 !important;
}

.azb-cart-drawer .block-info-box.ship-price.ship-price--free .ship-price__icon {
    color: #238636;
}

.azb-cart-drawer .ship-price__icon {
    align-self: center;
    color: #de2666;
    fill: none;
    height: 22px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
    width: 22px;
}

.azb-cart-drawer .ship-price > span > strong {
    align-items: baseline;
    display: flex;
    flex-wrap: wrap;
    gap: 0 4px;
    justify-content: flex-start;
}

.azb-cart-drawer .ship-price > span {
    align-self: center;
    color: inherit !important;
    display: block;
    line-height: 19px;
    text-align: left;
}

.azb-cart-drawer .ship-price > span * {
    color: inherit !important;
}

.azb-cart-drawer .ship-price .price {
    display: inline;
    font-size: inherit;
    line-height: inherit;
    margin: 0 2px;
    position: static;
    vertical-align: baseline;
    white-space: nowrap;
}

.azb-cart-drawer .ship-price p {
    display: inline;
    margin: 0;
}

.azb-cart-drawer .block-subtitle {
    font-size: 15px;
    line-height: 21px;
    margin: 0 0 4px;
}

.azb-cart-drawer #cart-sidebar {
    flex: 1 1 auto;
    max-height: none;
    min-height: 0;
    overscroll-behavior: contain;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
}

.azb-cart-drawer #cart-sidebar > li.azb-mini-item {
    border-bottom: 1px solid var(--azb-popover-border);
    display: block;
    margin: 0;
    padding: 14px 0;
    width: 100%;
    transition: opacity 180ms ease, transform 180ms ease;
}

.azb-cart-drawer #cart-sidebar > li.azb-mini-item.azb-mini-item--removing {
    opacity: 0;
    pointer-events: none;
    transform: translateX(12px);
}

.azb-cart-drawer #cart-sidebar > li.azb-mini-item:last-child {
    border-bottom: 0;
}

.azb-cart-drawer .azb-mini-item__grid {
    display: grid;
    gap: 10px 14px;
    grid-template-columns: 88px minmax(0, 1fr);
    width: 100%;
}

.azb-cart-drawer .azb-mini-item__image,
.azb-cart-drawer .azb-mini-item__content {
    min-width: 0;
}

.azb-cart-drawer .azb-mini-item__image a,
.azb-cart-drawer .azb-mini-item__image img {
    display: block;
    height: 88px;
    object-fit: contain;
    width: 88px;
}

.azb-cart-drawer .azb-mini-item__image a {
    background: #fff;
    border: 1px solid var(--azb-popover-border);
    border-radius: 6px;
    box-sizing: border-box;
    overflow: hidden;
    padding: 4px;
}

.azb-cart-drawer .azb-mini-item__image a img {
    height: 78px;
    width: 78px;
}

.azb-cart-drawer .azb-mini-item .product-name,
.azb-cart-drawer .azb-mini-item .product-name a {
    color: var(--azb-popover-accent);
    font-size: 14px;
    font-weight: 600;
    line-height: 19px;
    margin: 0;
    overflow: visible;
    overflow-wrap: anywhere;
    text-decoration: none;
    white-space: normal;
}

.azb-cart-drawer .azb-mini-item .product-name { display: block; }
.azb-cart-drawer .azb-mini-item .product-name a { display: inline; }

.azb-cart-drawer .azb-mini-item__stock {
    align-items: center;
    color: #5f6368;
    display: flex;
    font-size: 14px;
    font-weight: 400;
    gap: 6px;
    line-height: 19px;
    margin: 7px 0 0;
    max-height: none !important;
    min-width: 0;
    overflow: visible !important;
    overflow-wrap: anywhere;
    text-overflow: clip !important;
    white-space: normal !important;
}

.azb-cart-drawer .azb-mini-item__stock-dot {
    background: #218739;
    border-radius: 50%;
    flex: 0 0 8px;
    height: 8px;
    width: 8px;
}

.azb-cart-drawer .azb-mini-item__stock--delayed .azb-mini-item__stock-dot { background: #d97706; }
.azb-cart-drawer .azb-mini-item__stock--unavailable .azb-mini-item__stock-dot { background: #c62828; }

/* One readable status typography on listing, PDP, cart and checkout review. */
.azb-stock-status {
    color: #5f6368;
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    max-height: none;
    min-width: 0;
    overflow: visible;
    overflow-wrap: anywhere;
    text-overflow: clip;
    white-space: normal;
}

.catalog-product-view .azb-stock-status,
body.checkout-onepage-index #opc-review .azb-stock-status {
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 19px !important;
}

.azb-cart-drawer .azb-mini-item__options {
    color: var(--azb-popover-muted);
    display: grid;
    font-size: 12px;
    grid-template-columns: auto 1fr;
    line-height: 17px;
    margin: 6px 0 0;
}

.azb-cart-drawer .azb-mini-item__options dt,
.azb-cart-drawer .azb-mini-item__options dd { margin: 0 5px 0 0; }

.azb-cart-drawer .azb-mini-item__actions {
    align-items: center;
    display: grid;
    gap: 8px;
    grid-template-columns: minmax(48px, 1fr) auto 40px;
    margin-top: 8px;
    min-width: 0;
}

.azb-cart-drawer .azb-mini-item__price {
    color: var(--azb-popover-accent);
    font-size: 17px;
    font-weight: 700;
    line-height: 22px;
    min-width: 0;
    white-space: nowrap;
}

.azb-cart-drawer .azb-mini-item__qty {
    align-items: center;
    border: 1px solid #cdd1d5;
    border-radius: 6px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 36px 40px 36px;
    height: 40px;
    overflow: hidden;
    width: 112px;
}

.azb-cart-drawer .azb-mini-item__qty button,
.azb-cart-drawer .azb-mini-item__qty input {
    align-items: center;
    background: #fff;
    border: 0;
    color: var(--azb-popover-text);
    display: inline-flex;
    font-size: 20px;
    height: 38px;
    justify-content: center;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.azb-cart-drawer .azb-mini-item__qty button:hover { background: #f4f5f6; }
.azb-cart-drawer .azb-mini-item__qty input {
    -moz-appearance: textfield;
    appearance: textfield;
    border-left: 1px solid #cdd1d5;
    border-right: 1px solid #cdd1d5;
    box-sizing: border-box;
    font-size: 15px;
    font-weight: 600;
    min-width: 0;
    outline: 0;
    text-align: center;
    width: 100%;
}

.azb-cart-drawer .azb-mini-item__remove {
    align-items: center;
    background: #fff3f7;
    border: 1px solid #edb2c7;
    border-radius: 6px;
    color: #a92c39;
    display: inline-flex;
    height: 40px;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 40px;
}

.azb-cart-drawer .azb-mini-item__remove:hover { background: #ffe4ed; border-color: var(--azb-popover-accent); }
.azb-cart-drawer .azb-mini-item__remove svg {
    fill: none;
    height: 20px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    width: 20px;
}

.checkout-cart-index .azb-cart-row-controls { align-items: center; display: flex; }
.checkout-cart-index .azb-cart-row-qty {
    align-items: center;
    border: 1px solid #cdd1d5;
    border-radius: 6px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 36px 40px 36px;
    height: 40px;
    overflow: hidden;
    width: 112px;
}
.checkout-cart-index .azb-cart-row-controls { align-items: center; justify-content: center; }
.checkout-cart-index .azb-cart-row-qty button,
.checkout-cart-index .azb-cart-row-qty input {
    background: #fff;
    border: 0;
    box-sizing: border-box;
    color: #333;
    height: 38px;
    margin: 0;
    padding: 0;
    text-align: center;
}
.checkout-cart-index .azb-cart-row-qty button {
    align-items: center;
    display: inline-flex;
    font-size: 20px;
    justify-content: center;
    line-height: 1;
    width: 100%;
}
.checkout-cart-index .azb-cart-row-qty button:first-child { border-radius: 6px 0 0 6px; }
.checkout-cart-index .azb-cart-row-qty button:last-child { border-radius: 0 6px 6px 0; }
.checkout-cart-index .azb-cart-row-qty input {
    -moz-appearance: textfield;
    appearance: textfield;
    border-width: 1px 0;
    border-radius: 0;
    font-size: 15px;
    min-width: 0;
    outline: 0;
    width: 100%;
}
.checkout-cart-index .azb-cart-row-remove {
    align-items: center;
    background: #fff3f7;
    border: 1px solid #edb2c7;
    border-radius: 6px;
    color: #a92c39;
    display: inline-flex;
    height: 40px;
    justify-content: center;
    margin: 8px 0 0;
    padding: 0;
    width: 40px;
}
.checkout-cart-index .azb-cart-row-remove svg {
    fill: none;
    height: 20px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    width: 20px;
}
@media (min-width: 768px) {
    .checkout-cart-index #shopping-cart-table .button-cart {
        align-items: center;
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
    }
    .checkout-cart-index .azb-cart-row-controls { flex: 0 0 112px; }
    .checkout-cart-index .azb-cart-row-remove {
        flex: 0 0 40px;
        height: 40px;
        margin: 0;
        width: 40px;
    }
}
@media (max-width: 767px) {
    .checkout-cart-index .azb-cart-row-controls { flex: 0 0 112px; }
}

.azb-cart-drawer .cart-total {
    border-bottom: 0;
    border-top: 1px solid var(--azb-popover-border);
    color: #202124;
    font-size: 18px;
    font-weight: 700;
    margin-top: 4px;
    padding: 14px 0 10px;
}

.azb-cart-drawer .cart-total .price {
    color: var(--azb-popover-accent, #de2666);
    font-size: inherit;
    font-weight: inherit;
}

.azb-cart-drawer .ship-price,
.azb-cart-drawer .block-subtitle,
.azb-cart-drawer .cart-total,
.azb-cart-drawer .block-btns {
    flex: 0 0 auto;
}

.azb-cart-drawer .btns-box { gap: 4px; }

.azb-cart-drawer .azb-cart-action--checkout {
    background: #de2666;
    border: 1px solid #de2666;
    color: #fff !important;
    height: 50px;
    font-family: inherit;
    width: 100%;
}

.azb-cart-drawer .azb-cart-action--checkout:hover,
.azb-cart-drawer .azb-cart-action--checkout:focus {
    background: #b51f5a;
    border-color: #b51f5a;
    color: #fff !important;
}

.azb-cart-drawer .azb-cart-action--checkout:hover *,
.azb-cart-drawer .azb-cart-action--checkout:focus * {
    color: #fff;
}

.azb-cart-drawer .azb-cart-action--view {
    background: transparent;
    border: 0;
    color: var(--azb-popover-muted);
    font-size: 14px;
    font-weight: 400;
    font-family: inherit;
    height: 30px;
    line-height: 20px;
    min-height: 30px;
    padding: 0 8px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.azb-cart-drawer .block-btns .azb-cart-action.azb-cart-action--view,
.azb-cart-drawer .block-btns .azb-cart-action.azb-cart-action--view * {
    font-weight: 400;
}

.azb-cart-drawer .azb-cart-action--view:hover,
.azb-cart-drawer .azb-cart-action--view:focus { color: var(--azb-popover-accent); }

.azb-cart-skeleton {
    display: grid;
    gap: 12px;
    width: 100%;
}

.azb-cart-skeleton::before {
    animation: azb-cart-spin .7s linear infinite;
    border: 3px solid #f5c6d7;
    border-radius: 50%;
    border-top-color: var(--azb-popover-accent);
    box-sizing: border-box;
    content: "";
    display: block;
    height: 28px;
    justify-self: center;
    width: 28px;
}

.azb-cart-skeleton span {
    display: none;
}

@keyframes azb-cart-spin { to { transform: rotate(360deg); } }

.azb-cart-drawer[aria-busy="true"] .azb-cart-drawer__body:not(.azb-cart-drawer__body--pending) {
    position: relative;
    pointer-events: none;
}

.azb-cart-drawer[aria-busy="true"] .azb-cart-drawer__body:not(.azb-cart-drawer__body--pending) > * {
    opacity: .58;
}

.azb-cart-drawer[aria-busy="true"] .azb-cart-drawer__body:not(.azb-cart-drawer__body--pending)::after {
    animation: azb-cart-spin .7s linear infinite;
    border: 3px solid #f5c6d7;
    border-radius: 50%;
    border-top-color: var(--azb-popover-accent);
    box-sizing: border-box;
    content: "";
    display: block;
    height: 32px;
    left: 50%;
    margin: -16px 0 0 -16px;
    pointer-events: none;
    position: absolute;
    top: 50%;
    width: 32px;
    z-index: 4;
}

@media (prefers-reduced-motion: reduce) {
    .azb-cart-drawer[aria-busy="true"] .azb-cart-drawer__body:not(.azb-cart-drawer__body--pending)::after {
        animation: none;
    }
}

.azb-cart-drawer--error .azb-cart-drawer__body::before {
    background: #fff0f1;
    color: #8e2530;
    content: attr(data-azb-update-error);
    display: block;
    font-size: 13px;
    margin-bottom: 10px;
    padding: 10px;
}

/* Full cart page: clear primary/secondary hierarchy without a new asset. */
.checkout-cart-index .main-container .btn-proceed-checkout.btn-checkout {
    background: #de2666 !important;
    border: 1px solid #de2666 !important;
    border-radius: 6px;
    color: #fff;
    min-height: 50px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    float: none;
    max-width: none;
    min-width: 0;
    padding-left: 22px;
    padding-right: 22px;
    width: 100%;
}

.checkout-cart-index .main-container .btn-proceed-checkout.btn-checkout > span,
.checkout-cart-index .main-container .btn-proceed-checkout.btn-checkout > span > span {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
}

.checkout-cart-index .main-container .checkout-types,
.checkout-cart-index .main-container .checkout-types > li {
    box-sizing: border-box;
    float: none;
    max-width: none;
    width: 100%;
}

.checkout-cart-index [data-azb-summary-cta="1"][data-azb-checkout-disabled="1"] {
    pointer-events: none;
}
html body.checkout-cart-index .main-container [data-azb-summary-cta="1"][data-azb-checkout-disabled="1"] button.btn-proceed-checkout.btn-checkout {
    background: #de2666 !important;
    border-color: #de2666 !important;
    color: #fff !important;
    cursor: not-allowed;
    filter: none !important;
    opacity: 1 !important;
}

/* Delivery estimate and loyalty belong to the totals frame, not to the CTA dock. */
.checkout-cart-index .cart .totals .totals-inner > .date-estimate-box {
    background: none;
    border: 0;
    border-bottom: 1px solid #e3dce0;
    border-top: 0;
    border-radius: 0;
    box-sizing: border-box;
    clear: both;
    margin: 0 0 12px;
    padding: 0 0 12px;
    width: 100%;
}

@media (max-width: 767px) {
    body.checkout-cart-index::after {
        clear: both;
        content: "";
        display: block;
        height: calc(92px + env(safe-area-inset-bottom));
    }

    body.checkout-cart-index [data-azb-summary-cta="1"],
    body.checkout-cart-index .totals:not(.hide-small) #msp-chec-cart-type {
        background: #fff;
        border-bottom: 0;
        bottom: 0;
        box-shadow: 0 -5px 18px rgba(28, 35, 39, .14);
        left: 0;
        box-sizing: border-box;
        margin: 0;
        min-height: calc(74px + env(safe-area-inset-bottom));
        padding: 12px 12px calc(12px + env(safe-area-inset-bottom));
        position: fixed;
        right: 0;
        top: auto;
        width: auto;
        z-index: 9998;
    }

    body.checkout-cart-index #msp-chec-cart-type > li {
        margin: 0;
        padding: 0;
    }

    body.checkout-cart-index .btn-proceed-checkout.btn-checkout,
    body.checkout-cart-index .btn-proceed-checkout.btn-checkout > span,
    body.checkout-cart-index .btn-proceed-checkout.btn-checkout > span > span {
        box-sizing: border-box;
        height: 50px !important;
        max-height: 50px;
        min-height: 50px;
    }

    body.checkout-cart-index .btn-proceed-checkout.btn-checkout {
        display: block;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    body.checkout-cart-index .btn-proceed-checkout.btn-checkout > span,
    body.checkout-cart-index .btn-proceed-checkout.btn-checkout > span > span {
        align-items: center;
        display: flex;
        justify-content: center;
        padding-bottom: 0;
        padding-top: 0;
    }

    body.checkout-cart-index iframe#launcher,
    body.checkout-cart-index .zEWidget-launcher,
    body.checkout-cart-index .zopim {
        bottom: calc(90px + env(safe-area-inset-bottom)) !important;
        z-index: 9997 !important;
    }

    .checkout-cart-index .cart .totals > .totals-inner > .azb-loyalty-cart,
    .checkout-cart-index .cart .totals .azb-loyalty-cart {
        margin: 14px 0 10px;
        position: static;
    }
}

.checkout-cart-index .main-container .btn-proceed-checkout.btn-checkout:hover,
.checkout-cart-index .main-container .btn-proceed-checkout.btn-checkout:focus {
    background: #c91d59 !important;
    border-color: #c91d59 !important;
    color: #fff !important;
}

.checkout-cart-index #discount-coupon-form button.button,
.checkout-cart-index .shipping button.button,
.checkout-cart-index #shipping-zip-form button.button {
    background: #fff !important;
    background-image: none !important;
    border: 1px solid #de2666 !important;
    border-radius: 6px;
    color: #de2666 !important;
    min-height: 44px;
}

.checkout-cart-index #discount-coupon-form button.button > span,
.checkout-cart-index #discount-coupon-form button.button > span > span,
.checkout-cart-index .shipping button.button > span,
.checkout-cart-index .shipping button.button > span > span,
.checkout-cart-index #shipping-zip-form button.button > span,
.checkout-cart-index #shipping-zip-form button.button > span > span {
    background: transparent !important;
    background-image: none !important;
    color: inherit !important;
}

.checkout-cart-index #discount-coupon-form button.button:hover,
.checkout-cart-index #discount-coupon-form button.button:focus,
.checkout-cart-index .shipping button.button:hover,
.checkout-cart-index .shipping button.button:focus,
.checkout-cart-index #shipping-zip-form button.button:hover,
.checkout-cart-index #shipping-zip-form button.button:focus {
    background: #fff1f6 !important;
    background-image: none !important;
    border-color: #c91d59 !important;
    color: #c91d59 !important;
}

/* Updating the estimate is a secondary action, identical to Get a Quote. */
.checkout-cart-index .shipping #co-shipping-method-form .buttons-set button.button,
.checkout-cart-index .shipping #co-shipping-method-form .buttons-set button.button:active {
    background: #fff;
    border: 1px solid #de2666;
    color: #de2666;
    transform: none;
}

.checkout-cart-index .shipping #co-shipping-method-form .buttons-set button.button:hover,
.checkout-cart-index .shipping #co-shipping-method-form .buttons-set button.button:focus,
.checkout-cart-index .shipping #co-shipping-method-form .buttons-set button.button:focus-visible {
    background: #fff1f6;
    border-color: #c91d59;
    color: #c91d59;
    transform: none;
}

/* Updating totals uses the same secondary action as opening the estimator. */
.checkout-cart-index .shipping #co-shipping-method-form button.button[name="do"],
.checkout-cart-index .shipping #co-shipping-method-form button.button[name="do"]:active {
    background: #fff !important;
    background-image: none !important;
    border-color: #de2666 !important;
    color: #de2666 !important;
}

.checkout-cart-index .shipping #co-shipping-method-form button.button[name="do"]:hover,
.checkout-cart-index .shipping #co-shipping-method-form button.button[name="do"]:focus,
.checkout-cart-index .shipping #co-shipping-method-form button.button[name="do"]:focus-visible {
    background: #fff1f6 !important;
    border-color: #c91d59 !important;
    color: #c91d59 !important;
}

/* Cart estimator: same compact radio-card language as PDP bundle options. */
.checkout-cart-index .shipping #co-shipping-method-form .sp-methods {
    background: transparent;
    margin: 16px 0 0;
    width: 100%;
}

.checkout-cart-index .shipping #co-shipping-method-form,
.checkout-cart-index .shipping #co-shipping-method-form .sp-methods dd,
.checkout-cart-index .shipping #co-shipping-method-form .sp-methods ul {
    background: transparent;
}

.checkout-cart-index .shipping #co-shipping-method-form .azb-shipping-group__title {
    clear: both;
    color: #4a4547;
    display: block;
    float: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    margin: 18px 0 8px;
    padding: 0;
    width: 100%;
}

.checkout-cart-index .shipping #co-shipping-method-form .azb-shipping-group__title:first-child {
    margin-top: 0;
}

.checkout-cart-index .shipping #co-shipping-method-form .sp-methods dd,
.checkout-cart-index .shipping #co-shipping-method-form .sp-methods ul {
    box-sizing: border-box;
    clear: both;
    float: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.checkout-cart-index .shipping #co-shipping-method-form .sp-methods ul {
    display: grid;
    gap: 8px;
}

.checkout-cart-index .shipping #co-shipping-method-form .azb-shipping-rate {
    background: transparent;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.checkout-cart-index .shipping #co-shipping-method-form .azb-shipping-rate > input.radio {
    height: 1px;
    left: 14px;
    margin: 0;
    opacity: 0;
    position: absolute;
    top: 50%;
    width: 1px;
    z-index: 1;
}

.checkout-cart-index .shipping #co-shipping-method-form .azb-shipping-rate > label {
    align-items: center;
    background: #fff;
    border: 1px solid #ded9dc;
    border-radius: 6px;
    box-sizing: border-box;
    color: #403b3d;
    cursor: pointer;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    line-height: 1.35;
    min-height: 50px;
    padding: 10px 14px;
    transition: border-color 140ms ease, background-color 140ms ease, box-shadow 140ms ease;
    width: 100%;
}

.checkout-cart-index .shipping #co-shipping-method-form .azb-shipping-rate > label::before {
    border: 1px solid #aeb5ba;
    border-radius: 50%;
    box-sizing: border-box;
    content: '';
    flex: 0 0 16px;
    height: 16px;
    width: 16px;
}

.checkout-cart-index .shipping #co-shipping-method-form .azb-shipping-rate > label:hover {
    border-color: #b8b2b5;
}

.checkout-cart-index .shipping #co-shipping-method-form .azb-shipping-rate > input.radio:focus-visible + label {
    box-shadow: 0 0 0 3px rgba(222, 38, 102, .2);
    outline: 0;
}

.checkout-cart-index .shipping #co-shipping-method-form .azb-shipping-rate > input.radio:checked + label {
    background: #fff5f8;
    border-color: #de2666;
    box-shadow: 0 1px 3px rgba(37, 34, 36, .10);
}

.checkout-cart-index .shipping #co-shipping-method-form .azb-shipping-rate > input.radio:checked + label::before {
    background: #de2666;
    border-color: #de2666;
    box-shadow: inset 0 0 0 3px #fff;
}

.checkout-cart-index .azb-shipping-rate__title {
    flex: 1 1 auto;
    min-width: 0;
    overflow-wrap: anywhere;
}

.checkout-cart-index .azb-shipping-rate__price {
    color: #252224;
    flex: 0 0 auto;
    font-weight: 700;
    margin-left: auto;
    text-align: right;
    white-space: nowrap;
}

.checkout-cart-index .azb-shipping-rate--free .azb-shipping-rate__price {
    color: #237a3b;
}

.checkout-cart-index .azb-shipping-rate__price small {
    display: block;
    font-size: 10px;
    font-weight: 400;
}

@media (prefers-reduced-motion: reduce) {
    .checkout-cart-index .shipping #co-shipping-method-form .azb-shipping-rate > label {
        transition: none;
    }
}

@media (min-width: 768px) {
    .checkout-cart-index .main.container {
        padding-bottom: 0;
    }

    .checkout-cart-index .footer-container2 .ecomi-block {
        padding-top: 8px;
    }
}

.azb-cart-local-error {
    align-self: center;
    margin: auto;
    text-align: center;
}
.azb-cart-local-error__retry {
    background: var(--azb-popover-accent);
    border: 1px solid var(--azb-popover-accent);
    border-radius: 6px;
    color: #fff;
    min-height: 44px;
    padding: 0 18px;
}

@media (max-width: 359px) {
    .azb-cart-drawer .azb-mini-item__grid { grid-template-columns: 60px minmax(0, 1fr); gap: 10px; }
    .azb-cart-drawer .azb-mini-item__image a,
    .azb-cart-drawer .azb-mini-item__image img { height: 60px; width: 60px; }
    .azb-cart-drawer .azb-mini-item__image a img { height: 50px; width: 50px; }
    .azb-cart-drawer .azb-mini-item__actions { gap: 2px; grid-template-columns: minmax(50px, 1fr) 112px 44px; }
    .azb-cart-drawer .azb-mini-item__qty { grid-template-columns: 43px 32px 43px; }
}

@media (prefers-reduced-motion: reduce) {
    .azb-cart-skeleton span,
    .azb-cart-skeleton::before { animation: none; }
}
/* Stable compact eKomi summary: same geometry before and after navigation. */
.header .item-left .ekomi-widget-container,
.header .item-left .ekomi-widget-container > .azb-ekomi-header-static,
.header .item-left .azb-ekomi-header-static__inner {
    box-sizing: border-box;
    height: 20px;
    width: 178px;
}
.header .item-left .azb-ekomi-header-static__inner {
    align-items: center;
    color: #212529;
    display: flex;
    font-family: Roboto, Arial, sans-serif;
    justify-content: flex-start;
    line-height: 20px;
    text-decoration: none;
    white-space: nowrap;
}
.header .item-left .azb-ekomi-header-static__inner .ekseal {
    display: block;
    flex: 0 0 20px;
    height: 20px;
    margin: -1px 0 0;
    width: 20px;
}
.header .item-left .azb-ekomi-header-static__inner .ekw-svg-stars {
    display: flex;
    flex: 0 0 85px;
    height: 17px;
    margin: 0 5px;
    overflow: hidden;
    position: relative;
    width: 85px;
}
.header .item-left .azb-ekomi-header-static__inner .ekw-svg-stars svg {
    fill: #ffc107;
    flex: 0 0 16px;
    height: 16px;
    margin: 0 .5px;
    width: 16px;
}
.header .item-left .azb-ekomi-header-static__inner .ekw-svg-stars-cover {
    background: #e3e5e5;
    height: 17px;
    mix-blend-mode: color;
    position: absolute;
    right: 0;
    top: 0;
}
.header .item-left .azb-ekomi-header-static__inner .total-reviews {
    color: #212529;
    display: block;
    flex: 0 0 auto;
    font-family: Roboto, Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
}

/* The cart template renders a legacy second checkout action below the
   collaterals. The AJAX-safe summary CTA is the canonical action. */
.checkout-cart-index .customorderplacebutton {
    display: none;
}

@media (min-width: 768px) {
    .checkout-cart-index .customorderplacebutton {
        display: block;
    }
}

.checkout-cart-index .shipping #co-shipping-method-form .azb-shipping-group__title {
    background: transparent;
    background-image: none;
    border: 0;
    box-shadow: none;
}

.checkout-cart-index .cart .cart-right-column {
    border: 0;
    box-shadow: none;
    outline: 0;
}

/* The legacy 102% cart-collaterals rule leaks by 8px only in the tablet
   interval. Keep the desktop/mobile grids untouched outside that range. */
@media (min-width: 768px) and (max-width: 959px) {
    .checkout-cart-index .cart-collaterals .cart-left-column.grid12-12 {
        box-sizing: border-box;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
}

#mini-cart > .dropdown-toggle {
        position: relative;
}

#mini-cart.is-empty > .dropdown-toggle .label.amount {
        display: none;
}

/* The icon sits at three intrinsic positions inside its existing header
   layouts. Keep the badge's visual offset from the icon equal to desktop,
   without waiting for the JS-owned compact mode. */
@media (max-width: 767px) {
    #mini-cart > .dropdown-toggle .label.amount { right: -1px; }
}
@media (min-width: 768px) and (max-width: 959px) {
    #mini-cart > .dropdown-toggle .label.amount { right: -15px; }
}

/* Reserve the badge's existing 15.5px visual offset inside the compact header.
   The margin participates in the flex item's width, so account and cart move as
   one group while the badge remains anchored to the unchanged cart icon. */
html[data-azb-header-mode="compact"] .header-primary .user-menu #mini-cart {
    margin-right: 16px !important;
}

/* One mobile quantity control geometry for the drawer and full cart. */
@media (max-width: 767px) {
    :root {
        --azb-cart-qty-border: #cdd1d5;
        --azb-cart-qty-height: 40px;
        --azb-cart-qty-input-width: 40px;
        --azb-cart-qty-side-width: 36px;
        --azb-cart-qty-width: 112px;
    }

    .azb-cart-drawer .azb-mini-item__qty,
    .checkout-cart-index .azb-cart-row-qty {
        align-items: center;
        border: 1px solid var(--azb-cart-qty-border);
        border-radius: 6px;
        box-sizing: border-box;
        display: grid;
        grid-template-columns: var(--azb-cart-qty-side-width) var(--azb-cart-qty-input-width) var(--azb-cart-qty-side-width);
        height: var(--azb-cart-qty-height);
        overflow: hidden;
        width: var(--azb-cart-qty-width);
    }

    .azb-cart-drawer .azb-mini-item__qty button,
    .azb-cart-drawer .azb-mini-item__qty input,
    .checkout-cart-index .azb-cart-row-qty button,
    .checkout-cart-index .azb-cart-row-qty input {
        background: #fff;
        border: 0;
        border-radius: 0;
        box-sizing: border-box;
        color: var(--azb-popover-text);
        align-items: center;
        display: inline-flex;
        font-size: 20px;
        font-weight: 600;
        height: calc(var(--azb-cart-qty-height) - 2px);
        margin: 0;
        padding: 0;
        justify-content: center;
        text-align: center;
        width: auto;
    }

    .azb-cart-drawer .azb-mini-item__qty input,
    .checkout-cart-index .azb-cart-row-qty input {
        border-left: 1px solid var(--azb-cart-qty-border);
        border-right: 1px solid var(--azb-cart-qty-border);
        font-size: 15px;
        min-width: 0;
    }

    .checkout-cart-index .azb-cart-row-controls {
        flex-basis: var(--azb-cart-qty-width);
    }
}

/* One quantity geometry everywhere: the proven desktop PDP control. */
.catalog-product-view .product-secondary-column .qty-layout,
.azb-cart-drawer .azb-mini-item__qty,
.checkout-cart-index .azb-cart-row-qty {
    border: 0 !important;
    border-radius: 0 !important;
    box-sizing: border-box !important;
    height: 40px !important;
    overflow: visible !important;
    width: 112px !important;
}

.catalog-product-view .product-secondary-column .qty-layout {
    display: flex !important;
}

.azb-cart-drawer .azb-mini-item__qty,
.checkout-cart-index .azb-cart-row-qty {
    display: grid !important;
    grid-template-columns: 36px 40px 36px !important;
}

.catalog-product-view .product-secondary-column .qty-layout .bouton-plus,
.catalog-product-view .product-secondary-column .qty-layout .bouton-moins,
.azb-cart-drawer .azb-mini-item__qty button,
.checkout-cart-index .azb-cart-row-qty button {
    background: #fff !important;
    border: 1px solid #cfd1d2 !important;
    box-sizing: border-box !important;
    color: #333 !important;
    flex: 0 0 36px !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    height: 40px !important;
    width: 36px !important;
}

.catalog-product-view .product-secondary-column .qty-layout input.qty,
.azb-cart-drawer .azb-mini-item__qty input,
.checkout-cart-index .azb-cart-row-qty input {
    background: #fff !important;
    border: solid #cfd1d2 !important;
    border-radius: 0 !important;
    border-width: 1px 0 !important;
    box-sizing: border-box !important;
    color: #000 !important;
    flex: 0 0 40px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    height: 40px !important;
    width: 40px !important;
}

.azb-cart-drawer .azb-mini-item__qty button:first-child,
.checkout-cart-index .azb-cart-row-qty button:first-child {
    border-radius: 6px 0 0 6px !important;
}

.azb-cart-drawer .azb-mini-item__qty button:last-child,
.checkout-cart-index .azb-cart-row-qty button:last-child {
    border-radius: 0 6px 6px 0 !important;
}

.azb-cart-drawer .azb-mini-item__remove,
.checkout-cart-index .azb-cart-row-remove {
    height: 40px !important;
    width: 40px !important;
}
/* Shared compact quantity refusal for cart and mini-cart. */
.azb-cart-line-error {
    align-items: flex-start;
    background: #fff2f2;
    border: 1px solid #c62828;
    border-radius: 4px;
    box-sizing: border-box;
    color: #b91c1c;
    display: flex;
    font-size: 12px;
    font-weight: 600;
    gap: 6px;
    line-height: 1.35;
    margin: 8px 0 0;
    padding: 7px 9px;
    width: 100%;
}

.azb-cart-line-error__icon {
    color: #c62828;
    flex: 0 0 auto;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

.azb-cart-drawer .azb-cart-line-error + .azb-mini-item__actions {
    margin-top: 4px;
}
