/* Site cart */

:root {
    --cart-bg: #ffffff;
    --cart-surface: #ffffff;
    --cart-surface-soft: #f5f5f5;
    --cart-text: #111111;
    --cart-muted: #777;
    --cart-line: #dddddd;
    --cart-strong-line: #cfcfcf;
    --cart-accent: #ff003c;
    --cart-accent-text: #ffffff;
    --cart-button-bg: #111111;
    --cart-button-text: #ffffff;
    --cart-disabled-bg: #eeeeee;
    --cart-disabled-text: #777777;
}

.site-cart {
    position: fixed;
    inset: 0;
    z-index: 160;
    pointer-events: none;
}

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

.site-cart__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 8, 0.62);
    opacity: 0;
    transition: opacity 0.24s ease;
}

.site-cart.is-open .site-cart__backdrop {
    opacity: 1;
}

.site-cart__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(420px, 100vw);
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--cart-surface);
    color: var(--cart-text);
    box-shadow: -18px 0 48px rgba(0, 0, 0, 0.28);
    transform: translateX(100%);
    transition: transform 0.24s ease;
}

.site-cart.is-open .site-cart__panel {
    transform: translateX(0);
}

.site-cart__header,
.site-cart__footer {
    background: var(--cart-surface);
}

.site-cart__footer[hidden],
.site-cart__free-shipping[hidden] {
    display: none !important;
}

.site-cart__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 20px;
    border-bottom: 1px solid var(--cart-line);
}

.site-cart__eyebrow {
    margin: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cart-muted);
}

.site-cart__header h2 {
    margin: 0;
    color: var(--cart-text);
    font-size: 18px;
    font-weight: 800;
}

.site-cart__close {
    width: 30px;
    height: 30px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--cart-line);
    border-radius: 999px;
    background: var(--cart-surface-soft);
    color: var(--cart-text);
    cursor: pointer;
}

.site-cart__items {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    background: var(--cart-bg);
    overflow-y: auto;
}

.site-cart__empty {
    height: 100%;
    padding: 46px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--cart-muted);
    text-align: center;
}

.site-cart__empty-icon {
    width: 74px;
    height: 74px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 18px;
    border: 1px solid var(--cart-line);
    border-radius: 999px;
    background: var(--cart-surface);
    color: var(--cart-accent);
    font-size: 34px;
}

.site-cart__empty strong,
.site-cart__empty p {
    display: block;
    margin: 0;
}

.site-cart__empty strong {
    color: var(--cart-text);
    font-size: 17px;
}

.site-cart__empty p {
    max-width: 260px;
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.45;
}

.site-cart__store-group {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: transparent;
    padding-top: 0;
}

.site-cart__store-header {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #cfcfcf;
    border-bottom: 1px solid var(--cart-line);
}

.site-cart__store-logo {
    width: 100%;
    height: 50px;
    object-fit: contain;
    padding: 9px 18px;
    background: transparent;
}

.site-cart__store-logo--empty {
    display: inline-grid;
    place-items: center;
    color: #ffffff;
}

.site-cart__store-name {
    color: var(--cart-text);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.site-cart__item {
    position: relative;
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr) auto;
    align-items: start;
    gap: 11px;
    padding: 13px 14px;
    border-bottom: 1px solid var(--cart-line);
    background: var(--cart-bg);
    transition: opacity 0.18s ease;
}

.site-cart__item::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
}

.site-cart__item.is-updating::after {
    animation: siteCartItemGlow 1.05s ease-out;
}

.site-cart__item.is-removing {
    overflow: hidden;
    animation: siteCartItemCollapse 0.28s ease forwards;
}

.site-cart__item.is-busy {
    pointer-events: none;
}

.site-cart__item-image {
    width: 60px;
    height: 70px;
    padding: 7px;
    object-fit: contain;
    border: 1px solid var(--cart-line);
    border-radius: 6px;
    background: var(--cart-surface-soft);
}

.site-cart__item-image--empty {
    display: grid;
    place-items: center;
    color: var(--cart-muted);
    font-size: 12px;
    text-align: center;
    border: 1px solid var(--cart-line);
}

.site-cart__item-image--logo {
    background: #111111;
    object-fit: contain;
    padding: 10px;
}

.site-cart__item-body {
    min-width: 0;
}

.site-cart__item-main {
    min-width: 0;
    display: block;
}

.site-cart__item-title {
    display: block;
    margin: 1px 0 4px;
    color: var(--cart-text);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.15;
    font-weight: 900;
}

.site-cart__item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 9px;
    margin: 0;
    color: var(--cart-muted);
    font-size: 12px;
    line-height: 1.2;
}

.site-cart__item-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.site-cart__meta-label {
    font-size: inherit;
    font-weight: 600;
    font-size: 13px;
}

.site-cart__color-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 1px solid var(--cart-strong-line);
    background: var(--site-cart-color, transparent);
}

.site-cart__item-price {
    display: none;
}

.site-cart__item-price-block {
    min-width: 76px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1px;
    padding-top: 1px;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.site-cart__item-old-price {
    color: var(--cart-accent);
    text-decoration: line-through;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
}

.site-cart__item-final-price {
    color: var(--cart-text);
    font-size: 15px;
    line-height: 1.15;
    font-weight: 700;
}

.site-cart__item-final-price::before {
    display: none;
}

.site-cart__item-promo {
    display: none;
}

.site-cart__item-note {
    display: none;
}

.site-cart__quantity-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-width: 0;
    margin-top: 3px;
}

.site-cart__quantity-control {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 1px;
    padding: 2px;
    border: 1px solid var(--cart-line);
    border-radius: 999px;
    background: var(--cart-surface-soft);
}

.site-cart__quantity-button {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    display: inline-grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: var(--cart-surface);
    color: var(--cart-text);
    font-size: 11px;
    line-height: 1;
    cursor: pointer;
}

.site-cart__quantity-button i {
    font-size: 10px;
}

.site-cart__quantity-value {
    min-width: 22px;
    flex: 0 0 22px;
    text-align: center;
    color: var(--cart-text);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.site-cart__item-bottom,
.site-cart__item-actions,
.site-cart__item-remove {
    display: none;
}

.site-cart__footer {
    margin-top: auto;
    flex: 0 0 auto;
    display: grid;
    gap: 10px;
    padding: 16px;
    background: var(--cart-surface-soft);
}

.site-cart__savings {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 18px;
    color: var(--cart-accent);
    font-size: 14px;
    line-height: 1.2;
}

.site-cart__savings span,
.site-cart__savings strong {
    color: var(--cart-accent);
}

.site-cart__savings strong {
    font-size: 14px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

.site-cart__summary {
    display: block;
    padding: 0;
    overflow: hidden;
}

/* ---- */

.site-cart__free-shipping {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #e3e3e3;
}

.site-cart__free-shipping[hidden],
.site-cart__footer[hidden] {
    display: none !important;
}

.site-cart__free-shipping-icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: var(--artist-section-accent, var(--artist-accent, #e51b23));
    font-size: 13px;
    flex: 0 0 auto;
}

.site-cart__free-shipping-content {
    min-width: 0;
}

.site-cart__free-shipping-text {
    margin: 0 0 2px;
    color: #111111;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
}

.site-cart__free-shipping-track {
    width: 100%;
    height: 5px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
}

.site-cart__free-shipping-bar {
    display: block;
    width: 0%;
    height: 100%;
    min-width: 0;
    border-radius: inherit;
    background: #ff8080;
    transition: width 180ms ease;
}

.site-cart__free-shipping.is-complete .site-cart__free-shipping-text {
    font-weight: 700;
}

.site-cart__free-shipping.is-complete .site-cart__free-shipping-bar {
    width: 100%;
}

.site-cart__summary-row--shipping strong.is-free {
    color: #95c17f;
    font-weight: 900;
}

/* ---- */

.site-cart__suggestion-card {
    position: relative;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 8px 34px 8px 12px;
    background: #ffffff;
    color: #111111;
}

.site-cart__suggestion-media {
    width: 48px;
    height: 48px;
}

.site-cart__suggestion-image {
    width: 48px;
    height: 48px;
    border-radius: 9px;
    overflow: hidden;
    background: #f3ede3;
    display: block;
    object-fit: cover;
}

.site-cart__suggestion-image--empty {
    display: grid;
    place-items: center;
    color: #777777;
}

.site-cart__suggestion-body {
    min-width: 0;
    display: grid;
    gap: 2px;
    align-content: center;
}

.site-cart__suggestion-eyebrow {
    margin: 0;
    color: #6a6a6a;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.1;
}

.site-cart__suggestion-store {
    color: #666666;
    font-size: 11px;
    line-height: 1.1;
    margin: 0;
}

.site-cart__suggestion-title {
    color: #111111;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.1;
}

.site-cart__suggestion-side {
    display: grid;
    grid-template-columns: auto 36px;
    align-items: end;
    align-self: end;
    gap: 12px;
    padding-right: 2px;
}

.site-cart__suggestion-price {
    color: var(--artist-section-accent, var(--artist-accent, #e51b23));
    font-size: 16px;
    font-weight: 900;
    line-height: 32px;
    white-space: nowrap;
}

.site-cart__suggestion-meta {
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px 6px;
    margin-top: 1px;
}

.site-cart__suggestion-old-price {
    color: #6c6c6c;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    text-decoration: line-through;
    white-space: nowrap;
}

.site-cart__suggestion-promo {
    display: inline-flex;
    align-items: center;
    min-height: 15px;
    padding: 0 5px;
    border-radius: 999px;
    background: rgba(229, 27, 35, 0.12);
    color: #b01218;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.site-cart__suggestion-button {
    width: 36px;
    height: 32px;
    min-height: 32px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: #111111;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.site-cart__suggestion-button:hover {
    background: #000000;
}

.site-cart__suggestion-button i {
    font-size: 13px;
    margin: 0;
}

.site-cart__suggestion-close {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #d8d8d8;
    color: #555555;
    cursor: pointer;
    z-index: 2;
}

.site-cart__suggestion-close i {
    font-size: 11px;
}

.site-cart__suggestion-close:hover {
    background: #cfcfcf;
    color: #111111;
}

@media (max-width: 520px) {
    .site-cart__free-shipping-suggestion {
        padding: 0 18px 14px;
    }

    .site-cart__suggestion-card {
        grid-template-columns: 48px minmax(0, 1fr) auto;
        gap: 9px;
        padding: 8px 34px 8px 10px;
    }

    .site-cart__suggestion-side {
        grid-template-columns: auto 36px;
        gap: 8px;
    }

    .site-cart__suggestion-price {
        font-size: 15px;
    }
}

.site-cart__summary-row--shipping strong.is-free {
    color: #95c17f;
    font-weight: 900;
}

.site-cart__summary-lines {
    display: grid;
    gap: 4px;
}

.site-cart__summary-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    min-height: 18px;
    color: var(--cart-muted);
    font-size: 14px;
    line-height: 1.2;
}

.site-cart__summary-row span {
    color: inherit;
}

.site-cart__summary-row strong {
    color: var(--cart-text);
    font-size: 14px;
    font-weight: 500;
    font-variant-numeric: tabular-nums;
}

.site-cart__summary-row--saving {
    color: var(--cart-accent);
}

.site-cart__summary-row--saving span,
.site-cart__summary-row--saving strong {
    color: var(--cart-accent);
}

.site-cart__postal-row {
    width: 100%;
    margin: 0;
}

.site-cart__postal-entry {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.site-cart__postal-entry[hidden],
.site-cart__postal-calculating[hidden],
.site-cart__postal-spinner[hidden] {
    display: none !important;
}

.site-cart__postal-copy {
    min-width: 0;
    flex: 1 1 auto;
    color: var(--cart-muted);
    font-size: 14px;
    line-height: 1.25;
}

.site-cart__postal-copy span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--cart-muted);
}

.site-cart__postal-copy i {
    flex: 0 0 auto;
    font-size: 13px;
}

.site-cart__postal-actions {
    position: relative;
    width: 104px;
    flex: 0 0 104px;
    display: flex;
    align-items: center;
}

.site-cart__postal-actions[hidden] {
    display: none !important;
}

.site-cart__postal-input {
    width: 100%;
    height: 34px;
    padding: 6px 10px;
    border: 1px solid var(--cart-line);
    border-radius: 6px;
    background: var(--cart-surface);
    color: var(--cart-text);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-align: right;
    font-variant-numeric: tabular-nums;
    transition:
        border-color 160ms ease,
        box-shadow 160ms ease,
        padding-left 160ms ease;
}

.site-cart__postal-input::placeholder {
    color: var(--cart-muted);
    font-size: 12px;
    font-weight: 400;
}

.site-cart__postal-input:focus {
    outline: 0;
    border-color: var(--cart-strong-line);
    box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.05);
}

.site-cart__postal-spinner {
    position: absolute;
    left: 10px;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--cart-muted);
    font-size: 12px;
    line-height: 1;
    transform: translateY(-50%);
    pointer-events: none;
}

.site-cart__postal-row.is-validating .site-cart__postal-input {
    padding-left: 30px;
}

.site-cart__postal-row.is-invalid .site-cart__postal-input,
.site-cart__postal-input.is-invalid {
    border-color: var(--cart-accent);
    box-shadow: 0 0 0 2px rgba(255, 0, 60, 0.08);
}

.site-cart__postal-calculating {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    color: var(--cart-muted);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    white-space: nowrap;
}

.site-cart__postal-calculating i {
    flex: 0 0 auto;
    color: var(--cart-text);
    font-size: 12px;
}

.site-cart__postal-submit,
.site-cart__postal-message {
    display: none !important;
}

.site-cart__summary-row--shipping {
    margin-top: 0;
}

.site-cart__summary-row--shipping span,
.site-cart__summary-row--shipping strong {
    color: var(--cart-text);
}

.site-cart__shipping-cp {
    color: var(--cart-text);
    font-weight: 800;
}

.site-cart__shipping-remove {
    display: inline;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
}

.site-cart__summary-row--total {
    margin-top: 2px;
    margin-bottom: 6px;
    padding-top: 8px;
    border-top: 1px solid var(--cart-line);
}

.site-cart__summary-row--total span,
.site-cart__summary-row--total strong {
    color: var(--cart-text);
    font-size: 17px;
    font-weight: 800;
}

.site-cart__powered {
    margin: 0;
    display: flex;
    justify-content: center;
    margin-top: 6px;
}

.site-cart__checkout-disabled {
    min-height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-decoration: none;
}

.site-cart__checkout-disabled.is-disabled {
    background: var(--cart-disabled-bg);
    color: var(--cart-disabled-text);
    pointer-events: none;
}

.site-cart__checkout-disabled:not(.is-disabled) {
    background: var(--cart-button-bg);
    color: var(--cart-button-text);
}

.site-cart__postal-row[hidden],
.site-cart__postal-entry[hidden],
.site-cart__postal-calculating[hidden],
.site-cart__postal-spinner[hidden],
.site-cart__summary-row[hidden],
.site-cart__savings[hidden],
.site-cart__summary-row--saving[hidden] {
    display: none !important;
}

[data-cart-shipping].is-muted {
    color: var(--cart-muted);
    font-weight: 600;
}

.site-cart-open {
    overflow: hidden;
}

/* Cart postal state animations */

.site-cart__postal-row:not([hidden]) {
    animation: siteCartPostalIn 0.22s ease-out both;
}

.site-cart__summary-row--shipping:not([hidden]) {
    animation: siteCartShippingIn 0.24s ease-out both;
}

@keyframes siteCartPostalIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

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

@keyframes siteCartShippingIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

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

@keyframes siteCartItemGlow {
    0% {
        opacity: 0;
        box-shadow: inset 0 0 0 0 rgba(229, 27, 35, 0);
    }

    30% {
        opacity: 1;
        box-shadow: inset 0 0 0 2px rgba(229, 27, 35, 0.42);
    }

    100% {
        opacity: 0;
        box-shadow: inset 0 0 0 2px rgba(229, 27, 35, 0);
    }
}

@keyframes siteCartItemCollapse {
    from {
        opacity: 1;
        max-height: 190px;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        max-height: 0;
        transform: translateX(12px);
        padding-top: 0;
        padding-bottom: 0;
        border-bottom-width: 0;
    }
}

.product-show__cart-feedback {
    margin: 0;
    display: flex;
    font-size: 14px;
    line-height: 1.5;
    border: 1px solid var(--artist-section-accent);
    padding: 8px 12px;
    border-radius: 8px;
    transition: opacity 260ms ease, transform 260ms ease;
}

.product-show__cart-feedback[hidden] {
    display: none;
}

.product-show__cart-feedback i {
    flex: 0 0 auto;
}

.product-show__cart-feedback span {
    min-width: 0;
}

.product-show__cart-feedback.is-fading-out {
    opacity: 0;
    transform: translateY(-4px);
}

.artist-store--template-visual .product-show__cart-feedback {
    border-radius: 0px;
}

.product-show__cart-feedback.is-error {
    color: var(--artist-section-accent);
}

.product-show__cart-feedback.is-success {
    color: var(--artist-section-accent);
}

@media (max-width: 720px) {
    .site-cart__panel {
        width: 100vw;
    }

    .site-cart__header {
        padding: 20px 20px;
    }

    .site-cart__footer {
        padding: 16px 20px 20px;
    }

    .site-cart__item {
        grid-template-columns: 60px minmax(0, 1fr) auto;
        gap: 11px;
        padding: 13px 20px;
    }

    .site-cart__item-image {
        width: 60px;
        height: 70px;
    }

    .site-cart__item-price-block {
        min-width: 74px;
        align-items: flex-end;
        text-align: right;
    }

    .site-cart__postal-entry {
        flex-direction: row;
        align-items: center;
    }

    .site-cart__postal-actions {
        width: 132px;
        flex-basis: 132px;
    }

    .site-cart__postal-input {
        width: 100%;
    }
}

/* Checkout */

.checkout-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 34px 18px 72px;
}

.checkout-progress {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 0 auto 28px;
}

.checkout-progress__item {
    min-width: 136px;
    min-height: 44px;
    padding: 8px 18px 8px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    border: 2px solid #d7d7d7;
    border-radius: 999px;
    background: #ffffff;
    color: #777777;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.checkout-progress__item + .checkout-progress__item {
    margin-left: 36px;
}

.checkout-progress__item + .checkout-progress__item::before {
    content: "";
    width: 36px;
    height: 2px;
    position: absolute;
    right: 101%;
    top: 50%;
    transform: translateY(-50%);
    background: #d7d7d7;
}

.checkout-progress__item span {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 999px;
    background: #e9e9e9;
    color: #777777;
    font-size: 14px;
    font-weight: 900;
}

.checkout-progress__item strong {
    color: inherit;
    font-size: 14px;
    font-weight: 900;
}

.checkout-progress__item.is-active {
    border-color: #111111;
    background: var(--cart-accent);
    color: #ffffff;
}

.checkout-progress__item.is-active span {
    background: #FFF;
    color: #111111;
}

.checkout-progress__item.is-complete {
    border-color: #DDD;
    background: #ffffff;
    color: #DDD;
}

.checkout-progress__item.is-complete span {
    background: #DDD;
    color: #ffffff;
}

.checkout-progress__item.is-complete + .checkout-progress__item::before,
.checkout-progress__item.is-active + .checkout-progress__item::before {
    background: #DDD;
}

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

.checkout-main {
    min-width: 0;
}

.checkout-summary {
    position: sticky;
    top: 22px;
}

.checkout-card {
    padding: 28px;
    border: 1px solid #e4e4e4;
    background: #ffffff;
}

.checkout-summary__card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checkout-summary__title,
.checkout-section h1,
.checkout-section h2 {
    margin: 0 0 8px;
    color: #111111;
}

.checkout-shipping-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    min-height: 62px;
}

.checkout-shipping-loader__spinner {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border: 3px solid rgba(255, 26, 80, 0.18);
    border-top-color: #ff1a50;
    border-radius: 50%;
    animation: checkout-shipping-spinner 0.8s linear infinite;
}

.checkout-shipping-loader__content {
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-align: left;
}

.checkout-shipping-loader__content strong {
    color: #242424;
    font-size: 14px;
    line-height: 1.25;
}

.checkout-shipping-loader__content small {
    color: #737373;
    font-size: 12px;
    line-height: 1.35;
}

.checkout-shipping-notice-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
}

.checkout-shipping-loader[hidden],
.checkout-shipping-notice-content[hidden] {
    display: none !important;
}

.checkout-shipping-options {
    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity 280ms ease,
        transform 280ms ease;
}

.checkout-shipping-options.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.checkout-shipping-options .checkout-radio-card {
    opacity: 0;
    transform: translateY(7px);
    transition:
        opacity 260ms ease,
        transform 260ms ease,
        border-color 180ms ease,
        background-color 180ms ease;
}

.checkout-shipping-options.is-visible .checkout-radio-card {
    opacity: 1;
    transform: translateY(0);
}

.checkout-shipping-options.is-visible .checkout-radio-card:nth-child(2) {
    transition-delay: 45ms;
}

.checkout-shipping-options.is-visible .checkout-radio-card:nth-child(3) {
    transition-delay: 90ms;
}

@keyframes checkout-shipping-spinner {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .checkout-shipping-loader__spinner {
        animation-duration: 1.5s;
    }

    .checkout-shipping-options,
    .checkout-shipping-options .checkout-radio-card {
        transition: none;
        transform: none;
    }
}

.checkout-section + .checkout-section {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #ededed;
}

.checkout-section p,
.checkout-summary-inline p,
.checkout-muted {
    margin: 0;
    color: #666666;
}

.checkout-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.checkout-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.checkout-field + .checkout-field,
.checkout-grid,
.checkout-check,
.checkout-radio-card + .checkout-radio-card,
.checkout-actions {
    margin-top: 16px;
}

.checkout-field label,
.checkout-section h2 {
    font-weight: 700;
}

.checkout-input--textarea {
    min-height: 128px;
    padding: 12px 14px;
    resize: vertical;
}

.checkout-input:focus {
    outline: none;
    border-color: #111111;
}

.checkout-grid {
    display: grid;
    gap: 16px;
}

.checkout-field--billing-phone {
    margin-top: 16px;
}

.checkout-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkout-grid .checkout-field + .checkout-field {
    margin-top: 0;
}

.checkout-card .checkout-grid.checkout-grid--address {
    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(190px, 0.9fr)
        minmax(110px, 0.55fr);
}

.checkout-grid--street {
    grid-template-columns: minmax(0, 1fr) 180px;
}

.checkout-check {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333333;
}

.checkout-radio-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border: 1px solid #dddddd;
    cursor: pointer;
}

.checkout-radio-card input {
    margin: 0;
}

.checkout-radio-card__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.checkout-radio-card__body strong {
    color: #111111;
}

.checkout-radio-card__body small {
    color: #666666;
    line-height: 1.45;
}

.checkout-radio-card__price {
    margin-left: auto;
    font-weight: 700;
    color: #111111;
}

.checkout-radio-card.is-selected {
    border-color: #111111;
    box-shadow: 0 0 0 1px #111111 inset;
}

.checkout-button {
    min-height: 50px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #111111;
    background: #111111;
    color: #ffffff;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
}

.checkout-button i {
    margin-left: 8px;
}

.checkout-button--secondary {
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #111111;
    border-radius: var(--radius-sm);
    background: #111111;
    color: #ffffff;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    background: #ffffff;
    color: #111111;
}

.checkout-button[disabled] {
    opacity: 0.48;
    cursor: not-allowed;
}

.checkout-link-button,
.checkout-coupon__remove {
    padding: 0;
    border: 0;
    background: transparent;
    color: #111111;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
}

[data-checkout-summary-shipping].is-free,
[data-shipping-option-price].is-free {
    background: linear-gradient(180deg, #b7df9f 0%, #7fbd63 45%, #3f8f35 100%);
    color: #ffffff;
    font-weight: 700;
    padding: 7px 14px;
    font-size: 11px;
    border-radius: 99px;
    border: 1px solid #b7df9f;
    letter-spacing: 0.5pt;
}

.checkout-coupon__details summary {
    cursor: pointer;
    font-weight: 700;
    color: #111111;
}

.checkout-coupon__form {
    display: flex;
    gap: 10px;
}

.checkout-coupon__applied {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px;
    border: 1px solid #dddddd;
    background: #fafafa;
}

.checkout-coupon__applied strong,
.checkout-coupon__applied small {
    display: block;
}

.checkout-coupon__applied small {
    margin-top: 4px;
    color: #666666;
}

.checkout-summary__row--saving strong,
.checkout-summary__row--discount strong {
    color: #e51b23;
}

.checkout-coupon__applied-text {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.checkout-coupon__applied-text strong,
.checkout-coupon__applied-text small {
    display: inline;
}

.checkout-alert[data-checkout-flash-auto-hide] {
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.checkout-alert[data-checkout-flash-auto-hide].is-hiding {
    opacity: 0;
    transform: translateY(-4px);
}

.checkout-summary__row-note {
    display: inline;
    margin-left: 6px;
    color: inherit;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2pt;
}

.checkout-summary__row--saving span,
.checkout-summary__row--saving strong,
.checkout-summary__row--saving [data-checkout-summary-savings],
.checkout-summary__row--discount span,
.checkout-summary__row--discount strong,
.checkout-summary__row--discount [data-checkout-summary-discount] {
    color: #e51b23;
}

.checkout-alert {
    margin-bottom: 10px;
    padding: 8px 12px;
    border: 1px solid #e4e4e4;
    background: #fafafa;
    color: #111111;
}

.checkout-alert--error,
.checkout-error {
    color: #c53030;
}

.checkout-alert--success {
    color: #1f7a3f;
}

.checkout-error {
    font-size: 13px;
    line-height: 1.45;
}

.checkout-warning {
    display: block;
    margin-top: 6px;
    color: #b26a00;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.checkout-summary__items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.checkout-summary__item {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 12px;
}

.checkout-summary__item-media img,
.checkout-summary__item-placeholder {
    width: 74px;
    display: block;
    object-fit: contain;
    border: 1px solid #e4e4e4;
    background: #f7f7f7;
}

.checkout-summary__item-placeholder {
    display: grid;
    place-items: center;
    color: #999999;
}

.checkout-summary__item-body strong {
    display: block;
    color: #111111;
}

.checkout-summary__item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    margin-top: 6px;
    color: #666666;
    font-size: 13px;
}

.checkout-summary__item-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkout-summary__old-price {
    color: #999999;
    text-decoration: line-through;
    font-size: 13px;
}

.checkout-summary__totals {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-top: 1px solid #e9e9e9;
}

.checkout-summary__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #666666;
}

.checkout-summary__row strong {
    color: #111111;
}

.checkout-summary__row--discount,
.checkout-summary__row--discount strong {
    color: #c53030;
}

.checkout-summary__row--total span,
.checkout-summary__row--total strong {
    color: #111111;
    font-size: 18px;
}

.checkout-input-action {
    position: relative;
}

.checkout-input-action .checkout-input {
    padding-right: 42px;
}

.checkout-input-clear {
    position: absolute;
    top: 50%;
    right: 12px;
    width: 80px;
    height: 24px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: currentColor;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    opacity: 0.55;
}

.checkout-input-clear:hover {
    opacity: 1;
}

.checkout-approval-hero {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.checkout-approval-hero__icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    font-size: 18px;
}

.checkout-approval-hero h1 {
    margin-bottom: 6px;
}

.checkout-summary__item {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: start;
}

.checkout-summary__item-body {
    min-width: 0;
}

.checkout-summary__item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    margin-bottom: 8px;
    color: #666666;
    font-size: 12px;
    line-height: 1.3;
}

.checkout-summary__item-meta b {
    color: #666666;
    font-weight: 800;
}

.checkout-summary__color-dot {
    width: 7px;
    height: 7px;
    display: inline-block;
    margin-left: 4px;
    border-radius: 999px;
    background: var(--checkout-summary-color);
    vertical-align: middle;
}

.checkout-summary__quantity-row {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #111111;
    font-size: 13px;
    font-weight: 800;
}

.checkout-summary__quantity-row.has-actions {
    justify-content: space-between;
}

.checkout-summary__quantity-row.is-readonly {
    justify-content: flex-start;
}

.checkout-summary__quantity-readonly {
    color: #111111;
    font-size: 13px;
    font-weight: 900;
}

.checkout-summary__quantity-control {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 2px 7px;
    border: 1px solid #e2e2e2;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.checkout-summary__quantity-button {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #111111;
    font: inherit;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
}

.checkout-summary__quantity-button:disabled {
    opacity: 0.45;
    cursor: wait;
}

.checkout-summary__quantity-value {
    min-width: 12px;
    text-align: center;
    font-size: 13px;
    font-weight: 900;
}

.checkout-summary__item-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
    min-width: 82px;
    color: #111111;
    text-align: right;
    font-size: 14px;
}

.checkout-summary__item-price strong {
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
}

.checkout-summary__item-price small {
    color: var(--cart-accent);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.checkout-summary__old-price {
    color: #999999;
    font-size: 12px;
    font-weight: 700;
    text-decoration: line-through;
    white-space: nowrap;
}

.checkout-summary__item.is-busy {
    opacity: 0.55;
    pointer-events: none;
}

[data-billing-fields] {
    margin-top: 22px;
}

[data-billing-fields] > .checkout-field,
[data-billing-fields] > .checkout-grid,
[data-billing-fields] > [data-billing-province-select-wrap],
[data-billing-fields] > [data-billing-province-input-wrap] {
    margin-top: 18px;
}

[data-billing-fields] > .checkout-field:first-child {
    margin-top: 0;
}

.checkout-grid .checkout-field + .checkout-field {
    margin-top: 0;
}

.checkout-grid--address {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) 150px 170px;
    gap: 16px;
    align-items: start;
}

.checkout-grid.checkout-billing-document-grid {
    grid-template-columns: 150px minmax(0, 1fr);
    align-items: end;
}

.checkout-billing-document-grid .checkout-field--document-number {
    width: 100%;
    min-width: 0;
}

.checkout-billing-document-grid .checkout-input-action--invoice {
    width: 100%;
}

.checkout-billing-document-grid .checkout-field--document-number .checkout-input {
    width: 100%;
}

@media (max-width: 720px) {
    .checkout-billing-document-grid {
        grid-template-columns: 1fr;
    }

    .checkout-field--document {
        width: 100%;
        max-width: none;
    }

    .checkout-field--billing-business-name {
        margin-top: 10px;
    }
}

.checkout-field--document {
    width: 150px;
    max-width: 150px;
}

.checkout-field--document-number {
    min-width: 0;
}

.checkout-field--billing-business-name {
    margin-top: 12px;
}

.checkout-field--billing-business-name[hidden] {
    display: none;
}

.checkout-input-action--numberless {
    position: relative;
}

.checkout-input-action--numberless .checkout-input {
    padding-right: 62px;
}

.checkout-input-action--invoice .checkout-input {
    padding-right: 112px;
}

.checkout-input-check {
    height: 34px;
    padding: 0 10px;
    position: absolute;
    top: 50%;
    right: 8px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transform: translateY(-50%);
    color: #111111;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
}

.checkout-input-check input {
    width: 13px;
    height: 13px;
    margin: 0;
}

.checkout-input-check--invoice {
    gap: 6px;
}

.checkout-input-check.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.checkout-field--billing-business-name {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 10px;
}

.checkout-field--billing-business-name[hidden] {
    display: none;
}

.checkout-field__label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.checkout-field__label-row small {
    color: #777777;
    font-size: 12px;
    font-weight: 700;
}

.checkout-field--notes {
    margin-top: 22px;
}

.checkout-input--textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: 1.45;
}

[data-billing-fields] {
    margin-top: 22px;
}

[data-billing-fields] > .checkout-field,
[data-billing-fields] > .checkout-grid {
    margin-top: 18px;
}

@media (max-width: 720px) {
    .checkout-billing-document-grid {
        grid-template-columns: 1fr;
    }

    .checkout-field--document {
        width: 100%;
        max-width: none;
    }
}

[data-billing-fields] > .checkout-field:first-child,
[data-billing-fields] > .checkout-grid:first-child {
    margin-top: 0;
}

.checkout-grid .checkout-field + .checkout-field {
    margin-top: 0;
}

.checkout-autocomplete {
    position: relative;
}

.checkout-autocomplete__list {
    position: absolute;
    z-index: 40;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    max-height: 153px;
    overflow-y: auto;
    border: 1px solid #d7d7d7;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(17, 17, 17, 0.12);
}

.checkout-autocomplete__list[hidden] {
    display: none !important;
}

.checkout-autocomplete__option {
    width: 100%;
    min-height: 38px;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border: 0;
    border-bottom: 1px solid #ededed;
    background: #ffffff;
    color: #111111;
    font: inherit;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
}

.checkout-autocomplete__option:hover {
    background: #f6f6f6;
}

.checkout-autocomplete__option:last-child {
    border-bottom: 0;
}

.checkout-autocomplete__empty {
    padding: 12px;
    color: #777777;
    font-size: 13px;
    font-weight: 700;
}

.checkout-field.is-disabled > .checkout-field__label-row label,
.checkout-field.is-disabled > label {
    color: #9a9a9a;
}

.checkout-field.is-disabled .checkout-input,
.checkout-input:disabled,
.checkout-input[disabled] {
    border-color: #e0e0e0;
    background: #f1f1f1;
    color: #8a8a8a;
    cursor: not-allowed;
    opacity: 1;
}

.checkout-field.is-disabled .checkout-input::placeholder,
.checkout-input:disabled::placeholder {
    color: #9a9a9a;
}

@media (max-width: 980px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-grid--address {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        position: static;
    }
}

@media (max-width: 720px) {
    .checkout-progress {
        grid-template-columns: 1fr;
    }

    .checkout-grid--two,
    .checkout-grid--street {
        grid-template-columns: 1fr;
    }

    .checkout-card {
        padding: 22px 18px;
    }

    .checkout-section__head,
    .checkout-coupon__form,
    .checkout-coupon__applied {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Checkout V1 visual alignment */

body.is-checkout-page,
body.is-checkout-page .page-shell,
body.is-checkout-page main.checkout-page {
    background: #f6f6f6;
    color: #111111;
}

body.is-checkout-page .site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: none;
}

body.is-checkout-page .site-header-container {
    max-width: 1180px;
    min-height: 84px;
}

body.is-checkout-page .brand {
    color: #111111;
}

body.is-checkout-page .brand__mark {
    background: #111111;
    color: #ffffff;
}

body.is-checkout-page .brand__meta strong,
body.is-checkout-page .brand__meta small {
    color: #111111;
}

body.is-checkout-page .brand__meta small {
    opacity: 0.68;
}

.checkout-page,
.checkout-panel,
.checkout-form {
    --checkout-form-error: #e5481f;
    --checkout-form-error-soft: color-mix(in srgb, var(--checkout-form-error) 10%, transparent);
    --checkout-form-error-border: color-mix(in srgb, var(--checkout-form-error) 70%, transparent);
    --checkout-form-error-text: var(--checkout-form-error);
    --checkout-form-error-bg: color-mix(in srgb, var(--checkout-form-error) 8%, var(--color-white));
    --checkout-form-focus: var(--color-black);
}

.checkout-page {
    background: #f6f6f6;
}

.checkout-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 0 56px;
}

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 500px;
    gap: 16px;
    align-items: start;
}

.checkout-main {
    min-width: 0;
}

.checkout-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(17, 17, 17, 0.04);
    padding: 20px;
}

.checkout-summary {
    position: sticky;
    top: 107px;
    align-self: start;
}

.checkout-summary__card {
    padding: 24px;
}

.checkout-section h1,
.checkout-section h2 {
    margin: 0;
    color: #111111;
}

.checkout-section h1 {
    font-size: clamp(1.6rem, 3vw, 1.6rem);
    margin-bottom: 10px;
}

.checkout-section h1 i {
    font-size: 25px;
    color: var(--cart-accent);
}

.checkout-section h2 {
    font-size: 1.2rem;
    line-height: 1.15;
    margin-bottom: 16px;
}

.checkout-section h2 i {
    color: var(--cart-muted);
    font-size: 1rem;
    margin-right: 8px;
}

.checkout-section > p,
.checkout-muted,
.checkout-summary-inline p {
    color: #666666;
}

.checkout-section > p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.6;
}

.checkout-summary-inline {
    display: grid;
    gap: 8px;
}

.checkout-summary-inline p {
    margin: 0;
    line-height: 1.55;
}

.checkout-summary-inline strong {
    color: #111111;
}

.checkout-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.checkout-pickup-title {
    margin-top: 20px;
}

.checkout-field + .checkout-field {
    margin-top: 18px;
}

.checkout-field label,
.checkout-check span,
.checkout-coupon__details summary {
    color: #111111;
    font-size: 0.93rem;
    font-weight: 600;
}

.checkout-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d7d7d7;
    border-radius: 6px;
    background: #ffffff;
    color: #111111;
    box-shadow: none;
    font-size: 16px;
}

.checkout-input:focus {
    outline: none;
    border-color: #111111;
    box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

.checkout-input--textarea {
    min-height: 120px;
    resize: vertical;
}

.checkout-grid {
    display: grid;
    gap: 18px 16px;
}

.checkout-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkout-grid--street {
    grid-template-columns: minmax(0, 1fr) 170px;
}

.checkout-check {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.checkout-check input {
    width: 16px;
    height: 16px;
    margin: 0;
}

.checkout-check span {
    font-weight: 400;
    font-size: 14px;
}

.checkout-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.checkout-link-button,
.checkout-coupon__remove {
    color: #111111;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.checkout-radio-card {
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border: 2px solid #dddddd;
    border-radius: 14px;
    background: #ffffff;
    transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.checkout-radio-card + .checkout-radio-card {
    margin-top: 8px;
}

.checkout-radio-card input {
    width: 16px;
    height: 16px;
    accent-color: #111111;
}

.checkout-radio-card.is-selected,
.checkout-radio-card:has(input:checked) {
    border-color: var(--cart-accent);
    background: #f8f8f8;
    box-shadow: 0 0 0 1px rgba(17, 17, 17, 0.06) inset;
}

.checkout-field--separated {
    margin-top: 18px;
}

[data-shipping-country-dependent][hidden] {
    display: none !important;
}

[data-shipping-country-unavailable] {
    margin-top: 14px;
}

.checkout-radio-card__price {
    font-variant-numeric: tabular-nums;
}

.checkout-actions {
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid #ededed;
    padding-top: 20px;
    margin-top: 30px;
}

.checkout-check--inline-field {
    margin-top: 6px;
}

.checkout-button {
    min-height: 52px;
    width: auto;
    padding: 0 24px;
    border-radius: 13px;
    border-color: #111111;
    background: #111111;
    color: #ffffff;
    letter-spacing: 0.12em;
    transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, opacity 160ms ease;
}

.checkout-button:hover:not([disabled]) {
    background: #000000;
    border-color: #000000;
}

.checkout-button--secondary {
    background: #ffffff;
    color: #111111;
    border: 1px solid #d7d7d7;
}

.checkout-button--secondary:hover:not([disabled]) {
    background: #f7f7f7;
    border-color: #cfcfcf;
}

.checkout-alert {
    border-radius: var(--radius-sm);
    border: 1px solid #e5e5e5;
    background: #ffffff;
    color: #111111;
    font-size: 12px;
}

.checkout-alert--error {
    border-color: #efcaca;
    background: #fff8f8;
    color: #bb2d2d;
}

.checkout-alert--success {
    border-color: #cfe8d5;
    background: #f7fff9;
    color: #216e39;
}

.checkout-error {
    margin-top: 2px;
    color: #c53030;
}

.checkout-summary__title {
    margin: 0;
    padding: 0 0 16px;
    color: #111111;
    font-size: 1.3rem;
    border-bottom: 1px solid #ededed;
}

.checkout-summary__items {
    gap: 0;
}

.checkout-summary__item {
    padding: 10px 0;
    border-bottom: 1px solid #ededed;
}

.checkout-summary__item:first-child {
    padding-top: 0;
}

.checkout-summary__item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.checkout-summary__item-media img,
.checkout-summary__item-placeholder {
    width: 70px;
    height: 80px;
    padding: 6px;
    border-radius: 10px;
    border-color: #e5e5e5;
    background: #f5f5f5;
    transition: border-color 160ms ease;
}

.checkout-summary__item-media img:hover {
    border-color: #cdcdcd;
}

.checkout-summary__item-body strong {
    font-size: 14px;
    line-height: 1.3;
}

.checkout-summary__item-meta {
    margin-top: 5px;
    gap: 4px 10px;
    font-size: 12px;
}

.checkout-summary__item-price strong {
    font-size: 0.98rem;
    font-variant-numeric: tabular-nums;
}

.checkout-summary__old-price {
    font-variant-numeric: tabular-nums;
}

.checkout-summary__item-media a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.checkout-summary__item-name {
    color: inherit;
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
    color: #111111;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 600;
}

a.checkout-summary__item-name:hover {
    text-decoration: underline;
}

.checkout-coupon {
    padding-top: 16px;
    border-top: 1px solid #ededed;
}

.checkout-coupon__details summary {
    list-style: none;
}

.checkout-coupon__details summary i {
    color: var(--cart-accent);
}

.checkout-coupon__details summary::-webkit-details-marker {
    display: none;
}

.checkout-coupon__form {
    align-items: stretch;
}

.checkout-coupon__applied {
    border-radius: var(--radius-sm);
    border-color: #e1e1e1;
    background: #fafafa;
}

.checkout-coupon__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
}

.checkout-coupon__summary-title {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #111111;
    font-weight: 800;
}

.checkout-coupon__summary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 7px 14px;
    border-radius: 99px;
    background: #111111;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.3pt;
    white-space: nowrap;
}

.checkout-coupon__details[open] .checkout-coupon__summary-button {
    background: #e51b23;
}

.checkout-coupon__details[open] > .checkout-coupon__summary {
    display: none;
}

.checkout-summary__totals {
    padding-top: 14px;
    border-top: 1px solid #ededed;
}

.checkout-summary__row {
    padding: 3px 0;
}

.checkout-summary__row--total {
    margin-top: 6px;
    padding-top: 14px;
    border-top: 1px solid #ededed;
}

.checkout-summary__row--total span,
.checkout-summary__row--total strong {
    font-size: 20px;
    font-weight: 600;
}

.checkout-summary__row--discount,
.checkout-summary__row--discount strong {
    color: #c53030;
}

.checkout-delivery-summary {
    display: grid;
    gap: 8px;
    padding: 12px 16px;
    border: 1px solid #e5e5e5;
    border-radius: var(--radius-sm);
    background: #fafafa;
}

.checkout-delivery-summary__row {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 14px;
}

.checkout-delivery-summary__row + .checkout-delivery-summary__row {
    padding-top: 9px;
    border-top: 1px solid #e5e5e5;
}

.checkout-delivery-summary__row span {
    color: #666666;
    font-size: 0.84rem;
    font-weight: 600;
    text-transform: uppercase;
    min-width: 130px;
}

.checkout-delivery-summary__row strong {
    color: #111111;
    font-size: 0.9rem;
    line-height: 1.45;
}

.checkout-delivery-summary__row em {
    font-size: 0.8rem;
    font-style: italic;
}

.checkout-section-divider {
    margin: 28px 0;
    border-top: 1px solid #e5e5e5;
}

.checkout-radio-card--payment {
    display: flex;
    align-items: center;
}

.checkout-payment-logo {
    width: 160px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 10px;
    background: #ffffff;
}

/* Checkout validation states */

.checkout-field.has-error .checkout-input {
    border-color: var(--checkout-form-error-border);
    background: var(--checkout-form-error-bg);
    box-shadow: 0 0 0 3px var(--checkout-form-error-soft);
}

.checkout-field.has-error .checkout-input:focus {
    border-color: var(--checkout-form-error);
    box-shadow: 0 0 0 3px var(--checkout-form-error-soft);
}

.checkout-field__label-error {
    margin-left: auto;
    color: var(--checkout-form-error-text);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    text-align: right;
}

.checkout-field__label-error[hidden] {
    display: none !important;
}

.checkout-field.has-error > .checkout-error:not([data-checkout-zip-message]) {
    display: none;
}

.checkout-radio-group.has-error .checkout-radio-card {
    border-color: var(--checkout-form-error-border);
    background: var(--checkout-form-error-bg);
}

.checkout-radio-group__error {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    color: var(--checkout-form-error-text);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
    text-align: right;
}

.checkout-radio-group__error[hidden] {
    display: none !important;
}

.checkout-input[aria-invalid="true"] {
    border-color: var(--checkout-form-error-border);
    background: var(--checkout-form-error-bg);
    box-shadow: 0 0 0 3px var(--checkout-form-error-soft);
}

.checkout-method-notice {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 12px 0;
    padding: 16px;
    border: 2px dashed #d7d7d7;
    border-radius: 14px;
    background: #fafafa;
    color: #666666;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.checkout-method-notice i {
    color: var(--cart-accent);
    font-size: 15px;
}

.checkout-method-notice[hidden] {
    display: none !important;
}

.checkout-radio-group[hidden] {
    display: none !important;
}

.checkout-payment-logo img {
    max-width: 160px;
    display: block;
}

.checkout-section__title-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.checkout-section__title-action h2 {
    margin: 0;
}

.checkout-edit-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 7px 14px;
    border-radius: 99px;
    background: #111111;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.3pt;
    text-decoration: none;
    white-space: nowrap;
}

.checkout-edit-link i {
    margin-right: 6px;
}

.checkout-edit-link:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

/* Pickup Options */

.checkout-pickup-list {
    display: flex;
    flex-direction: column;
    max-height: 366px;
    overflow-y: auto;
    border: 1px solid #dddddd;
    border-radius: 10px;
    background: #ffffff;
}

.checkout-pickup-list__empty {
    padding: 16px;
    border: 1px dashed #dddddd;
    border-radius: 14px;
    color: #6b6b6b;
    font-size: 13px;
    font-weight: 700;
}

.checkout-pickup-option {
    width: 100%;
    display: flex;
    align-items: stretch;
    padding: 14px 16px;
    border: 0;
    border-bottom: 1px solid #eeeeee;
    border-radius: 0;
    background: transparent;
    color: #111111;
    text-align: left;
    cursor: pointer;
    transition: background 0.18s ease;
}

.checkout-pickup-option:last-child {
    border-bottom: 0;
}

.checkout-pickup-option:hover,
.checkout-pickup-option.is-selected {
    background: #fff8fa;
}

.checkout-pickup-option.is-selected {
    box-shadow: inset 3px 0 0 #ff004a;
}

.checkout-pickup-option__main {
    width: 100%;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.checkout-pickup-option__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
}

.checkout-pickup-option__head strong {
    font-size: 14px;
    font-weight: 900;
    color: #111111;
}

.checkout-pickup-option__meta {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.checkout-pickup-option__schedules {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: #666666;
}

.checkout-pickup-option__schedules small {
    font-size: 12px;
    line-height: 1.35;
}

.checkout-pickup-option__meta small {
    font-size: 13px;
    color: #555555;
}

.checkout-pickup-option__meta a {
    font-size: 12px;
    font-weight: 800;
    color: #ff004a;
    text-decoration: none;
    white-space: nowrap;
}

.checkout-pickup-option__meta a:hover {
    text-decoration: underline;
}

.checkout-pickup-option__distance {
    flex: 0 0 auto;
    font-size: 12px;
    font-weight: 900;
    color: #111111;
    white-space: nowrap;
}

.checkout-pickup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
}

.checkout-pickup-header h3,
.checkout-pickup-header label {
    margin: 0;
}

.checkout-pickup-location-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 32px;
    padding: 7px 14px;
    border: 0;
    border-radius: 99px;
    background: #111111;
    color: #ffffff;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.3pt;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
}

.checkout-pickup-location-button i {
    font-size: 12px;
    line-height: 1;
}

.checkout-pickup-location-button:hover {
    background: #000000;
    color: #ffffff;
}

.checkout-pickup-location-button:disabled {
    opacity: 0.55;
    cursor: wait;
}

.checkout-field--recovery-anchor {
    position: relative;
}

.checkout-recovery-pass {
    position: absolute;
    right: 0;
    bottom: calc(100% + 12px);
    z-index: 30;
    width: min(100%, 300px);
    border-radius: 16px;
    background: linear-gradient(180deg, #eee 0%, #ddd 100%);
    color: #111;
    padding: 12px 14px;
    font-size: 15px;
    box-shadow: 10px rgba(15, 23, 42, 0.12);
}

.checkout-recovery-pass::after {
    content: '';
    position: absolute;
    right: 34px;
    bottom: -8px;
    width: 16px;
    height: 16px;
    background: #DDD;
    transform: rotate(45deg);
}

.checkout-recovery-pass__close {
    position: absolute;
    top: 10px;
    right: 10px;
    border: 0;
    background: transparent;
    color: rgba(0, 0, 0, 0.22);
    cursor: pointer;
}

.checkout-recovery-pass__body {
    display: grid;
    gap: 8px;
}

.checkout-recovery-pass__eyebrow {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #93c5fd;
}

.checkout-recovery-pass__title,
.checkout-recovery-pass__description,
.checkout-recovery-pass__hint {
    margin: 0;
}

.checkout-recovery-pass__description,
.checkout-recovery-pass__hint {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.5;
    font-size: 14px;
}

.checkout-recovery-pass__cta {
    width: fit-content;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: #0f172a;
    font-weight: 700;
    padding: 10px 16px;
    cursor: pointer;
}

.checkout-recovery-pass__cta[disabled] {
    opacity: 0.7;
    cursor: wait;
}

.checkout-recovery-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.checkout-recovery-modal[aria-hidden="true"] {
    display: none;
}

.checkout-recovery-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.58);
}

.checkout-recovery-modal__dialog {
    position: relative;
    width: min(100%, 460px);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
    padding: 24px;
}

.checkout-recovery-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    border: 0;
    background: transparent;
    color: #475569;
    font-size: 18px;
    cursor: pointer;
}

.checkout-recovery-modal__body {
    display: grid;
    gap: 16px;
}

.checkout-recovery-modal__eyebrow {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cart-accent);
    margin-bottom: 10px;
}

.checkout-recovery-modal__title {
    margin: 0;
    font-size: 20px;
    line-height: 1.2;
}

.checkout-recovery-modal__description,
.checkout-recovery-modal__error {
    margin: 0;
    line-height: 1.5;
}

.checkout-recovery-modal__error {
    color: #b91c1c;
    font-size: 11px;
    padding: 6px 8px;
    margin-bottom: 10px;
    border: 1px solid #b91c1c;
    border-radius: 6px;
}

.checkout-recovery-modal__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

.checkout-recovery-modal__secondary {
    border: 0;
    background: transparent;
    color: #334155;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
}

.checkout-recovery-modal__secondary[disabled] {
    opacity: 0.6;
    cursor: wait;
}

.checkout-recovery-code {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    gap: 10px;
}

.checkout-recovery-code__input {
    width: 52px;
    height: 56px;
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
}

.checkout-recovery-code__input:focus {
    outline: 2px solid #0f172a;
    outline-offset: 2px;
}

@media (max-width: 640px) {
    .checkout-field--recovery-anchor {
        padding-top: 0;
    }

    .checkout-recovery-pass {
        position: static;
        width: 100%;
        margin-bottom: 12px;
    }

    .checkout-recovery-pass::after {
        display: none;
    }

    .checkout-recovery-modal__dialog {
        padding: 20px;
    }

    .checkout-recovery-code__input {
        width: 48px;
        height: 52px;
    }
}

@media (max-width: 980px) {
    .checkout-shell {
        width: min(100% - 24px, 1180px);
        padding: 24px 0 40px;
    }

    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        position: static;
        order: 2;
    }

    .checkout-main {
        order: 1;
    }
}

@media (max-width: 720px) {
    .checkout-progress {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .checkout-progress__item {
        min-width: 132px;
        padding-right: 14px;
        white-space: nowrap;
    }

    .checkout-progress__item + .checkout-progress__item {
        margin-left: 34px;
    }

    .checkout-progress__item + .checkout-progress__item::before {
        width: 34px;
    }
}

/* Merchvox floating home badge */

.merchvox-home-badge {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 120;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    border-radius: 999px;
    background: #ff004a;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.24);
    transition:
        width 260ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 160ms ease,
        box-shadow 160ms ease,
        background-color 160ms ease;
}

.merchvox-home-badge__logo {
    width: 25px;
    height: 54px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    margin-right: 14px;
    transition:
        width 260ms cubic-bezier(0.22, 1, 0.36, 1),
        margin 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.merchvox-home-badge__logo img {
    width: 128px;
    max-width: none;
    height: auto;
    display: block;
    flex: 0 0 auto;
    filter: brightness(0) invert(1);
    transform: translateX(0);
}

.merchvox-home-badge:hover,
.merchvox-home-badge:focus-visible {
    width: 166px;
    background: #ff004a;
    color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.24);
}

.merchvox-home-badge:hover .merchvox-home-badge__logo,
.merchvox-home-badge:focus-visible .merchvox-home-badge__logo {
    width: 128px;
    margin-right: 19px;
}

.merchvox-home-badge:focus-visible {
    outline: 3px solid rgba(255, 0, 74, 0.3);
    outline-offset: 4px;
}

@media (max-width: 720px) {
    .merchvox-home-badge {
        right: 16px;
        bottom: 16px;
        width: 48px;
        height: 48px;
    }

    .merchvox-home-badge__logo {
        width: 24px;
        height: 48px;
        margin-right: 12px;
    }

    .merchvox-home-badge:hover,
    .merchvox-home-badge:focus-visible {
        width: 154px;
    }

    .merchvox-home-badge:hover .merchvox-home-badge__logo,
    .merchvox-home-badge:focus-visible .merchvox-home-badge__logo {
        width: 120px;
        margin-right: 17px;
    }

    .merchvox-home-badge__logo img {
        width: 120px;
    }
}