/*
 * Checkout typography.
 * Edit this one value to change the checkout font everywhere.
 */
:root {
    --mwx-ec-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    /* Default main color – overridden per-site by the inline style injected from PHP */
    --mwx-ec-main-color: #ffc502;
}

html[lang^="ar"] {
    --mwx-ec-font-family: "Noto Sans Arabic", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

html,
body.mwx-ec-page {
    margin: 0;
    padding: 0;
    background: transparent;
    font-family: var(--mwx-ec-font-family);
    color: #111827;
}

body.mwx-ec-page,
body.mwx-ec-page h1,
body.mwx-ec-page h2,
body.mwx-ec-page h3,
body.mwx-ec-page h4,
body.mwx-ec-page h5,
body.mwx-ec-page h6,
body.mwx-ec-page p,
body.mwx-ec-page a,
body.mwx-ec-page span,
body.mwx-ec-page label,
body.mwx-ec-page button,
body.mwx-ec-page input,
body.mwx-ec-page textarea,
body.mwx-ec-page select,
body.mwx-ec-page option,
body.mwx-ec-page .select2-container,
body.mwx-ec-page .select2-dropdown {
    font-family: var(--mwx-ec-font-family);
}

body.mwx-ec-page input::placeholder,
body.mwx-ec-page textarea::placeholder {
    font-family: var(--mwx-ec-font-family);
}

body.mwx-ec-page .site,
body.mwx-ec-page #page,
body.mwx-ec-page .wrapper,
body.mwx-ec-page .site-content,
body.mwx-ec-page header,
body.mwx-ec-page footer {
    margin: 0 !important;
    padding: 0 !important;
}

body.mwx-ec-page header,
body.mwx-ec-page footer,
body.mwx-ec-page .site-header,
body.mwx-ec-page .site-footer,
body.mwx-ec-page #masthead,
body.mwx-ec-page #colophon {
    display: none !important;
}

#mwx-ec-app {
    min-height: 100vh;
    height: 100%;
    display: flex;
    justify-content: center;
    position: relative;
}

#mwx-ec-app:after {
    content: "";
    /* width: 50%; */
    position: absolute;
    background: #000;
    z-index: -1;
    width: 50%;
    height: 100%;
    top: 0;
    inset-inline-start: 0;
}

.mwx-ec-shell {
    min-height: calc(100dvh - 48px);
    display: flex;
    max-width: 920px;
    width: 100%;
    justify-content: space-between;
    align-content: flex-start;
    align-items: flex-start;
    padding-top: 48px;
}

.mwx-ec-summary {
    /* background: #0b0b0f; */
    color: #fff;
    max-width: 380px;
    width: 100%;
    position: sticky;
    top: 48px;
}

.mwx-ec-brand {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    color: rgb(255 255 255 / 90%);
    gap: 8px;
}

.mwx-ec-subtitle {
    font-size: 16px;
    font-weight: 500;
    /* margin-bottom: 10px; */
    color: rgb(255 255 255 / 65%);
    line-height: 1.3;
}

.mwx-ec-total {
    font-size: 36px;
    font-weight: 600 !important;
    margin-bottom: 4px;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.03rem;
    color: #fff;
    line-height: 1.3;
}

.mwx-ec-total *{
    font-size: inherit !important;
    font-weight: inherit !important;
}


.mwx-ec-items {
    display: grid;
    gap: 16px;
    margin-top: 44px;
}

.mwx-ec-item {
    display: grid;
    grid-template-columns: 74px 1fr auto;
    gap: 16px;
    align-items: start;
    padding: 0;
    /* border-top: 1px solid rgba(255,255,255,.1); */
}

.mwx-ec-item-media {
    display: flex;
}

.mwx-ec-item-media img {
    width: 74px;
    height: 74px;
    object-fit: cover;
    border-radius: 12px;
}

.mwx-ec-item-content h3 {
    margin: 0 0 6px;
    font-size: 15px;
    color: #fff;
}

.mwx-ec-item-price,
.mwx-ec-item-total,
.mwx-ec-line {
    font-size: 14px;
    color: rgba(255,255,255,.84);
}

.mwx-ec-item-total {
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

.mwx-ec-qty-row {
    display: flex;
    align-items: center;
    /* gap: 8px; */
    margin-top: 6px;
    flex-wrap: wrap;
}

.mwx-ec-qty-btn {
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    /* border-radius: 10px; */
    /* min-height: 34px; */
    cursor: pointer;
    padding: 0;
    width: 25px;
    height: 25px;
}

button.mwx-ec-remove-btn {
    color: #e91e39;
    background: transparent;
    border: 0;
    padding: 0;
    margin-inline-start: 14px;
    cursor: pointer;
}

.mwx-ec-qty-input {
    width: 35px;
    height: 25px;
    text-align: center;
    /* border-radius: 10px; */
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    border-right: 0;
    border-left: 0;
    background: rgba(255, 255, 255, .06);
    color: #ffffff;
    padding: 0;
    /* line-height: 20px; */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    appearance: none;
    font-size: 12px;
}

button.mwx-ec-qty-btn.mwx-ec-qty-btn-minus {
    border-start-start-radius: 5px;
    border-end-start-radius: 5px;
}

button.mwx-ec-qty-btn.mwx-ec-qty-btn-plus {
    border-start-end-radius: 5px;
    border-end-end-radius: 5px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.mwx-ec-summary-box {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.1);
}

.mwx-ec-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 16px;
}

.mwx-ec-line-total {
    color: #fff;
    font-weight: 700;
    /* padding-top: 12px; */
}

a.woocommerce-remove-coupon {
    display: none;
}

#mwx-ec-coupon-form {
    display: block;
    margin-bottom: 16px;
    position: relative;
}

#mwx-ec-coupon-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
}

#mwx-ec-coupon-form .mwx-ec-coupon-row {
    display: flex;
    position: relative;
    /* grid-template-columns: 1fr auto;
    gap: 10px; */
}

.mwx-ec-coupon-notice {
    font-size: 14px;
    line-height: 2;
}

#mwx-ec-coupon-form input {
    background-color: hsl(0deg 0% 100% / 10%);
    color: #fff;
    transition: background 0.2s ease, width 0.2s ease;
    cursor: pointer;
    line-height: 1.3;
    border: none;
    box-shadow: none;
    padding: 8px 12px;
    font-size: 14px;
    height: 36px;
    border-radius: 6px;
    box-sizing: border-box;
    width: 156px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: var(--mwx-ec-font-family);
}

html[lang^="ar"] #mwx-ec-coupon-form input{
    width: 130px;
}

#mwx-ec-coupon-form input::placeholder {
    color: #fff;
    font-weight: 500;
    font-family: var(--mwx-ec-font-family);
}

#mwx-ec-coupon-form input:hover {
    background-color: hsla(0, 0%, 100%, 0.457);
}
#mwx-ec-coupon-form input:focus {
    box-shadow: 0 1px 1px 0 rgba(255,255,255,0.07),0 0 0 4px rgba(255,255,255,0.3);
}

#mwx-ec-coupon-form input:focus-visible {
    outline: none;
}

html[lang^="ar"] #mwx-ec-coupon-form.coupon-form-active input, #mwx-ec-coupon-form.coupon-form-active input, #mwx-ec-coupon-form.coupon-form-active input:hover {
    width: 100%;
    background-color: #fff;
    color: #000000;
    cursor: text;
}


#mwx-ec-coupon-form button {
    border: 0;
    /* background: #facc15; */
    color: #000;
    font-weight: 500;
    /* padding: 0 18px; */
    font-size: 14px;
    line-height: 1.15;
    font-family: var(--mwx-ec-font-family);
    background: transparent;
    border: none;
    bottom: 0;
    opacity: 0;
    pointer-events: none;
    top: 0;
    position: absolute;
    inset-inline-end: 12px;
    -webkit-transform: scale(.8);
    -ms-transform: scale(.8);
    transform: scale(.8);
    transition: opacity .3s ease, -webkit-transform .3s ease;
    transition: opacity .3s ease, transform .3s ease;
    transition: opacity .3s ease, transform .3s ease, -webkit-transform .3s ease;
    z-index: 100;
}

#mwx-ec-coupon-form.coupon-form-active button.coupon-button-active {
    cursor: pointer;
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}


.mwx-btn-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    border-top-color: #000000; /* لون الـ Spinner، ممكن تغيره حسب لون الزرار */
    animation: mwx-spin 0.8s linear infinite;
    vertical-align: middle;
}


@keyframes mwx-fade-in {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* لو الزرار واخد disabled نخليه شفاف شوية عشان المستخدم يحس إنه بيحمل */
#coupon_code_btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}


.mwx-ec-checkout {
    background: #fff;
    z-index: 2;
    max-width: 380px;
    width: 100%;
    padding-bottom: 50px;
}



.mwx-ec-checkout-block-title {
    color: hsla(0, 0%, 10%, 0.9);
    font-weight: 500;
    font-size: 16px;
    margin: 0 0 16px 0;
}

.payment-method-block-title{
    margin-top: 24px;
}

.mwx-ec-top-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #10b981;
    color: #fff;
    border-radius: 12px;
    min-height: 46px;
    padding: 0 18px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 22px;
}

.mwx-ec-form-grid {
    display: grid;
    /* gap: 18px; */
}
.woocommerce-page form .form-row {
    margin: 0;
}

/* .mwx-ec-card,
.mwx-ec-success-card {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 18px;
    background: #fff;
} */

.mwx-ec-card h2 {
    margin: 0 0 14px;
    font-size: 16px;
    font-weight: 700;
}

.mwx-ec-card-full {
    grid-column: 1 / -1;
}

.woocommerce form .form-row {
    padding: 0;
    margin: 0 0 12px;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single {
    margin: 0;
    background: white;
    border: 0;
    box-shadow: 0 0 0 1px #e0e0e0, 0 2px 4px 0 rgba(0, 0, 0, 0.07), 0 1px 1.5px 0 rgba(0, 0, 0, 0.05);
    color: hsla(0, 0%, 10%, 0.9);
    line-height: 20px;
    padding: 8px 12px;
    position: relative;
    transition: box-shadow 0.08s ease-in, color 0.08s ease-in, filter 50000s;
    width: 100%;
    font-size: 14px;
    height: 36px;
    border-radius: 0;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    padding: 10px 14px !important;
}


.woocommerce-page form .form-row input.input-text, 
.woocommerce-page form .form-row select, 
.woocommerce-page form .form-row textarea.input-text, 
.iti__search-input, 
.woocommerce-page .select2-container .select2-search--dropdown .select2-search__field{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: white;
    border: 0;
    box-shadow: 0 0 0 1px #e0e0e0, 0 2px 4px 0 rgba(0, 0, 0, 0.07), 0 1px 1.5px 0 rgba(0, 0, 0, 0.05);
    color: hsla(0, 0%, 10%, 0.9);
    line-height: 1.5;
    padding: 8px 12px;
    position: relative;
    transition: box-shadow 0.08s ease-in, color 0.08s ease-in, filter 50000s;
    width: 100%;
    font-size: 14px;
    height: 36px;
    box-sizing: border-box  ;
}

.woocommerce-page .select2-container .select2-search--dropdown {
    padding: 0 0 .5rem;
    margin: 0 -1px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: inherit;
    line-height: inherit;
    /* margin: 0 !important; */
    padding: 0 !important;
    font-weight: 400;
}

.mwx-ec-form-name {
    display: flex;
    flex-wrap: nowrap;
}

.mwx-ec-form-name .form-row {
    float: none !important;
    width: 100% !important;
}

.mwx-ec-form-name input#billing_first_name{
    border-start-start-radius: 6px;
}

.mwx-ec-form-name .mwx-ec-form-name-alone input#billing_first_name{
    border-start-end-radius: 6px;
}

.mwx-ec-form-name input#billing_last_name{
    border-start-end-radius: 6px;
}

.mwx-ec-form-name .mwx-ec-form-name-alone input#billing_last_name{
    border-start-start-radius: 6px;
}

.mwx-ec-form-last input.input-text, .mwx-ec-form-last select, .mwx-ec-form-last textarea.input-text {
    border-end-end-radius: 6px;
    border-end-start-radius: 6px;
    margin-bottom: 28px;
}

textarea#order_comments {
    border-radius: 6px;
    min-height: 80px;
    max-height: 80px;
    max-width: 380px;
    min-width: 100%;
}

/* .woocommerce-page form .form-row input.input-text:focus, 
.woocommerce-page form .form-row select:focus, 
.woocommerce-page form .form-row textarea.input-text:focus */
/* input#billing_first_name:focus, input#billing_first_name:focus-visible, input#billing_first_name:active  */
.woocommerce-page form .form-row input.input-text:focus, 
.woocommerce-page form .form-row select:focus, 
.woocommerce-page form .form-row textarea.input-text:focus,
.iti__search-input:focus, .iti__search-input:focus-visible, 
.woocommerce-page .select2-container .select2-search--dropdown .select2-search__field:focus{
    z-index: 1;
    outline: 0;
    box-shadow: 0 0 0 1px rgba(50, 151, 211, 0.7), 0 1px 1px 0 rgba(0, 0, 0, 0.07), 0 0 0 4px rgba(50, 151, 211, 0.5);
}

.iti {
    font-size: 14px;
}

.woocommerce-page form .form-row .select2-container .select2-selection--single .select2-selection__arrow {
    height: 100%;
    top: 0;
    inset-inline-end: 5px;
}

.select2-dropdown {
    border: 1px solid #00000010;
}


/* Start Intl-Tel-Input Plugin CSS */
.iti {
    display: block !important;
}
.iti__selected-country{
    z-index: 2 !important;
 }
/* End Intl-Tel-Input Plugin CSS */

.mwx-ec-checkout-payment {
    border-radius: 0px !important;
    background: #d0010100 !important;
    /* overflow: hidden; */
}

.mwx-ec-checkout-payment ul.payment_methods {
    border-bottom: none !important;
    padding: 0 !important;
}

#add_payment_method #payment ul.payment_methods li, 
.woocommerce-cart #payment ul.payment_methods li, 
.woocommerce-checkout #payment ul.payment_methods li {
    line-height: 1.4;
    text-align: start;
}

.woocommerce-checkout #payment ul.payment_methods li {
    display: flex;
}

.woocommerce-checkout #payment ul.payment_methods li .mwx-ec-payment-method-inner {
    padding: 0 16px;
    position: relative;
    box-shadow: 0 0 0 1px #e0e0e0, 0 2px 4px 0 rgba(0, 0, 0, 0.07), 0 1px 1.5px 0 rgba(0, 0, 0, 0.05);
    background: white;
    border: 0;
    color: hsla(0, 0%, 10%, 0.9);
    line-height: 20px;
    transition: box-shadow 0.08s ease-in, color 0.08s ease-in, filter 50000s;
    font-size: 14px;
    width: 100%;
    display: block;
    margin: 0;
    cursor: pointer;
}

.woocommerce-checkout #payment ul.payment_methods li .mwx-ec-payment-method-inner label{
    display: block;
    margin: 0;
    /* inset: -16px; */
    padding: 16px 0 16px 24px;
    cursor: pointer;
    z-index: 1;
    position: relative;
}

html[dir="rtl"] .woocommerce-checkout #payment ul.payment_methods li .mwx-ec-payment-method-inner label,
body.rtl.woocommerce-checkout #payment ul.payment_methods li .mwx-ec-payment-method-inner label {
    padding: 16px 24px 16px 0;
}

.woocommerce-checkout #payment ul.payment_methods li .mwx-ec-payment-method-inner input.input-radio {
    position: absolute;
    top: 18px;
    inset-inline-start: 16px;
    z-index: 2;
    margin: 0;
}

.woocommerce-checkout #payment ul.payment_methods li:first-child .mwx-ec-payment-method-inner {
    border-start-start-radius: 6px;
    border-start-end-radius: 6px;
}

.woocommerce-checkout #payment ul.payment_methods li:last-child .mwx-ec-payment-method-inner {
    border-end-end-radius: 6px;
    border-end-start-radius: 6px;
}

.woocommerce-checkout #payment ul.payment_methods li .mwx-ec-payment-method-inner:before{
    background: transparent;
    border-radius: 6px;
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    margin: 6px 6px 7px 6px;
    opacity: .2;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity .15s cubic-bezier(0.3,0.3,0.3,1), margin .15s cubic-bezier(0.3,0.3,0.3,1);
    will-change: transform;
    z-index: 0;
}

.woocommerce-checkout #payment ul.payment_methods li .mwx-ec-payment-method-inner:active:before {
    margin: 8px 8px 9px 8px;
    opacity: 1;
}

.woocommerce-checkout #payment ul.payment_methods li .mwx-ec-payment-method-inner:hover:before {
    background: #f7f7f7;
    opacity: .7;
}

.woocommerce-checkout #payment div.form-row {
    padding: 0;
    margin-top: 24px;
}

.mwx-ec-payment-method-header {
    z-index: 1;
    position: relative;
    cursor: pointer;
    display: block;
    min-height: 20px;
}

.mwx-ec-checkout-payment div.payment_box {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    padding-bottom: 16px !important;
    margin-top: -16px !important;
    position: relative;
    z-index: 1;
}

.mwx-ec-checkout-payment div.payment_box.payment_method_stripe{
   margin-top: 0 !important; 
}

fieldset#wc-stripe-upe-form, div.payment_box.payment_method_stripe fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

.mwx-ec-checkout-payment div.payment_box::before{
    display: none !important;
}

.woocommerce-checkout #payment ul.payment_methods li img {
    position: absolute;
    padding: 0 !important;
    inset-inline-end: 0;
    margin: 0 !important;
    max-height: 20px;
    max-width: 35px;
    object-fit: contain;
}

.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
    display: block !important;
    width: 100%;
    border-radius: 6px;
    background: var(--mwx-ec-main-color, #ffc502);
    color: var(--mwx-ec-main-button-color, hsl(0deg 0% 0% / 75%));
    font-weight: 500;
    font-size: 16px;
    border: 0;
    min-height: 45px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    outline: none;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    transition: transform .15s ease, box-shadow .08s ease-in, background .15s ease, -webkit-transform .15s ease;
    -webkit-appearance: button;
    line-height: 1.15;
    cursor: pointer;
    box-shadow: inset 0 0 0 1px rgba(50,50,93,0.1),0 2px 5px 0 rgba(50,50,93,0.1),0 1px 1px 0 rgba(0,0,0,0.07);
}

/* mwx-ec-main-button--dark */
/* mwx-ec-main-button--light */
#payment #place_order:hover {
    background: color-mix(in srgb, var(--mwx-ec-main-color, #ffc502) 85%, white);
    color: hsl(0deg 0% 0% / 85%);
}

/* Dark-text button (default) */
body.mwx-ec-main-button--dark #payment #place_order,
body.mwx-ec-main-button--dark #payment #place_order {
    color: hsl(0deg 0% 0% / 80%);
}

/* Light-text button */
body.mwx-ec-main-button--light #payment #place_order,
body.mwx-ec-main-button--light #payment #place_order {
    color: hsl(0deg 0% 100% / 92%);
}

body.mwx-ec-main-button--light #payment #place_order:hover,
body.mwx-ec-main-button--light #payment #place_order:hover {
    color: #ffffff;
}

.woocommerce-privacy-policy-text,
.woocommerce-terms-and-conditions-wrapper {
    font-size: 12px;
    color: #6b7280;
}

.mwx-ec-policy-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 18px 0 0;
    font-size: 12px;
    line-height: 1.4;
}

.mwx-ec-policy-link {
    color: #6b7280;
    text-decoration: none;
    display: inline-flex;
    gap: 5px;
}

img.mwx-ec-policy-link-img {
    max-width: 80px;
}

.mwx-ec-policy-link:not(span):hover,
.mwx-ec-policy-link:not(span):focus {
    color: #333333;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 3px;
}

.mwx-ec-policy-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.mwx-ec-policy-modal.is-open {
    display: flex;
}

.mwx-ec-policy-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(1px);
}

.mwx-ec-policy-dialog {
    position: relative;
    z-index: 1;
    max-width: 500px;
    width: min(500px, 100%);
    max-height: calc(100vh - 48px);
    overflow: hidden;
    display: grid;
    grid-template-rows: 1fr;
    background: #ffffff;
    color: #333333;
    border-radius: 6px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
    outline: none;
}

.mwx-ec-policy-content {
    padding: 24px;
    overflow: auto;
}

.mwx-ec-policy-notice {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 12px;
    align-items: start;
    padding: 14px 16px;
    margin-bottom: 18px;
    background: #f7f7f7;
    border-radius: 6px;
    color: #777777;
}

.mwx-ec-policy-notice p {
    margin: 0;
    font-size: 13px;
    line-height: 1.35;
}

.mwx-ec-policy-icon-info {
    width: 13px;
    height: 13px;
    margin-top: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid currentColor;
    border-radius: 999px;
    color: #8a8a8a;
    font-size: 9px;
    line-height: 1;
    font-weight: 700;
}

.mwx-ec-policy-icon-info:before {
    content: "i";
}

.mwx-ec-policy-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.mwx-ec-policy-section-title h3 {
    margin: 0;
    color: #3b3b3b;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.mwx-ec-policy-section-icon {
    position: relative;
    width: 16px;
    height: 16px;
    color: #333333;
    flex: 0 0 auto;
}

.mwx-ec-policy-section-icon-refund:before {
    content: "";
    position: absolute;
    inset: 2px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 999px;
}

.mwx-ec-policy-section-icon-refund:after {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 7px;
    height: 7px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
}

.mwx-ec-policy-section-icon-document {
    border: 1.7px solid currentColor;
    border-radius: 2px;
}

.mwx-ec-policy-section-icon-document:before,
.mwx-ec-policy-section-icon-document:after {
    content: "";
    position: absolute;
    left: 3px;
    right: 3px;
    height: 1.5px;
    background: currentColor;
    border-radius: 999px;
}

.mwx-ec-policy-section-icon-document:before {
    top: 5px;
}

.mwx-ec-policy-section-icon-document:after {
    top: 9px;
}

.mwx-ec-policy-section-icon-shield:before {
    content: "";
    position: absolute;
    inset: 1px 3px 0;
    border: 1.7px solid currentColor;
    border-radius: 8px 8px 10px 10px;
    transform: perspective(18px) rotateX(-14deg);
}

.mwx-ec-policy-section ul {
    margin: 0;
    padding-inline-start: 48px;
    color: #777777;
    font-size: 13px;
    line-height: 1.35;
}

.mwx-ec-policy-section li {
    margin: 0 0 8px;
}

.mwx-ec-policy-section li:last-child {
        /* text-decoration: underline;
        text-decoration-style: dotted;
        text-underline-offset: 3px; */
}

.mwx-ec-policy-page-link {
    display: inline-block;
    margin-top: 6px;
    padding-inline-start: 48px;
    color: inherit;
    font-size: 13px;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 3px;
}

body.mwx-ec-policy-lock {
    overflow: hidden;
}

.mwx-ec-empty-wrap {
    min-height: 100vh;
    display: flex;
    padding: 16px;
    box-sizing: border-box;
    max-width: calc(380px + calc(2 * 16px));
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.mwx-ec-empty-card {
    width: 100%;
}

.mwx-ec-empty-card h1 {
    margin: 0 0 12px;
}

.mwx-ec-empty-card p {
    color: #6b7280;
    margin: 0 0 18px;
}

.mwx-ec-empty-card .button {
    background: #111827;
    color: #fff;
    border-radius: 12px;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    padding: 0 16px;
}

/* .mwx-ec-success-card {
    padding: 28px;
} */
.mwx-ec-shell-success--without-order::after{
    display: none;
}
.mwx-ec-shell-success--without-order{
    justify-content: center;
    align-items: center;
    align-content: center;
}

.mwx-ec-success-icon{
    text-align: center;
}

.mwx-ec-success-icon-failed, .mwx-ec-empty-icon-failed {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: #fee2e2;
    color: #991b1b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    justify-self: center;
}

.mwx-ec-success-icon, .mwx-ec-success-icon-failed, .mwx-ec-empty-icon-failed, .mwx-ec-success-title, .mwx-ec-empty-title, .mwx-ec-success-description, .mwx-ec-empty-description, .mwx-ec-order-table, .mwx-ec-success-actions, .mwx-ec-policy-links {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-name: slide-header-up;
    animation-name: slide-header-up;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}


@keyframes slide-header-up {
    0% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
    50% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}



.CheckSuccess-circle {
    animation: checkmarkCircleShimmer 1s linear both, drawCircle 1s linear both;
}

.CheckSuccess-checkGroup {
    animation: fadeIn 1s linear both;
}

.CheckSuccess-check {
    animation: drawCheckmark 1s linear both;
}

@keyframes checkmarkCircleShimmer {
    0% {
        transform: translate(24px, 24px) rotate(-35deg);
    }

    15% {
        animation-timing-function: cubic-bezier(1, 0, 0, 1);
        transform: translate(24px, 24px) rotate(-35deg);
    }

    75% {
        transform: translate(24px, 24px) rotate(325deg);
    }

    100% {
        transform: translate(24px, 24px) rotate(325deg);
    }
}

@keyframes drawCircle {
    0% {
        stroke-dashoffset: 145px;
    }

    8.35% {
        stroke-dashoffset: 145px;
        animation-timing-function: cubic-bezier(1, 0, 0, 1);
    }

    38.35% {
        stroke-dashoffset: 0px;
    }

    100% {
        stroke-dashoffset: 0px;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    13.3% {
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@keyframes drawCheckmark {
    0% {
        stroke-dashoffset: 28px;
    }

    15% {
        stroke-dashoffset: 28px;
        -webkit-animation-timing-function: cubic-bezier(1, 0, 0, 1);
        animation-timing-function: cubic-bezier(1, 0, 0, 1);
    }

    55% {
        stroke-dashoffset: 0px;
    }

    100% {
        stroke-dashoffset: 0px;
    }
}


.mwx-ec-success-title, .mwx-ec-empty-title {
    margin: 12px 0 16px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    color: #1A1E23;
    text-align: center;
}

.mwx-ec-success-description, .mwx-ec-empty-description {
    margin: 0 0 22px;
    font-size: 14px;
    line-height: 1.3;
    color: #1A1A1A80;
    text-align: center;
}

.mwx-ec-order-table {
    display: grid;
    gap: 12px;
    margin: 20px 0 24px;
    border-top: 1px solid #e5e7eb;
    padding-top: 16px;
}

.mwx-ec-order-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.mwx-ec-order-row-meta {
    margin-top: 4px;
    font-size: 13px;
    color: #6b7280;
}

.mwx-ec-success-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.mwx-ec-success-actions .button, .mwx-ec-empty-button {
        /* min-height: 46px; */
    /* border-radius: 12px; */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    /* background: #111827; */
    /* color: #fff; */
    text-decoration: none;
    /* width: 100%; */
    width: 100%;
    border-radius: 6px;
    background: var(--mwx-ec-main-color, #ffc502);
    color: var(--mwx-ec-main-button-color, hsl(0deg 0% 0% / 75%));
    font-weight: 500;
    font-size: 16px;
    border: 0;
    min-height: 45px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    outline: none;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    transition: transform .15s ease, box-shadow .08s ease-in, -webkit-transform .15s ease;
    -webkit-appearance: button;
    line-height: 1.15;
    box-sizing: border-box;
    cursor: pointer;
    box-shadow: inset 0 0 0 1px rgba(50, 50, 93, 0.1), 0 2px 5px 0 rgba(50, 50, 93, 0.1), 0 1px 1px 0 rgba(0, 0, 0, 0.07);
}

.mwx-ec-success-actions .button.alt,
.mwx-ec-success-actions .button.mwx-ec-secondary {
    background: #f3f4f6;
    color: hsl(0deg 0% 0% / 75%);
}

body.mwx-ec-order-received-page .mwx-ec-shell-success .mwx-ec-summary {
    /* background: linear-gradient(180deg, #0b0b0f 0%, #111827 100%); */
}



@media only screen and (min-width: 992px){
    .mwx-ec-mobile-header-order-details, .mwx-ec-order-details-toggle, .mwx-ec-button-mobile-add-code-container{
        display: none;
    }
}

@media only screen and (max-width: 991.98px) {
    *{
        box-sizing: border-box;
    }
    .mwx-ec-shell{
        justify-content: flex-start;
        align-content: center;
        align-items: center;
        padding-top: 0;
        flex-direction: column;
    }

    .mwx-ec-shell.mwx-ec-order-details-open{
        overflow: hidden;
        width: 100vw;
        height: 100vh;
    }

    .mwx-ec-shell.mwx-ec-order-details-open:before {
        content: "";
        width: 100vw;
        height: 100vh;
        display: flex;
        z-index: 4;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgb(0 0 0 / 20%);
        /* filter: blur(100vh); */
        backdrop-filter: blur(2px);
    }

    #mwx-ec-app:after{
        display: none;
    }

    .mwx-ec-summary{
        top: unset;
        max-width: unset;
        background: #000000;
        padding: 10px 16px;
        position: absolute;
        z-index: 5;
        /* overflow: hidden; */
    }

    .mwx-ec-summary-inner{
        max-width: 400px;
        margin: 0 auto;
    }

    .mwx-ec-order-details-label{
        color: hsla(0, 0%, 100%, 0.9);
        text-decoration: underline dotted hsla(0, 0%, 100%, 0.9);
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        font-weight: 400;
        font-size: 13px;
    }

    .mwx-ec-order-details-toggle {
        display: flex;
        align-content: center;
        justify-content: center;
        align-items: center;
    }

    .mwx-ec-order-details-toggle-inner {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
    }

    .mwx-ec-order-details-inner .mwx-ec-subtitle, .mwx-ec-order-details-inner .mwx-ec-total {
        display: none;
    }

    .mwx-ec-order-details-inner .mwx-ec-items{
        margin-top: 0;
    }

    .mwx-ec-summary-header {
        display: flex;
        justify-content: space-between;
        z-index: 4;
        position: relative;
    }
    
    .mwx-ec-order-details{
        padding-top: 0px;
        max-height: 0;
        /* overflow: hidden; */
        opacity: 0;
        transform: translateY(-10px);
        transition: max-height .4s ease, opacity .4s ease, transform .4s ease, padding-top .4s ease;
        display: block;
        pointer-events: none;
    }

    .mwx-ec-order-details.active{
        max-height: 2400px;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        padding-top: 24px;
    }

    .mwx-ec-order-details-inner{
        max-width: 400px;
        margin: 0 auto;
    }

    .mwx-ec-mobile-header-order-details{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 5px;
        gap: 20px;
        transition: transform .4s ease, opacity .4s ease, margin-top .4s ease;
    }

    .mwx-ec-mobile-header-order-details.active{
        transform: translateY(0);
        opacity: 1;
        margin-top: 12px;
    }

    .mwx-ec-order-details-label{
        display: inline-block;
        transition: transform .2s ease, opacity .2s ease;
    }

    .mwx-ec-order-details-label.is-swapping{
        opacity: 0;
        transform: translateX(-8px);
    }

    .mwx-ec-brand{
        margin-bottom: 0;
    }

    .mwx-ec-mobile-header-order-details{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 5px;
        gap: 20px;
    }

    .mwx-ec-mobile-header-order-details.active{
        margin-top: 12px;
    }
    
    .mwx-ec-mobile-header-order-details .mwx-ec-total {
        margin: 0;
        font-size: 16px;
        font-weight: 500 !important;
    }

    .mwx-ec-checkout{
        max-width: unset;
        padding: 24px 16px;
        margin-top: var(--summary-height, 85px);
    }

    .mwx-ec-checkout.thank-you{
        padding: 50px 16px;
    }

    .mwx-ec-checkout-inner {
        max-width: 400px;
        margin: auto;
    }

    .mwx-ec-button-mobile-add-code-container{
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 24px;
    }

    .mwx-ec-order-details-open .mwx-ec-button-mobile-add-code-container{
        display: none;
    }

    .mwx-ec-Button-mobile-add-code {
        background-color: rgb(0 0 0 / 10%);
        color: #000000;
        appearance: button;
        border-width: 0px;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        border-radius: 6px;
        padding: 12px;
        font-size: 14px;
        cursor: pointer;
        transition: background-color 0.1s ease-in, transform 0.08s ease-in, -webkit-transform 0.08s ease-in;
        text-transform: none;
        line-height: 1.15;
        margin: 0px;
    }

    .mwx-ec-Button-mobile-add-code:hover {
        background-color: rgba(0, 0, 0, 0.2);
    }

    /* .mwx-ec-cart-panel--light .mwx-ec-Button-mobile-add-code {
        background-color: rgb(0 0 0 / 10%);
        color: #000000;
    }

    .mwx-ec-cart-panel--light .mwx-ec-Button-mobile-add-code:hover {
        background-color: rgb(0 0 0 / 20%);
    } */

    .mwx-ec-Button-mobile-add-code-inner-div {
        box-sizing: border-box;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
    }

    svg.mwx-ec-Button-mobile-add-code-svg {
        width: 12px;
        height: 12px;
        margin-inline-start: 8px;
        margin-inline-end: 0px;
        order: 1;
        flex-shrink: 0;
        box-sizing: border-box;
        fill: inherit;
    }
}





















@media (max-width: 980px) {
    .mwx-ec-shell {
        grid-template-columns: 1fr;
    }

    .mwx-ec-total {
        font-size: 34px;
    }

    .mwx-ec-success-card h1 {
        font-size: 24px;
    }
}

@media (max-width: 520px) {
    .mwx-ec-policy-modal {
        padding: 16px;
    }

    .mwx-ec-policy-content {
        padding: 18px;
    }
}


/* ==========================================================================
   Brand Logo Styles
   ========================================================================== */

/* Full logo image (replaces icon + title) */
.mwx-ec-brand-logo {
    display: block;
    max-height: 36px;
    max-width: 160px;
    width: auto;
    object-fit: contain;
    /* White tint when placed on dark cart panel */
    /* filter: brightness(0) invert(1); */
}

/* When the cart panel is light, show logo in its natural colors */
body.mwx-ec-cart-panel--light .mwx-ec-brand-logo {
    filter: none;
}

/* Mobile header logo (in the collapsed mobile bar) */
.mwx-ec-mobile-brand-logo {
    display: block;
    max-height: 28px;
    max-width: 120px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

body.mwx-ec-cart-panel--light .mwx-ec-mobile-brand-logo {
    filter: none;
}

/* ==========================================================================
   Light Cart Panel Theme  (body.mwx-ec-cart-panel--light)
   ========================================================================== */

/* The dark pseudo-element behind the summary becomes light */
body.mwx-ec-cart-panel--light #mwx-ec-app:after {
    background: #f8f9fb;
    border-inline-end: 1px solid #e5e7eb;
}

/* Summary section becomes light */
body.mwx-ec-cart-panel--light .mwx-ec-summary {
    color: #111827;
}

/* Brand text */
body.mwx-ec-cart-panel--light .mwx-ec-brand {
    color: #111827;
}

/* Subtitle and total */
body.mwx-ec-cart-panel--light .mwx-ec-subtitle {
    color: #6b7280;
}

body.mwx-ec-cart-panel--light .mwx-ec-total {
    color: #111827;
}

/* Items */
body.mwx-ec-cart-panel--light .mwx-ec-item-content h3 {
    color: #111827;
}

body.mwx-ec-cart-panel--light .mwx-ec-item-price,
body.mwx-ec-cart-panel--light .mwx-ec-item-total,
body.mwx-ec-cart-panel--light .mwx-ec-line {
    color: #374151;
}

body.mwx-ec-cart-panel--light .mwx-ec-item-total {
    color: #111827;
}

/* Qty controls */
body.mwx-ec-cart-panel--light .mwx-ec-qty-btn {
    border-color: #d7dce2;
    background: #f3f4f6;
    color: #111827;
}

body.mwx-ec-cart-panel--light .mwx-ec-qty-input {
    border-color: #d7dce2;
    background: #f3f4f6;
    color: #111827;
}

/* Summary box separator */
body.mwx-ec-cart-panel--light .mwx-ec-summary-box {
    border-top-color: #e5e7eb;
}

/* Coupon form in light mode */
body.mwx-ec-cart-panel--light #mwx-ec-coupon-form input {
    background-color: #f3f4f6;
    color: #111827;
    box-shadow: 0 0 0 1px #d7dce2;
}

body.mwx-ec-cart-panel--light #mwx-ec-coupon-form input::placeholder {
    color: #6b7280;
}

body.mwx-ec-cart-panel--light #mwx-ec-coupon-form input:hover {
    background-color: #e5e7eb;
}

body.mwx-ec-cart-panel--light #mwx-ec-coupon-form input:focus {
    box-shadow: 0 0 0 1px rgba(50, 151, 211, 0.6), 0 0 0 3px rgba(50, 151, 211, 0.18);
}

body.mwx-ec-cart-panel--light #mwx-ec-coupon-form button {
    color: #111827;
}

/* Order details toggle label in light mode */
body.mwx-ec-cart-panel--light .mwx-ec-order-details-label {
    color: #374151;
    text-decoration-color: #374151;
}

body.mwx-ec-cart-panel--light .mwx-ec-order-details-toggle-inner svg path {
    fill: #374151;
}

/* Mobile summary bar in light mode */
@media only screen and (max-width: 991.98px) {
    body.mwx-ec-cart-panel--light .mwx-ec-summary {
        background: #f8f9fb;
        border-bottom: 1px solid #e5e7eb;
    }
}

/* ==========================================================================
   Main Color Variable — applied to focus rings and misc accents
   ========================================================================== */

/* Override the input focus ring to use the main color */
.woocommerce-page form .form-row input.input-text:focus,
.woocommerce-page form .form-row select:focus,
.woocommerce-page form .form-row textarea.input-text:focus, 
.iti__search-input:focus, .iti__search-input:focus-visible, 
.woocommerce-page .select2-container .select2-search--dropdown .select2-search__field:focus {
    box-shadow:
        0 0 0 1px color-mix(in srgb, var(--mwx-ec-main-color, #3297d3) 70%, transparent),
        0 1px 1px 0 rgba(0, 0, 0, 0.07),
        0 0 0 4px color-mix(in srgb, var(--mwx-ec-main-color, #3297d3) 30%, transparent);
}

/* ==========================================================================
   WooCommerce Notices Styling (Error, Message, Info)
   ========================================================================== */
.woocommerce-notices-wrapper {
    width: 100%;
    margin-bottom: 24px;
    display: block;
    clear: both;
}

.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
    list-style: none !important;
    margin: 0 0 12px 0 !important;
    padding: 16px 20px !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    font-weight: 500 !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03) !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

/* Remove default browser focus outline when notices are auto-focused */
.woocommerce-error:focus,
.woocommerce-message:focus,
.woocommerce-info:focus {
    outline: none !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03) !important;
}

.woocommerce-error li,
.woocommerce-message li,
.woocommerce-info li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    list-style-type: none !important;
}

/* Error Scenario (Notice Box) */
.woocommerce-error {
    background-color: #fef2f2 !important;
    border: 1px solid #fee2e2 !important;
    color: #991b1b !important;
}

.woocommerce-error li a {
    color: #7f1d1d !important;
    text-decoration: underline !important;
    font-weight: 600 !important;
}

/* Message Scenario (Success Notice Box) */
.woocommerce-message {
    background-color: #f0fdf4 !important;
    border: 1px solid #dcfce7 !important;
    color: #166534 !important;
}

.woocommerce-message a {
    color: #14532d !important;
    text-decoration: underline !important;
    font-weight: 600 !important;
}

/* Info Scenario (Info Notice Box) */
.woocommerce-info {
    background-color: #eff6ff !important;
    border: 1px solid #dbeafe !important;
    color: #1e40af !important;
}

.woocommerce-info a {
    color: #1e3a8a !important;
    text-decoration: underline !important;
    font-weight: 600 !important;
}

/* RTL Adjustments */
html[lang^="ar"] .woocommerce-error,
html[lang^="ar"] .woocommerce-message,
html[lang^="ar"] .woocommerce-info {
    text-align: right !important;
}

/* ==========================================================================
   Skeleton Loading Animation for Checkout Prices
   ========================================================================== */
@keyframes mwx-skeleton-shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.mwx-ec-summary.mwx-ec-loading-active .mwx-ec-total,
.mwx-ec-summary.mwx-ec-loading-active .mwx-ec-summary-box .mwx-ec-line > span:last-child,
.mwx-ec-summary.mwx-ec-loading-active .mwx-ec-item-total,
.mwx-ec-summary.mwx-ec-loading-active .mwx-ec-item-price {
    color: transparent !important;
    position: relative !important;
    display: inline-block !important;
    min-width: 65px !important;
    height: 1.2em !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    border: none !important;
    box-shadow: none !important;
    vertical-align: middle !important;
    /* Default dark mode summary background shim */
    background: linear-gradient(90deg, #1c1c1e 25%, #2c2c2e 50%, #1c1c1e 75%) !important;
    background-size: 200% 100% !important;
    animation: mwx-skeleton-shimmer 1.4s infinite linear !important;
}

/* Ensure any nested HTML inside the price container is also invisible during skeleton load */
.mwx-ec-summary.mwx-ec-loading-active .mwx-ec-total *,
.mwx-ec-summary.mwx-ec-loading-active .mwx-ec-summary-box .mwx-ec-line > span:last-child *,
.mwx-ec-summary.mwx-ec-loading-active .mwx-ec-item-total *,
.mwx-ec-summary.mwx-ec-loading-active .mwx-ec-item-price * {
    visibility: hidden !important;
}

/* Light mode panel summary skeleton styles */
body.mwx-ec-cart-panel--light .mwx-ec-summary.mwx-ec-loading-active .mwx-ec-total,
body.mwx-ec-cart-panel--light .mwx-ec-summary.mwx-ec-loading-active .mwx-ec-summary-box .mwx-ec-line > span:last-child,
body.mwx-ec-cart-panel--light .mwx-ec-summary.mwx-ec-loading-active .mwx-ec-item-total,
body.mwx-ec-cart-panel--light .mwx-ec-summary.mwx-ec-loading-active .mwx-ec-item-price {
    background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%) !important;
    background-size: 200% 100% !important;
}


