.ml-sidecart {
    position: fixed;
    inset: 0;
    z-index: 1200;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
    background: #fffaf0;
    transition: visibility 0s linear .32s;
}
.ml-sidecart[aria-hidden="false"] {
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
}
.ml-sidecart__overlay { display: none; }
.ml-sidecart__panel {
    position: absolute;
    inset: 0;
    display: flex;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    flex-direction: column;
    overflow: hidden;
    color: #42190f;
    background: #fffaf0;
    font-family: "Nunito Sans", sans-serif;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .24s ease, transform .32s cubic-bezier(.22,1,.36,1);
}
.ml-sidecart[aria-hidden="false"] .ml-sidecart__panel { opacity: 1; transform: translateY(0); }
.ml-sidecart-open { overflow: hidden; }

.ml-sidecart__header {
    position: sticky;
    top: 0;
    z-index: 6;
    display: flex;
    min-height: 76px;
    flex: 0 0 auto;
    align-items: center;
    gap: 14px;
    padding: 9px max(18px, calc((100vw - 900px) / 2));
    background: #ff9870;
    border-bottom: 1px solid rgba(66,25,15,.08);
}
.ml-sidecart__back {
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    padding: 0;
    place-items: center;
    color: #42190f;
    background: #fffaf0;
    border: 1px solid rgba(66,25,15,.08);
    border-radius: 50%;
    box-shadow: 0 5px 18px rgba(66,25,15,.08);
    cursor: pointer;
}
.ml-sidecart__back svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.ml-sidecart__back:hover { background: #fff4e3; }
.ml-sidecart__back:focus-visible,
.ml-sidecart-upsell__pagination button:focus-visible,
.ml-sidecart-item__remove:focus-visible { outline: 3px solid #42190f; outline-offset: 3px; }
.ml-sidecart__heading { min-width: 0; }
.ml-sidecart__heading p { margin: 0 0 3px; color: #42190f; font-size: 10px; font-weight: 900; letter-spacing: .28em; line-height: 1; text-transform: uppercase; }
.ml-sidecart__heading h2 { display: flex; align-items: center; gap: 8px; margin: 0; color: #42190f; font-family: "Nunito Sans", sans-serif; font-size: clamp(32px, 4vw, 44px); font-weight: 900; letter-spacing: -.055em; line-height: .95; }
.ml-sidecart__header .ml-cart-count {
    display: inline-grid;
    min-width: 28px;
    height: 28px;
    padding: 0 7px;
    place-items: center;
    color: #fffaf0;
    background: #a95308;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
}

.ml-sidecart__content { display: flex; flex: 1; min-height: 0; flex-direction: column; overflow: hidden; }
.ml-sidecart__scroll {
    display: flex;
    flex: 1 1 auto;
    min-height: 0;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    scrollbar-gutter: stable;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y pinch-zoom;
}
.ml-sidecart__shipping {
    flex: 0 0 auto;
    padding: 10px max(18px, calc((100vw - 900px) / 2)) 12px;
    background: #fae9b8;
    border-bottom: 1px solid #ead9c8;
}
.ml-sidecart__shipping-copy { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 6px; color: #42190f; }
.ml-sidecart__shipping-copy > strong { font-size: 15px; font-weight: 900; }
.ml-sidecart__shipping-copy > span { flex: 0 0 auto; padding: 6px 11px; color: #8b4507; background: rgba(255,250,240,.9); border-radius: 999px; font-size: 11px; font-weight: 900; white-space: nowrap; }
.ml-sidecart__progress { position: relative; display: block; width: calc(100% - 7px); height: 5px; background: rgba(255,250,240,.82); border-radius: 999px; }
.ml-sidecart__progress i { display: block; height: 100%; background: #ef7d58; border-radius: inherit; transition: width .4s ease; }
.ml-sidecart__checkpoint { position: absolute; top: 50%; right: -7px; width: 15px; height: 15px; background: #fffaf0; border: 3px solid #ef7d58; border-radius: 50%; box-shadow: 0 0 0 2px rgba(250,233,184,.95); transform: translateY(-50%); }
.ml-sidecart__progress.is-complete .ml-sidecart__checkpoint { background: #ef7d58; }

.ml-sidecart__items {
    display: grid;
    flex: 0 0 auto;
    width: min(100%, 900px);
    margin: 0 auto;
    gap: 18px;
    padding: 28px;
    background: #fffaf0;
}
.ml-sidecart-item {
    position: relative;
    display: grid;
    min-width: 0;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 26px;
    padding: 22px;
    background: rgba(255,253,249,.72);
    border: 1px solid #ead9c8;
    border-radius: 24px;
}
.ml-sidecart-item__image { display: block; align-self: start; aspect-ratio: 1; overflow: hidden; padding: 6px; background: #f6eee5; border-radius: 19px; }
.ml-sidecart-item__image img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center; }
.ml-sidecart-item__copy { position: relative; min-width: 0; padding-right: 54px; }
.ml-sidecart-item__eyebrow { margin: 3px 0 8px; color: #a95308; font-size: 10px; font-weight: 900; letter-spacing: .15em; line-height: 1.2; text-transform: uppercase; }
.ml-sidecart-item h3 { max-width: 630px; margin: 0 0 10px; color: #42190f; font-family: "Nunito Sans", sans-serif; font-size: 25px; font-weight: 900; letter-spacing: -.035em; line-height: 1.08; }
.ml-sidecart-item h3 a { color: inherit; text-decoration: none; }
.ml-sidecart-item__unit-price { display: block; margin: 0 0 18px; color: #7a6a61; font-size: 13px; }
.ml-sidecart-item__meta { display: flex; align-items: center; justify-content: space-between; gap: 18px; color: #655247; }
.ml-sidecart-item__meta strong { color: #42190f; font-size: 21px; font-weight: 900; white-space: nowrap; }
.ml-sidecart-quantity { display: inline-grid; overflow: hidden; grid-template-columns: 44px 46px 44px; min-height: 44px; align-items: center; color: #42190f; background: #fffaf0; border: 1px solid #e5d5c6; border-radius: 14px; }
.ml-sidecart-quantity button { display: grid; width: 44px; height: 44px; padding: 0; place-items: center; color: #42190f; background: transparent; border: 0; font-size: 22px; font-weight: 900; cursor: pointer; }
.ml-sidecart-quantity button:hover:not(:disabled) { background: #ffe89d; }
.ml-sidecart-quantity button:disabled { opacity: .32; cursor: default; }
.ml-sidecart-quantity span { display: grid; height: 100%; place-items: center; border-right: 1px solid #ead9c8; border-left: 1px solid #ead9c8; font-size: 14px; font-weight: 900; }
.ml-sidecart-quantity.is-loading { opacity: .55; pointer-events: none; }
.ml-sidecart-item__remove {
    position: absolute;
    top: 0;
    right: 0;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: #42190f;
    background: #fffaf0;
    border: 1px solid #ead9c8;
    border-radius: 50%;
}
.ml-sidecart-item__remove:hover { color: #fffaf0; background: #a95308; }
.ml-sidecart-item__remove svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }

.ml-sidecart-upsell {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    width: min(calc(100% - 56px), 844px);
    margin: auto auto 28px;
    padding: 20px;
    overflow: hidden;
    background: linear-gradient(110deg, #f5f6dc, #edf1d0);
    border: 1px solid #c7c99b;
    border-radius: 24px;
}
.ml-sidecart-upsell__header { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 15px; }
.ml-sidecart-upsell__header h3 { margin: 0; color: #42190f; font-size: 21px; font-weight: 900; letter-spacing: -.025em; line-height: 1.1; }
.ml-sidecart-upsell__header > a { display: inline-flex; min-height: 44px; align-items: center; gap: 7px; color: #56612f; font-size: 14px; font-weight: 800; text-underline-offset: 4px; white-space: nowrap; }
.ml-sidecart-upsell__header > a span { font-size: 24px; text-decoration: none; }
.ml-sidecart-upsell__viewport { width: 100%; min-height: 0; flex: 0 0 auto; overflow-x: auto; overflow-y: hidden; scrollbar-width: none; scroll-behavior: smooth; scroll-snap-type: x mandatory; touch-action: pan-y pinch-zoom; }
.ml-sidecart-upsell__viewport::-webkit-scrollbar { display: none; }
.ml-sidecart-upsell__track { display: grid; width: 100%; grid-auto-columns: calc((100% - 14px) / 2); grid-auto-flow: column; gap: 14px; }
.ml-sidecart-upsell__card {
    display: grid;
    height: auto;
    min-width: 0;
    min-height: 138px;
    grid-template-columns: 122px minmax(0, 1fr) 50px;
    align-items: center;
    align-content: center;
    gap: 16px;
    padding: 12px;
    background: #fffdf9;
    border: 1px solid rgba(66,25,15,.12);
    border-radius: 18px;
    scroll-snap-align: start;
}
.ml-sidecart-upsell__image { display: grid; width: 100%; aspect-ratio: 1; grid-row: 1 / span 3; align-self: center; overflow: hidden; place-items: center; padding: 5px; background: #f7efe5; border-radius: 14px; }
.ml-sidecart-upsell__image img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center; }
.ml-sidecart-upsell__body { display: contents; }
.ml-sidecart-upsell__body > p { grid-column: 2; align-self: end; margin: 0 0 3px; color: #a95308; overflow: hidden; font-size: 9px; font-weight: 900; letter-spacing: .13em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.ml-sidecart-upsell__body h4 { grid-column: 2; align-self: center; display: -webkit-box; overflow: hidden; margin: 0; color: #42190f; font-size: 17px; font-weight: 900; line-height: 1.12; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.ml-sidecart-upsell__body h4 a { color: inherit; text-decoration: none; }
.ml-sidecart-upsell__buy { display: contents; }
.ml-sidecart-upsell__buy strong { grid-column: 2; align-self: start; color: #42190f; font-size: 16px; font-weight: 900; }
.ml-sidecart-upsell__buy del { display: none; }
.ml-sidecart-upsell__action { display: grid; width: 48px; height: 48px; grid-column: 3; grid-row: 1 / span 3; place-items: center; color: #42190f; background: #fffaf0; border: 1px solid #d8d6ae; border-radius: 50%; font-size: 26px; font-weight: 800; text-decoration: none; }
.ml-sidecart-upsell__action:hover { color: #fffaf0; background: #738044; }
.ml-sidecart-upsell__action.loading { opacity: .55; pointer-events: none; }
.ml-sidecart-upsell__action.added { color: #fffaf0; background: #738044; }
.ml-sidecart-upsell__action.added span:last-child { font-size: 0; }
.ml-sidecart-upsell__action.added span:last-child::after { content: "✓"; font-size: 20px; }
.ml-sidecart-upsell__pagination { display: flex; min-height: 34px; align-items: center; justify-content: center; gap: 0; }
.ml-sidecart-upsell__pagination button { display: grid; width: 32px; height: 32px; padding: 0; place-items: center; background: transparent; border: 0; border-radius: 50%; cursor: pointer; }
.ml-sidecart-upsell__pagination button::before { width: 9px; height: 9px; content: ""; background: #cfd2a8; border-radius: 50%; }
.ml-sidecart-upsell__pagination button[aria-current="true"]::before { background: #737a39; transform: scale(1.2); }

.ml-sidecart__summary {
    display: grid;
    flex: 0 0 auto;
    grid-template-columns: auto minmax(240px, 1fr);
    grid-template-areas: "price checkout" ". secure";
    align-items: center;
    gap: 5px 34px;
    padding: 18px max(28px, calc((100vw - 900px) / 2)) max(18px, env(safe-area-inset-bottom));
    background: #fff2dc;
    border-top: 1px solid #e3d7cc;
    box-shadow: 0 -10px 32px rgba(66,25,15,.08);
}
.ml-sidecart__summary-price { display: flex; min-width: 150px; grid-area: price; flex-direction: column; color: #42190f; }
.ml-sidecart__summary-price span { font-size: 17px; }
.ml-sidecart__summary-price strong { margin-top: 1px; font-size: 30px; font-weight: 900; line-height: 1.15; }
.ml-sidecart__summary-price strong .woocommerce-Price-amount,
.ml-sidecart__summary-price strong .woocommerce-Price-amount bdi {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}
.ml-sidecart__checkout { display: flex !important; width: 100%; min-height: 62px; grid-area: checkout; align-items: center; justify-content: space-between; gap: 14px; margin: 0 !important; padding: 12px 24px !important; color: #fffaf0 !important; background: #b95c00 !important; border-radius: 18px !important; font-family: "Nunito Sans", sans-serif; font-size: 18px; font-weight: 900; line-height: 1.15; text-align: center; }
.ml-sidecart__checkout span:first-child { flex: 1; }
.ml-sidecart__checkout span:last-child { flex: 0 0 auto; font-size: 32px; font-weight: 400; line-height: 1; }
.ml-sidecart__checkout:hover { background: #8f4700 !important; }
.ml-sidecart__secure { grid-area: secure; margin: 2px 0 0; color: #7a6a61; font-size: 12px; text-align: center; }
.ml-sidecart__secure svg { width: 14px; height: 14px; margin-right: 4px; fill: none; stroke: #748044; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; vertical-align: -2px; }

.ml-sidecart__empty { display: flex; flex: 1; align-items: center; justify-content: center; flex-direction: column; padding: 45px 24px max(45px, env(safe-area-inset-bottom)); text-align: center; }
.ml-sidecart__empty > span { color: #ef7d58; font-size: 48px; }
.ml-sidecart__empty h3 { margin: 13px 0 8px; color: #42190f; font-family: "Nunito Sans", sans-serif; font-size: 38px; font-weight: 900; letter-spacing: -.04em; }
.ml-sidecart__empty p { max-width: 360px; margin: 0 0 25px; color: #75645a; font-size: 14px; line-height: 1.55; }
.ml-sidecart__empty .button { min-width: 230px; min-height: 52px; padding: 15px 24px; color: #fffaf0; background: #a95308; border-radius: 14px; font-weight: 900; }

@media (max-width: 640px) {
    .ml-sidecart__header { min-height: 64px; gap: 10px; padding: max(7px, env(safe-area-inset-top)) 14px 7px; }
    .ml-sidecart__back { width: 44px; height: 44px; flex-basis: 44px; }
    .ml-sidecart__back svg { width: 22px; height: 22px; }
    .ml-sidecart__heading p { margin-bottom: 2px; font-size: 7px; letter-spacing: .24em; }
    .ml-sidecart__heading h2 { gap: 6px; font-size: 27px; }
    .ml-sidecart__header .ml-cart-count { min-width: 24px; height: 24px; padding: 0 6px; font-size: 10px; }
    .ml-sidecart__shipping { padding: 8px 14px 10px; }
    .ml-sidecart__shipping-copy { gap: 7px; margin-bottom: 5px; }
    .ml-sidecart__shipping-copy > strong { font-size: 12px; }
    .ml-sidecart__shipping-copy > span { padding: 4px 8px; font-size: 8px; }
    .ml-sidecart__progress { height: 4px; }
    .ml-sidecart__checkpoint { width: 13px; height: 13px; border-width: 3px; }
    .ml-sidecart__items { gap: 12px; padding: 16px 14px; }
    .ml-sidecart-item { grid-template-columns: 112px minmax(0, 1fr); gap: 14px; padding: 12px; border-radius: 18px; }
    .ml-sidecart-item__image { padding: 4px; border-radius: 14px; }
    .ml-sidecart-item__copy { padding-right: 39px; }
    .ml-sidecart-item__eyebrow { margin: 2px 0 5px; font-size: 7px; }
    .ml-sidecart-item h3 { display: -webkit-box; overflow: hidden; margin-bottom: 5px; font-size: 16px; line-height: 1.1; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
    .ml-sidecart-item__unit-price { margin-bottom: 10px; font-size: 10px; }
    .ml-sidecart-item__meta { align-items: flex-end; gap: 6px; }
    .ml-sidecart-item__meta strong { font-size: 15px; }
    .ml-sidecart-quantity { grid-template-columns: 38px 40px 38px; min-height: 40px; border-radius: 12px; }
    .ml-sidecart-quantity button { width: 38px; height: 40px; font-size: 19px; }
    .ml-sidecart-quantity span { font-size: 12px; }
    .ml-sidecart-item__remove { width: 38px; height: 38px; }
    .ml-sidecart-item__remove svg { width: 18px; height: 18px; }
    .ml-sidecart-upsell { width: calc(100% - 28px); margin-bottom: 16px; padding: 15px; border-radius: 18px; }
    .ml-sidecart-upsell__header { margin-bottom: 10px; }
    .ml-sidecart-upsell__header h3 { font-size: 18px; }
    .ml-sidecart-upsell__header > a { min-height: 40px; font-size: 12px; }
    .ml-sidecart-upsell__track { grid-auto-columns: 100%; gap: 10px; }
    .ml-sidecart-upsell__card { min-height: 112px; grid-template-columns: 94px minmax(0, 1fr) 46px; gap: 11px; padding: 9px; border-radius: 15px; }
    .ml-sidecart-upsell__image { padding: 4px; border-radius: 11px; }
    .ml-sidecart-upsell__body > p { font-size: 7px; }
    .ml-sidecart-upsell__body h4 { font-size: 14px; }
    .ml-sidecart-upsell__buy strong { font-size: 14px; }
    .ml-sidecart-upsell__action { width: 44px; height: 44px; font-size: 23px; }
    .ml-sidecart-upsell__pagination { min-height: 28px; }
    .ml-sidecart-upsell__pagination button { width: 28px; height: 28px; }
    .ml-sidecart__summary { grid-template-columns: 88px minmax(0, 1fr); gap: 4px 12px; padding: 12px 14px max(11px, env(safe-area-inset-bottom)); }
    .ml-sidecart__summary-price { min-width: 0; }
    .ml-sidecart__summary-price span { font-size: 13px; }
    .ml-sidecart__summary-price strong { font-size: 26px; }
    .ml-sidecart__checkout { min-height: 56px; padding: 10px 13px !important; border-radius: 16px !important; font-size: 14px; }
    .ml-sidecart__checkout span:last-child { font-size: 27px; }
    .ml-sidecart__secure { font-size: 10px; }
}

@media (max-width: 370px) {
    .ml-sidecart__header { min-height: 86px; }
    .ml-sidecart__heading h2 { font-size: 31px; }
    .ml-sidecart__shipping-copy > strong { font-size: 12px; }
    .ml-sidecart__shipping-copy > span { font-size: 9px; }
    .ml-sidecart-item { grid-template-columns: 96px minmax(0, 1fr); gap: 11px; }
    .ml-sidecart-item__meta { align-items: flex-start; flex-direction: column; }
    .ml-sidecart-quantity { grid-template-columns: 36px 38px 36px; }
    .ml-sidecart-quantity button { width: 36px; }
    .ml-sidecart-upsell__card { grid-template-columns: 82px minmax(0, 1fr) 44px; gap: 8px; }
    .ml-sidecart__summary { grid-template-columns: 78px minmax(0, 1fr); gap: 4px 9px; }
    .ml-sidecart__checkout { gap: 5px; padding-right: 8px !important; padding-left: 8px !important; font-size: 11.5px; }
    .ml-sidecart__checkout span:first-child { white-space: nowrap; }
}

@media (max-height: 650px) and (max-width: 640px) {
    .ml-sidecart__header { min-height: 64px; padding-top: max(6px, env(safe-area-inset-top)); padding-bottom: 6px; }
    .ml-sidecart__back { width: 44px; height: 44px; flex-basis: 44px; }
    .ml-sidecart__heading h2 { font-size: 30px; }
    .ml-sidecart__shipping { padding-top: 11px; padding-bottom: 12px; }
    .ml-sidecart__shipping-copy { margin-bottom: 9px; }
    .ml-sidecart__summary { padding-top: 8px; }
    .ml-sidecart__checkout { min-height: 48px; }
    .ml-sidecart__secure { display: none; }
}

@media (min-width: 761px) {
    .ml-sidecart { background: rgba(37, 24, 20, .48); }
    .ml-sidecart__overlay {
        position: absolute;
        inset: 0;
        display: block;
        background: transparent;
        opacity: 0;
        transition: opacity .24s ease;
    }
    .ml-sidecart[aria-hidden="false"] .ml-sidecart__overlay { opacity: 1; }
    .ml-sidecart__panel {
        inset: 0 0 0 auto;
        width: min(620px, 100vw);
        box-shadow: -18px 0 52px rgba(42, 24, 17, .2);
        transform: translateX(100%);
    }
    .ml-sidecart[aria-hidden="false"] .ml-sidecart__panel { transform: translateX(0); }
    .ml-sidecart__header { min-height: 70px; gap: 12px; padding: 9px 18px; }
    .ml-sidecart__back { width: 44px; height: 44px; flex-basis: 44px; }
    .ml-sidecart__heading h2 { font-size: 31px; }
    .ml-sidecart__shipping { padding: 9px 18px 11px; }
    .ml-sidecart__shipping-copy { margin-bottom: 6px; }
    .ml-sidecart__items { width: 100%; gap: 12px; padding: 14px 18px; }
    .ml-sidecart-item { grid-template-columns: 104px minmax(0, 1fr); gap: 14px; padding: 12px; border-radius: 18px; }
    .ml-sidecart-item h3 { font-size: 18px; }
    .ml-sidecart-item__unit-price { margin-bottom: 9px; }
    .ml-sidecart-upsell { width: calc(100% - 36px); margin-bottom: 14px; padding: 14px; border-radius: 19px; }
    .ml-sidecart-upsell__header { margin-bottom: 8px; }
    .ml-sidecart-upsell__header > a { min-height: 32px; }
    .ml-sidecart-upsell__card { min-height: 110px; grid-template-columns: 72px minmax(0, 1fr) 38px; gap: 7px; padding: 8px; }
    .ml-sidecart-upsell__body h4 { display: block; overflow: visible; font-size: 14px; line-height: 1.12; -webkit-line-clamp: unset; }
    .ml-sidecart-upsell__buy strong { font-size: 14px; }
    .ml-sidecart-upsell__action { width: 38px; height: 38px; font-size: 21px; }
    .ml-sidecart-upsell__pagination { min-height: 24px; }
    .ml-sidecart-upsell__pagination button { width: 24px; height: 24px; }
    .ml-sidecart__summary { grid-template-columns: 108px minmax(0, 1fr); gap: 4px 16px; padding: 14px 20px max(14px, env(safe-area-inset-bottom)); }
    .ml-sidecart__summary-price { min-width: 0; }
    .ml-sidecart__summary-price span { font-size: 14px; }
    .ml-sidecart__summary-price strong { font-size: 28px; }
    .ml-sidecart__checkout { min-height: 54px; padding: 10px 17px !important; font-size: 15px; }
    .ml-sidecart__secure { font-size: 10px; }
}

@media (max-width: 760px) {
    .ml-sidecart { background: #fffaf0; }
    .ml-sidecart__overlay { display: none; }
    .ml-sidecart__panel { width: 100vw; box-shadow: none; }
}

.ca-product-card__add.loading,
.sun-product-card__action.loading,
.ml-sidecart-upsell__action.loading { position: relative; overflow: hidden; pointer-events: none; }
.ca-product-card__add.loading > span,
.sun-product-card__action.loading > span,
.ml-sidecart-upsell__action.loading > span { opacity: .18; }
.ca-product-card__add.loading::after,
.sun-product-card__action.loading::after,
.ml-sidecart-upsell__action.loading::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 17px;
    height: 17px;
    margin: -10px 0 0 -10px;
    content: "";
    border: 3px solid rgba(255,250,240,.4);
    border-top-color: #fffaf0;
    border-radius: 50%;
    animation: ml-cart-button-spin .65s linear infinite;
}
.ml-sidecart--updated .ml-sidecart__shipping { animation: ml-cart-fade-up .38s .05s both; }
.ml-sidecart--updated .ml-sidecart-item { animation: ml-cart-fade-up .42s .08s both; }
.ml-sidecart--updated .ml-sidecart-upsell { animation: ml-cart-fade-up .42s .12s both; }
.ml-sidecart--updated .ml-sidecart__summary { animation: ml-cart-fade-up .38s .15s both; }
.ml-sidecart--updated .ml-cart-count { animation: ml-cart-count-pop .5s .12s both; }
@keyframes ml-cart-button-spin { to { transform: rotate(360deg); } }
@keyframes ml-cart-fade-up { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ml-cart-count-pop { 0% { transform: scale(.72); } 58% { transform: scale(1.16); } 100% { transform: scale(1); } }

@media (prefers-reduced-motion: reduce) {
    .ml-sidecart__panel,
    .ml-sidecart__progress i { transition: none; }
    .ca-product-card__add.loading::after,
    .sun-product-card__action.loading::after,
    .ml-sidecart-upsell__action.loading::after,
    .ml-sidecart--updated .ml-sidecart__shipping,
    .ml-sidecart--updated .ml-sidecart-item,
    .ml-sidecart--updated .ml-sidecart-upsell,
    .ml-sidecart--updated .ml-sidecart__summary,
    .ml-sidecart--updated .ml-cart-count { animation: none; }
}
