.page-content {
    width: 100%;
}

.checkout-page {
    background:
        radial-gradient(circle at top left, rgba(247, 238, 221, 0.58), transparent 28%),
        linear-gradient(180deg, #fffdf9 0%, #f7f3ed 100%);
    padding: 10.5rem 0 4.5rem;
}

.checkout-page__grid {
    width: min(100% - 2rem, var(--max-width-container));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(27rem, 34rem);
    gap: 2rem;
    align-items: start;
}

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

.checkout-hero {
    margin-bottom: 1.8rem;
}

.checkout-hero__eyebrow,
.order-summary__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 1.85rem;
    padding: 0 0.85rem;
    border-radius: 999px;
    background: rgba(246, 221, 151, 0.3);
    color: #b0811a;
    font-family: var(--font-family-base);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.checkout-page__title {
    margin: 0.9rem 0 0;
    color: #b8b2a4;
    font-family: var(--font-family-display);
    font-size: clamp(3.6rem, 5.8vw, 5.3rem);
    font-weight: 400;
    line-height: 0.9;
}

.checkout-page__intro {
    margin: 0.9rem 0 0;
    max-width: 47rem;
    color: #958d82;
    font-family: var(--font-family-base);
    font-size: 1.02rem;
    font-weight: 400;
    line-height: 1.48;
}

.checkout-page__meta {
    margin: 0.7rem 0 0;
    color: #b2ab9f;
    font-family: var(--font-family-base);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.checkout-form {
    display: grid;
    gap: 1.2rem;
}

.checkout-block {
    padding: 1.5rem;
    border: 1px solid rgba(201, 192, 180, 0.48);
    border-radius: 1.35rem;
    background: rgba(255, 252, 247, 0.82);
    box-shadow: 0 18px 34px rgba(86, 66, 52, 0.05);
}

.checkout-block__header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.95rem;
    align-items: start;
    margin-bottom: 1.2rem;
}

.checkout-block__step {
    display: inline-grid;
    place-items: center;
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 50%;
    background: #f7efe3;
    color: #bc8d2b;
    font-family: var(--font-family-display);
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1;
}

.checkout-block__title {
    margin: 0;
    color: #2f231e;
    font-family: var(--font-family-display);
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 0.95;
}

.checkout-block__lead {
    margin: 0.45rem 0 0;
    color: #9d9589;
    font-family: var(--font-family-base);
    font-size: 0.96rem;
    line-height: 1.42;
}

.checkout-auth {
    display: grid;
    gap: 1rem;
}

.checkout-contact {
    display: grid;
    gap: 1rem;
}

.checkout-auth__tabs {
    display: inline-flex;
    gap: 0.55rem;
    padding: 0.25rem;
    border-radius: 999px;
    background: #f3eee7;
    width: fit-content;
}

.checkout-auth__tab {
    min-height: 2.3rem;
    padding: 0 1rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #82786e;
    font-family: var(--font-family-base);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.checkout-auth__tab.is-active {
    background: #ffffff;
    color: #201714;
    box-shadow: 0 8px 16px rgba(78, 58, 42, 0.08);
}

.checkout-auth__panel {
    display: grid;
    gap: 0.35rem;
}

.checkout-auth__guest {
    padding-top: 0.85rem;
    border-top: 1px solid rgba(204, 196, 185, 0.45);
}

.checkout-auth__guest strong,
.checkout-message-card strong {
    display: block;
    color: #231917;
    font-family: var(--font-family-display);
    font-size: 1.55rem;
    font-weight: 400;
    line-height: 1;
}

.checkout-auth__guest p,
.checkout-message-card p {
    margin: 0.35rem 0 0.9rem;
    color: #9d9589;
    font-family: var(--font-family-base);
    font-size: 0.92rem;
    line-height: 1.45;
}

.checkout-inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.1rem;
    align-items: center;
    margin-top: 0.35rem;
}

.checkout-inline-actions a,
.checkout-inline-actions span {
    color: #9c9387;
    font-family: var(--font-family-base);
    font-size: 0.86rem;
}

.checkout-secondary-button {
    min-height: 2.65rem;
    padding: 0 1.1rem;
    border: 1px solid rgba(196, 177, 143, 0.5);
    border-radius: 0.7rem;
    background: #f8f2e8;
    color: #8f6512;
    font-family: var(--font-family-base);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
}

.checkout-grid {
    display: grid;
    gap: 0.9rem;
}

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

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

.checkout-shipping-fields {
    display: grid;
    gap: 10px;
}

.checkout-field {
    display: grid;
    gap: 0.42rem;
}

.checkout-field label {
    color: #6f675d;
    font-family: var(--font-family-base);
    font-size: 0.8rem;
    font-weight: 500;
}

.checkout-field input {
    width: 100%;
    min-height: 3rem;
    padding: 0 0.95rem;
    border: 1px solid rgba(188, 178, 165, 0.52);
    border-radius: 0.8rem;
    background: #fdfbf8;
    color: #463a35;
    font-family: var(--font-family-base);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.checkout-field input:focus {
    outline: none;
    border-color: rgba(213, 168, 74, 0.75);
    box-shadow: 0 0 0 3px rgba(213, 168, 74, 0.12);
    background: #ffffff;
}

.checkout-field input::placeholder {
    color: #c6beb1;
}

.checkout-field__hint {
    margin: 0.2rem 0 0;
    color: #9c9387;
    font-family: var(--font-family-base);
    font-size: 0.86rem;
    line-height: 1.4;
}

.checkout-saved {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
    margin-bottom: 1rem;
}

.checkout-saved__card {
    display: grid;
    gap: 0.2rem;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(196, 188, 177, 0.46);
    border-radius: 0.95rem;
    background: #fffdfa;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.checkout-saved__card:hover,
.checkout-saved__card.is-selected {
    border-color: rgba(213, 168, 74, 0.82);
    box-shadow: inset 0 0 0 1px rgba(213, 168, 74, 0.22);
    transform: translateY(-1px);
}

.checkout-saved__card strong {
    color: #251b17;
    font-family: var(--font-family-display);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
}

.checkout-saved__card span {
    color: #9c9387;
    font-family: var(--font-family-base);
    font-size: 0.82rem;
    line-height: 1.35;
}

.checkout-saved__card--new {
    background: #f8f3ea;
}

.checkout-saved__message {
    grid-column: 1 / -1;
    margin: 0;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(196, 188, 177, 0.46);
    border-radius: 0.85rem;
    background: #fffdfa;
    color: #837970;
    font-family: var(--font-family-base);
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.42;
}

.checkout-saved__message[data-state="error"] {
    border-color: rgba(154, 61, 52, 0.24);
    background: #fff7f5;
    color: #9a3d34;
}

.checkout-choice-group {
    display: grid;
    gap: 0.8rem;
    margin: 20px 0px;
}

.checkout-option {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    border: 1px solid rgba(196, 188, 177, 0.46);
    border-radius: 0.95rem;
    background: #fffdfa;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.checkout-option.is-selected {
    border-color: #d5a84a;
    box-shadow: inset 0 0 0 1px rgba(213, 168, 74, 0.28);
    background: #fff8ee;
}

.checkout-option:hover {
    transform: translateY(-1px);
}

.checkout-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkout-option__radio {
    width: 1rem;
    height: 1rem;
    border: 1px solid #d2a54a;
    border-radius: 50%;
    background: #ffffff;
    position: relative;
}

.checkout-option.is-selected .checkout-option__radio::after {
    content: "";
    position: absolute;
    inset: 0.2rem;
    border-radius: 50%;
    background: #d2a54a;
}

.checkout-option__content {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.checkout-option__content strong,
.checkout-option__price {
    color: #342722;
    font-family: var(--font-family-base);
    font-size: 0.92rem;
    font-weight: 600;
}

.checkout-option__content small {
    color: #b8afa2;
    font-family: var(--font-family-base);
    font-size: 0.78rem;
    font-weight: 500;
}

.checkout-toggle {
    margin-bottom: 1rem;
}

.checkout-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.checkout-switch input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkout-switch__track {
    position: relative;
    width: 3.4rem;
    height: 2rem;
    border-radius: 999px;
    background: #e6e0d8;
    transition: background-color 0.2s ease;
}

.checkout-switch__track::after {
    content: "";
    position: absolute;
    top: 0.18rem;
    left: 0.2rem;
    width: 1.64rem;
    height: 1.64rem;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(72, 54, 41, 0.12);
    transition: transform 0.2s ease;
}

.checkout-switch input:checked + .checkout-switch__track {
    background: #d8b36b;
}

.checkout-switch input:checked + .checkout-switch__track::after {
    transform: translateX(1.35rem);
}

.checkout-switch__label {
    color: #413530;
    font-family: var(--font-family-base);
    font-size: 0.94rem;
    font-weight: 500;
}

.checkout-conditional {
    display: grid;
    gap: 0.9rem;
}

.checkout-conditional[hidden] {
    display: none;
}

.checkout-payment-panel {
    margin-top: 1rem;
}

.checkout-message-card {
    padding: 1.1rem 1.15rem;
    border: 1px dashed rgba(196, 177, 143, 0.75);
    border-radius: 1rem;
    background: #fffaf1;
}

.checkout-message-card strong,
.checkout-message-card p,
.checkout-message-card small {
    font-family: var(--font-family-base);
}

.checkout-message-card p {
    margin: 0.45rem 0 0;
    color: #6f625b;
    line-height: 1.6;
}

.checkout-message-card__status {
    padding-top: 0.65rem;
    font-size: 0.84rem;
    font-weight: 600;
}

.checkout-message-card__status[data-state="loading"] {
    color: #8b6a2f;
}

.checkout-message-card__status[data-state="error"] {
    color: #9a3d34;
}

.checkout-message-card__status[data-state="success"],
.checkout-message-card__status[data-state="info"] {
    color: #413530;
}

.checkout-message-card__debug {
    display: block;
    margin-top: 0.8rem;
    color: #a09180;
    font-size: 0.72rem;
}

.checkout-paypal-container {
    margin-top: 1rem;
}

.checkout-bank-list {
    display: grid;
    gap: 0.8rem;
    margin-top: 1rem;
}

.checkout-bank-card {
    padding: 0.95rem 1rem;
    border: 1px solid rgba(197, 188, 174, 0.46);
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.78);
}

.checkout-bank-card h3 {
    margin: 0 0 0.5rem;
    color: #342722;
    font-family: var(--font-family-base);
    font-size: 0.9rem;
    font-weight: 700;
}

.checkout-bank-card p {
    margin: 0.3rem 0 0;
    color: #5b4e47;
    font-size: 0.82rem;
}

.checkout-bank-card p strong {
    color: #1f1714;
    font-weight: 600;
}

.checkout-note {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.checkout-note span {
    display: inline-flex;
    align-items: center;
    min-height: 1.95rem;
    padding: 0 0.8rem;
    border-radius: 999px;
    background: #f7efe0;
    color: #b28327;
    font-family: var(--font-family-base);
    font-size: 0.78rem;
    font-weight: 500;
}

.order-summary {
    position: sticky;
    top: 3.5rem;
}

.order-summary__panel {
    padding: 1.65rem 1.55rem 1.35rem;
    border: 1px solid rgba(197, 188, 174, 0.46);
    border-radius: 1.4rem;
    background: linear-gradient(180deg, rgba(208, 206, 191, 0.4) 0%, rgba(244, 241, 235, 0.86) 100%);
    box-shadow: 0 24px 50px rgba(70, 49, 37, 0.08);
}

.order-summary__panel.is-empty [data-summary],
.order-summary__panel.is-empty [data-coupon-form],
.order-summary__panel.is-empty [data-upsell-root],
.order-summary__panel.is-empty .order-summary__checkout,
.order-summary__panel.is-empty .order-summary__terms {
    display: none;
}

.order-summary__eyebrow {
    margin-bottom: 0.85rem;
}

.order-summary__title {
    margin: 0;
    color: #000000;
    font-family: var(--font-family-display);
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 0.92;
}

.order-item {
    display: grid;
    grid-template-columns: 4.6rem minmax(0, 1fr) auto;
    gap: 0.95rem;
    align-items: start;
    margin-top: 1.2rem;
}

.order-item__thumb {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 4.6rem;
    border-radius: 0.8rem;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e8e6e0;
}

.order-item__thumb--light {
    background: #f6f3ee;
}

.order-item__thumb-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.order-item__thumb-image--contain {
    object-fit: contain;
    padding: 0.35rem;
    background: transparent;
}

.order-item__badge {
    position: absolute;
    top: 0.22rem;
    right: 0.22rem;
    min-width: 1.15rem;
    height: 1.15rem;
    padding: 0 0.22rem;
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family-base);
    font-size: 0.66rem;
    font-weight: 700;
}

.order-item__content h3,
.order-item__content p,
.order-summary__upsell-copy strong,
.order-summary__upsell-copy span {
    margin: 0;
}

.order-item__content h3 {
    color: #000000;
    font-family: var(--font-family-display);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 0.95;
}

.order-item__content p {
    color: #b2b2a4;
    font-family: var(--font-family-base);
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 0.18rem;
}

.order-item__tail {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.4rem;
}

.order-item__price {
    color: #000000;
    font-family: var(--font-family-base);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    padding-top: 0.15rem;
}

.order-item__remove {
    padding: 0;
    border: 0;
    background: transparent;
    color: #c5bfb7;
    font-family: var(--font-family-base);
    font-size: 0.74rem;
    font-weight: 500;
    cursor: pointer;
    line-height: 1;
    transition: color 0.15s ease;
}

.order-item__remove:hover,
.order-item__remove:focus-visible {
    color: #9f352e;
    outline: none;
}

.order-item__remove:disabled {
    opacity: 0.45;
    cursor: wait;
}

.order-summary__coupon {
    display: grid;
    gap: 0.55rem;
    margin: 1.4rem 0 0;
    padding: 1rem;
    border: 1px solid rgba(197, 188, 174, 0.56);
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.72);
}

.order-summary__coupon label {
    color: #5a514b;
    font-family: var(--font-family-base);
    font-size: 0.82rem;
    font-weight: 600;
}

.order-summary__coupon-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.45rem;
}

.order-summary__coupon input {
    width: 100%;
    min-height: 2.75rem;
    padding: 0 0.85rem;
    border: 1px solid rgba(188, 178, 165, 0.62);
    border-radius: 0.65rem;
    background: #fffdfa;
    color: #342722;
    font-family: var(--font-family-base);
    font-size: 0.86rem;
    text-transform: uppercase;
}

.order-summary__coupon input:focus {
    outline: none;
    border-color: rgba(213, 168, 74, 0.78);
    box-shadow: 0 0 0 3px rgba(213, 168, 74, 0.12);
}

.order-summary__coupon input:disabled {
    color: #6c625a;
    background: #f7f3ed;
}

.order-summary__coupon button {
    min-height: 2.75rem;
    padding: 0 0.85rem;
    border: 0;
    border-radius: 0.65rem;
    background: #8b2e12;
    color: #ffffff;
    font-family: var(--font-family-base);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
}

.order-summary__coupon button:disabled {
    cursor: wait;
    opacity: 0.7;
}

.order-summary__coupon-remove {
    justify-self: start;
    min-height: auto !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #9f352e !important;
}

.order-summary__coupon-status {
    margin: 0;
    color: #7a7067;
    font-family: var(--font-family-base);
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.35;
}

.order-summary__coupon-status[data-state="success"] {
    color: #657a3d;
}

.order-summary__coupon-status[data-state="warning"] {
    color: #9d7425;
}

.order-summary__coupon-status[data-state="error"] {
    color: #9f352e;
}

.order-summary__totals {
    margin: 2rem 0 1.4rem;
    padding-top: 1rem;
    border-top: 1px solid #e8e6e0;
}

.order-summary__totals div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.7rem;
    color: #5a5a5a;
    font-family: var(--font-family-base);
    font-size: 0.9rem;
    font-weight: 500;
}

.order-summary__totals strong {
    color: #000000;
}

.order-summary__total {
    margin-top: 1rem;
    padding-top: 0.95rem;
    border-top: 1px solid #e8e6e0;
}

.order-summary__total span,
.order-summary__total strong {
    font-size: 1.35rem;
}

.order-summary__upsell {
    margin-bottom: 1.1rem;
    padding-top: 0.2rem;
}

.order-summary__upsell p {
    margin: 0 0 0.7rem;
    color: #b2b2a4;
    font-family: var(--font-family-base);
    font-size: 0.76rem;
    font-weight: 500;
}

.order-summary__upsell-card {
    display: grid;
    grid-template-columns: 3.4rem minmax(0, 1fr) auto;
    gap: 0.8rem;
    align-items: center;
    padding: 0.7rem;
    border: 1px solid #ffffff;
    border-radius: 0.95rem;
    background: #ffffff;
}

.order-summary__upsell-copy {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.order-summary__upsell-copy strong {
    color: #000000;
    font-family: var(--font-family-display);
    font-size: 1.25rem;
    font-weight: 400;
}

.order-summary__upsell-copy span,
.order-summary__upsell-card button {
    color: #ae872a;
    font-family: var(--font-family-base);
    font-size: 0.78rem;
    font-weight: 600;
}

.order-summary__upsell-card button {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.order-summary__empty {
    margin: 1rem 0 0;
    color: #9d9589;
    font-family: var(--font-family-base);
    font-size: 0.9rem;
    line-height: 1.45;
}

.order-summary__checkout {
    width: 100%;
    min-height: 3.9rem;
    padding: 0 1.15rem;
    border: 0;
    border-radius: 0.8rem;
    background: #000000;
    color: #fbe090;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-family: var(--font-family-base);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.order-summary__checkout:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(17, 17, 17, 0.22);
}

.order-summary__terms {
    margin: 0.95rem 0 0;
    color: #b2b2a4;
    font-family: var(--font-family-base);
    font-size: 0.72rem;
    text-align: center;
    line-height: 1.45;
}

.order-summary__status {
    margin: 0.8rem 0 0;
    color: #8a8278;
    font-family: var(--font-family-base);
    font-size: 0.8rem;
    line-height: 1.4;
}

.order-summary__status[data-state="success"] {
    color: #5d6d39;
}

.order-summary__status[data-state="error"] {
    color: #9b493f;
}

.order-summary__status[data-state="warning"] {
    color: #a87717;
}

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

    .order-summary {
        position: static;
    }

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

@media (max-width: 720px) {
    .checkout-page {
        padding-top: 9rem;
    }

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

    .checkout-page__title {
        font-size: 3.2rem;
    }

    .checkout-block {
        padding: 1.1rem;
    }

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

/* ─── Modal de confirmación ─── */

.confirm-modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.confirm-modal[hidden] {
    display: none;
}

.confirm-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 10, 5, 0.52);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.confirm-modal__card {
    position: relative;
    z-index: 1;
    width: min(100%, 25rem);
    padding: 2rem 2rem 1.65rem;
    border: 1px solid rgba(197, 188, 174, 0.46);
    border-radius: 1.4rem;
    background: linear-gradient(180deg, #ffffff 0%, #f7f3ed 100%);
    box-shadow: 0 28px 60px rgba(30, 14, 8, 0.2);
    animation: modal-card-in 0.2s ease;
}

@keyframes modal-card-in {
    from {
        opacity: 0;
        transform: translateY(0.55rem) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.confirm-modal__title {
    margin: 0 0 0.55rem;
    color: #1a110c;
    font-family: var(--font-family-display);
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1;
}

.confirm-modal__body {
    margin: 0 0 1.7rem;
    color: #7a746d;
    font-family: var(--font-family-base);
    font-size: 0.95rem;
    line-height: 1.48;
}

.confirm-modal__body strong {
    color: #2a1b16;
    font-weight: 600;
}

.confirm-modal__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}

.confirm-modal__cancel {
    min-height: 2.85rem;
    padding: 0 1.1rem;
    border: 1px solid rgba(161, 152, 140, 0.4);
    border-radius: 0.5rem;
    background: transparent;
    color: #7a746d;
    font-family: var(--font-family-base);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.confirm-modal__cancel:hover,
.confirm-modal__cancel:focus-visible {
    background: #f0ece5;
    color: #2a1b16;
    outline: none;
}

.confirm-modal__confirm {
    min-height: 2.85rem;
    padding: 0 1.1rem;
    border: 0;
    border-radius: 0.5rem;
    background: #111111;
    color: #f5cf61;
    font-family: var(--font-family-base);
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.15s ease;
}

.confirm-modal__confirm:hover,
.confirm-modal__confirm:focus-visible {
    opacity: 0.86;
    outline: none;
}

.confirm-modal__confirm:disabled {
    opacity: 0.48;
    cursor: wait;
}

/* ─── Skeleton / shimmer ─── */

.order-item--skeleton {
    pointer-events: none;
}

.order-item--skeleton .order-item__thumb {
    background: linear-gradient(90deg, #e2ddd8 25%, #edeae5 50%, #e2ddd8 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.4s ease-in-out infinite;
}

.order-item--skeleton .order-item__content h3 {
    display: block;
    min-width: 7rem;
    height: 1.6rem;
    border-radius: 0.35rem;
    background: linear-gradient(90deg, #e2ddd8 25%, #edeae5 50%, #e2ddd8 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.4s ease-in-out infinite;
    color: transparent;
}

.order-item--skeleton .order-item__content p {
    display: block;
    min-width: 5rem;
    height: 0.85rem;
    border-radius: 0.35rem;
    margin-top: 0.4rem;
    background: linear-gradient(90deg, #e2ddd8 25%, #edeae5 50%, #e2ddd8 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.4s ease-in-out infinite;
    color: transparent;
}

.order-item--skeleton .order-item__price {
    display: block;
    min-width: 3.5rem;
    height: 1.2rem;
    border-radius: 0.35rem;
    background: linear-gradient(90deg, #e2ddd8 25%, #edeae5 50%, #e2ddd8 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.4s ease-in-out infinite;
    color: transparent;
}

.checkout-option--skeleton {
    pointer-events: none;
    border-color: rgba(196, 188, 177, 0.28);
    background: linear-gradient(90deg, #f7f5f2 25%, #fdfcf9 50%, #f7f5f2 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.4s ease-in-out infinite;
}

.checkout-option--skeleton .checkout-option__radio {
    border-color: rgba(196, 188, 177, 0.35);
    background: rgba(0, 0, 0, 0.06);
}

.checkout-option--skeleton .checkout-option__content strong,
.checkout-option--skeleton .checkout-option__content small,
.checkout-option--skeleton .checkout-option__price {
    display: inline-block;
    border-radius: 0.3rem;
    background: rgba(0, 0, 0, 0.07);
    color: transparent;
}

.checkout-option--skeleton .checkout-option__content strong {
    min-width: 9rem;
    height: 1rem;
}

.checkout-option--skeleton .checkout-option__content small {
    display: block;
    min-width: 5rem;
    height: 0.75rem;
    margin-top: 0.2rem;
}

.checkout-option--skeleton .checkout-option__price {
    min-width: 3.5rem;
    height: 1rem;
}

.order-summary[data-loading] [data-summary-subtotal],
.order-summary[data-loading] [data-summary-shipping],
.order-summary[data-loading] [data-summary-total],
.order-summary[data-loading] [data-summary-cta-total] {
    display: inline-block;
    min-width: 4rem;
    border-radius: 0.3em;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.07) 25%, rgba(0, 0, 0, 0.14) 50%, rgba(0, 0, 0, 0.07) 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.4s ease-in-out infinite;
    color: transparent !important;
}
