/* Side cart */

.store-side-cart-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    background: rgba(15, 23, 42, 0.42);
    transition: opacity var(--store-transition-base);
}

.store-side-cart-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.store-side-cart {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    width: min(430px, 100vw);
    pointer-events: none;
}

.store-side-cart-panel {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: var(--store-color-white);
    color: var(--store-color-text);
    box-shadow: -16px 0 38px var(--store-color-shadow-strong, rgba(15, 23, 42, 0.16));
    transform: translateX(104%);
    transition: transform var(--store-transition-base);
}

.store-side-cart.is-open {
    pointer-events: auto;
}

.store-side-cart.is-open .store-side-cart-panel {
    transform: translateX(0);
}

.store-side-cart-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--store-space-5);
    padding: var(--store-space-8);
    border-bottom: 1px solid var(--store-color-border-strong);
}

.store-side-cart-heading-group {
    display: flex;
    flex-direction: column;
    gap: var(--store-space-2);
}

.store-side-cart-title {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.2;
    color: var(--store-color-title);
}

.store-side-cart-count {
    margin: 0;
    color: var(--store-color-text-muted);
    font-size: 0.92rem;
    line-height: 1.4;
}

.store-side-cart-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    min-width: 42px;
    height: 42px;
    border: 1px solid var(--store-color-border);
    border-radius: 14px;
    background: var(--store-color-white);
    color: var(--store-color-text);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: var(--store-shadow-control);
}

.store-side-cart-close:hover {
    background: var(--store-color-surface-soft);
    color: var(--store-color-primary);
}

.store-side-cart-notices {
    padding: 0 var(--store-space-8);
}

.store-side-cart-notices:empty {
    display: none;
}

.store-side-cart-notices .woocommerce-message,
.store-side-cart-notices .woocommerce-error,
.store-side-cart-notices .woocommerce-info {
    margin: var(--store-space-6) 0 0;
    border: 1px solid var(--store-color-border-strong);
    border-radius: 16px;
    background: var(--store-color-surface-soft);
    color: var(--store-color-text);
    list-style: none;
    padding: var(--store-space-5) var(--store-space-6);
}

.store-side-cart-notices .woocommerce-error {
    background: #fff7f7;
    border-color: #fecaca;
    color: #991b1b;
}

.store-toast-host {
    position: fixed;
    top: max(20px, env(safe-area-inset-top, 0px));
    right: 20px;
    left: auto;
    bottom: auto;
    z-index: 2147483000;
    display: flex !important;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    width: min(380px, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
    max-height: none;
    box-sizing: border-box;
    overflow: visible;
    min-width: 0;
    pointer-events: none;
    visibility: visible;
    opacity: 1;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    isolation: isolate;
}

@media (max-width: 768px) {
    .store-toast-host {
        top: auto;
        bottom: max(16px, env(safe-area-inset-bottom, 0px));
        right: 12px;
        left: 12px;
        width: auto;
        max-width: none;
        align-items: stretch;
    }

    .store-toast {
        width: 100%;
        max-width: 100%;
        height: auto;
        flex-shrink: 0;
        animation: none;
    }
}

[data-store-add-to-cart] {
    touch-action: manipulation;
}

.store-toast {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    flex-shrink: 0;
    box-sizing: border-box;
    padding: 14px 44px 18px 16px;
    border-radius: 14px;
    background: #dc2626;
    color: #fff8f5;
    font-family: inherit;
    box-shadow: 0 16px 36px rgba(127, 29, 29, 0.34);
    overflow: hidden;
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    animation: store-toast-enter 0.24s ease;
}

@media (prefers-reduced-motion: reduce) {
    .store-toast {
        animation: none;
    }
}

.store-toast.is-leaving {
    animation: store-toast-leave 0.22s ease forwards;
}

.store-toast__message {
    display: block;
    width: 100%;
    min-width: 0;
    margin: 0;
    font-family: inherit;
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: 0.012em;
    color: #fff8f5;
    white-space: pre-line;
    overflow-wrap: break-word;
    word-break: normal;
    overflow: visible;
    text-wrap: pretty;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.store-toast__close {
    position: absolute;
    top: 8px;
    right: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    min-width: 28px;
    height: 28px;
    padding: 0 !important;
    margin: 0;
    border: 0 !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.16) !important;
    box-shadow: none !important;
    color: transparent;
    font-size: 0;
    line-height: 0;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
    transition: background-color var(--store-transition-fast);
}

.store-toast__close::before {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    background-color: #ffffff;
    -webkit-mask-image: var(--store-icon-mask-close);
    mask-image: var(--store-icon-mask-close);
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    pointer-events: none;
}

.store-toast__close:hover,
.store-toast__close:focus,
.store-toast__close:focus-visible {
    background: rgba(255, 255, 255, 0.28) !important;
    outline: none !important;
}

.store-toast__progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.22);
}

.store-toast__progress > span {
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    transform-origin: left center;
    animation: store-toast-progress var(--store-toast-duration, 6s) linear forwards;
}

@keyframes store-toast-enter {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes store-toast-leave {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    to {
        opacity: 0;
        transform: translateY(-8px) scale(0.98);
    }
}

@keyframes store-toast-progress {
    from {
        transform: scaleX(1);
    }

    to {
        transform: scaleX(0);
    }
}

.store-side-cart-content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
    overflow-y: auto;
    background: var(--store-color-surface);
}

.store-side-cart-items {
    display: flex;
    flex-direction: column;
}

.store-side-cart-item {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: var(--store-space-5);
    padding: var(--store-space-7) var(--store-space-8);
    border-bottom: 1px solid var(--store-color-border-strong);
    background: var(--store-color-surface);
}

.store-side-cart-item-media {
    display: flex;
}

.store-side-cart-item-image-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 92px;
    padding: var(--store-space-3);
    border-radius: 18px;
    border: 1px solid var(--store-color-border-soft);
    background: var(--store-color-white);
    text-decoration: none;
}

.store-side-cart-item-image {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: scale-down;
    object-position: center;
}

.store-side-cart-item-body {
    display: flex;
    flex-direction: column;
    gap: var(--store-space-4);
    min-width: 0;
}

.store-side-cart-item-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--store-space-4);
}

.store-side-cart-item-title {
    margin: 0;
    color: var(--store-color-title);
    font-size: 0.95rem;
    line-height: 1.45;
    text-decoration: none;
}

.store-side-cart-item-title:hover {
    color: var(--store-color-primary);
}

.store-side-cart-item-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    min-width: 32px;
    height: 32px;
    border: 1px solid var(--store-color-border);
    border-radius: 12px;
    background: var(--store-color-white);
    color: var(--store-color-text-muted);
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
}

.store-side-cart-item-remove:hover {
    color: #dc2626;
    border-color: var(--store-color-border-strong);
    background: var(--store-color-surface-soft);
}

.store-side-cart-item-meta {
    display: flex;
    flex-direction: column;
    gap: var(--store-space-4);
}

.store-side-cart-item-prices {
    display: flex;
    flex-direction: column;
    gap: var(--store-space-2);
}

.store-side-cart-item-price-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--store-space-4);
    margin: 0;
}

.store-side-cart-item-price-label {
    color: var(--store-color-text-muted);
    font-size: 0.84rem;
}

.store-side-cart-item-price-value,
.store-side-cart-item-line-total,
.store-side-cart-item-price-value .amount,
.store-side-cart-item-line-total .amount {
    color: var(--store-color-price);
    font-size: 0.9rem;
    font-weight: 600;
}

.store-side-cart-item-price-value ins,
.store-side-cart-item-line-total ins {
    text-decoration: none;
}

.store-side-cart-quantity {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    width: fit-content;
    padding: 3px;
    border: 1px solid var(--store-color-border);
    border-radius: 14px;
    background: var(--store-color-surface);
}

.store-side-cart-quantity-button {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 28px;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: var(--store-color-white);
    color: var(--store-color-text);
    font-size: 0.95rem;
    line-height: 0;
    cursor: pointer;
    box-shadow: var(--store-shadow-control);
}

.store-side-cart-quantity-button:hover {
    background: var(--store-color-primary-faint);
    color: var(--store-color-primary);
}

.store-side-cart-quantity-button:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.store-side-cart-quantity-input {
    width: 42px;
    min-height: 28px;
    padding: 0;
    border: 0;
    background: var(--store-color-white);
    text-align: center;
    font-weight: 600;
    color: var(--store-color-text);
    appearance: textfield;
}

.store-side-cart-quantity-input:focus {
    outline: none;
}

.store-side-cart-quantity-input::-webkit-outer-spin-button,
.store-side-cart-quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.store-side-cart-empty {
    margin: 0;
    padding: var(--store-space-11) var(--store-space-8);
    color: var(--store-color-text-muted);
    text-align: center;
}

.store-side-cart-footer {
    display: flex;
    flex-direction: column;
    gap: var(--store-space-6);
    margin-top: auto;
    padding: var(--store-space-8);
    border-top: 1px solid var(--store-color-border-strong);
    background: var(--store-color-white);
}

.store-side-cart-total-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--store-space-5);
}

.store-side-cart-total-label {
    color: var(--store-color-text-muted);
    font-size: 0.92rem;
}

.store-side-cart-total-value,
.store-side-cart-total-value .amount {
    color: var(--store-color-price);
    font-size: 1.02rem;
    font-weight: 700;
}

.store-side-cart-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--store-space-4);
}

.store-side-cart-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 var(--store-space-6);
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    transition:
        transform var(--store-transition-fast),
        box-shadow var(--store-transition-fast),
        background-color var(--store-transition-fast);
}

.store-side-cart-button:hover {
    transform: translateY(-1px);
}

.store-side-cart-button-primary {
    background: linear-gradient(135deg, var(--store-action-button-bg-start) 0%, var(--store-action-button-bg-end) 100%);
    color: var(--store-action-button-text);
    box-shadow: var(--store-action-button-shadow);
}

.store-side-cart-button-primary:hover {
    color: var(--store-action-button-text);
    box-shadow: var(--store-action-button-shadow-hover);
}

.store-side-cart-button-secondary {
    border: 1px solid var(--store-color-border);
    background: var(--store-color-white);
    color: var(--store-color-text);
}

.store-side-cart-button-secondary:hover {
    color: var(--store-color-primary);
    border-color: var(--store-color-primary-pale);
    background: var(--store-color-surface-soft);
}

.store-side-cart.is-loading .store-side-cart-content {
    opacity: 0.6;
    transition: opacity var(--store-transition-fast);
}

.store-side-cart-trigger {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    min-height: 44px;
    min-width: 44px;
    padding: 0 0px;
    border: none;
    border-radius: 14px;
    background: var(--store-color-white);
    color: var(--store-color-primary);
    font-weight: 600;
    cursor: pointer;
    box-shadow: none;
    transition:
        transform var(--store-transition-fast),
        box-shadow var(--store-transition-fast),
        background-color var(--store-transition-fast);
}

.store-side-cart-trigger:hover {
    transform: translateY(-1px);
    background: var(--store-color-surface-soft);
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.12);
}

.store-side-cart-trigger-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: currentColor;
}

.store-side-cart-trigger-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.store-side-cart-trigger-accessible-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.store-side-cart-trigger-count {
    display: inline-grid;
    place-items: center;
    box-sizing: border-box;
    min-width: 22px;
    height: 22px;
    padding: 0px 0px 0px 0px;
    border-radius: 999px;
    background: #e12d36;
    color: var(--store-color-white);
    font-size: 0.76rem;
    line-height: 1;
    text-align: center;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

/* Cart page */

.store-cart-page {
    width: 100%;
}

.store-cart-page-card {
    overflow: hidden;
    border: 1px solid var(--store-color-border-strong);
    border-radius: var(--store-radius-card);
    background: var(--store-color-white);
    box-shadow: var(--store-shadow-panel);
}

.store-cart-page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--store-space-5);
    padding: var(--store-space-8);
    border-bottom: 1px solid var(--store-color-border-strong);
    background: var(--store-color-white);
}

.store-cart-page-title {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.2;
    color: var(--store-color-title);
}

.store-cart-page-count {
    margin: 0;
    color: var(--store-color-text-muted);
    font-size: 0.92rem;
    line-height: 1.4;
}

.store-cart-page-notices {
    padding: 0 var(--store-space-8);
    background: var(--store-color-white);
}

.store-cart-page-notices:empty {
    display: none;
}

.store-cart-page-notices .woocommerce-message,
.store-cart-page-notices .woocommerce-error,
.store-cart-page-notices .woocommerce-info {
    margin: var(--store-space-6) 0 0;
    border: 1px solid var(--store-color-border-strong);
    border-radius: 16px;
    background: var(--store-color-surface-soft);
}

.store-cart-page-notices .woocommerce-error {
    background: #fff7f7;
}

.store-cart-page-content {
    background: var(--store-color-surface);
}

.store-cart-page-body {
    display: flex;
    flex-direction: column;
}

.store-cart-page-items {
    border-bottom: 1px solid var(--store-color-border-strong);
}

.store-cart-page-summary-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: var(--store-space-8);
    padding: var(--store-space-8);
    background: var(--store-color-surface);
}

.store-cart-page-panel {
    display: flex;
    flex-direction: column;
    gap: var(--store-space-5);
    padding: var(--store-space-7);
    border: 1px solid var(--store-color-border-strong);
    border-radius: var(--store-radius-panel);
    background: var(--store-color-white);
    box-shadow: 0 10px 24px var(--store-color-shadow);
}

.store-cart-page-panel-coupon {
    gap: var(--store-space-5, 20px);
    padding: 20px;
    border: 1px solid var(--store-color-border-strong, #e5e7eb);
    border-radius: var(--store-radius-card, 24px);
    background: var(--store-color-white, #ffffff);
    box-shadow: var(--store-shadow-panel, 0 12px 28px rgba(15, 23, 42, 0.05));
}

.store-cart-page-panel-title {
    margin: 0;
    color: var(--store-color-title);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.store-cart-page-coupon-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--store-space-5, 20px);
}

.store-cart-page-coupon-form {
    width: 100%;
    margin: 0;
}

.store-cart-page-panel-coupon .store-checkout-coupon-form-proxy {
    display: none;
}

.store-cart-page-panel-coupon .store-checkout-coupon-box__title {
    margin: 0;
    color: var(--store-color-title, #1d4ed8);
    font-size: 1.08rem;
    line-height: 1.2;
}

.store-cart-page-panel-coupon .store-checkout-coupon-box__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: stretch;
}

.store-cart-page-panel-coupon .store-checkout-coupon-box__input,
.store-cart-page-panel-coupon .store-checkout-coupon-box__button {
    width: 100%;
}

body.woocommerce-cart .store-cart-page-panel-coupon .store-cart-page-coupon-input,
body.woocommerce-cart .store-cart-page-panel-coupon .store-checkout-coupon-box__input {
    min-height: 50px;
    padding: 0 15px !important;
    border: 1px solid var(--store-color-border, #dbe4ee) !important;
    border-radius: 16px !important;
    background: var(--store-color-white, #ffffff) !important;
    color: var(--store-color-text, #0f172a) !important;
    box-shadow: none !important;
    line-height: normal;
    -webkit-appearance: none;
    appearance: none;
    transition:
        border-color var(--store-transition-fast, 0.18s ease),
        box-shadow var(--store-transition-fast, 0.18s ease),
        background-color var(--store-transition-fast, 0.18s ease);
}

.store-cart-page-coupon-input::placeholder {
    color: var(--store-color-text-muted);
}

body.woocommerce-cart .store-cart-page-panel-coupon .store-cart-page-coupon-input:focus,
body.woocommerce-cart .store-cart-page-panel-coupon .store-checkout-coupon-box__input:focus {
    outline: none;
    border-color: var(--store-color-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

body.woocommerce-cart .store-cart-page-panel-coupon .store-cart-page-coupon-button,
body.woocommerce-cart .store-cart-page-panel-coupon .store-checkout-coupon-box__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
    min-height: 48px;
    min-width: 140px;
    padding: 0 18px;
    border-radius: 16px !important;
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%) !important;
    color: #ffffff !important;
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(29, 78, 216, 0.22) !important;
    -webkit-appearance: none;
    appearance: none;
}

body.woocommerce-cart .store-cart-page-panel-coupon .store-cart-page-coupon-button:hover,
body.woocommerce-cart .store-cart-page-panel-coupon .store-checkout-coupon-box__button:hover {
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(29, 78, 216, 0.28) !important;
    filter: brightness(1.02);
}

.store-cart-page-coupon-help {
    margin: 0;
    color: var(--store-color-text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.store-cart-page-social {
    display: flex;
    align-items: center;
    gap: var(--store-space-3);
    flex-wrap: wrap;
}

.store-cart-page-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(29, 78, 216, 0.16);
    border-radius: 14px;
    background: var(--store-color-surface-soft);
    color: #1d4ed8;
    box-shadow: 0 10px 22px rgba(29, 78, 216, 0.08);
    transition:
        transform var(--store-transition-fast),
        box-shadow var(--store-transition-fast),
        background-color var(--store-transition-fast),
        color var(--store-transition-fast);
}

.store-cart-page-social-link:hover,
.store-cart-page-social-link:focus-visible {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
    color: var(--store-color-white);
    box-shadow: 0 14px 28px rgba(29, 78, 216, 0.2);
    transform: translateY(-1px);
}

.store-cart-page-social-link:focus-visible {
    outline: none;
}

.store-cart-page-social-link svg {
    width: 20px;
    height: 20px;
}

.store-cart-page-summary-rows {
    display: flex;
    flex-direction: column;
    gap: var(--store-space-4);
}

.store-cart-page-summary-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--store-space-5);
}

.store-cart-page-summary-row.is-total {
    margin-top: var(--store-space-2);
    padding-top: var(--store-space-5);
    border-top: 1px solid var(--store-color-border-strong);
}

.store-cart-page-summary-label {
    color: var(--store-color-text-muted);
    font-size: 0.92rem;
    line-height: 1.4;
}

.store-cart-page-summary-value,
.store-cart-page-summary-value .amount {
    color: var(--store-color-price);
    font-size: 0.98rem;
    font-weight: 700;
    text-align: right;
}

.store-cart-page-summary-row.is-discount .store-cart-page-summary-value,
.store-cart-page-summary-row.is-discount .store-cart-page-summary-value .amount {
    color: #15803d;
}

html[data-store-theme="dark"] .store-cart-page-summary-row.is-discount .store-cart-page-summary-label,
html[data-store-theme="dark"] .store-cart-page-summary-row.is-discount .store-cart-page-summary-value,
html[data-store-theme="dark"] .store-cart-page-summary-row.is-discount .store-cart-page-summary-value .amount {
    color: #86efac;
    -webkit-text-fill-color: currentColor;
}

.store-cart-page-summary-value ins {
    text-decoration: none;
}

.store-cart-page-actions {
    margin-top: auto;
}

.store-cart-page-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--store-space-6);
    padding: var(--store-space-11) var(--store-space-8);
    text-align: center;
    background: var(--store-color-surface);
}

.store-cart-page-empty-state .store-side-cart-empty {
    padding: 0;
}

.store-cart-page.is-loading .store-cart-page-content,
.store-cart-page.is-loading .store-cart-page-notices {
    opacity: 0.6;
    transition: opacity var(--store-transition-fast);
}
