/* Checkout — brand-aligned purchase flow */

body:has(.checkout-page) .frame-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 200;
}

.checkout-page {
    --checkout-ink: #0f172a;
    --checkout-muted: #64748b;
    --checkout-line: rgba(15, 23, 42, 0.08);
    --checkout-primary: var(--color-primary, #337ab7);
    --checkout-surface: #ffffff;
    --checkout-radius: 18px;

    position: relative;
    min-height: calc(100vh - 80px);
    padding: clamp(1.5rem, 4vw, 2.75rem) 0 clamp(3rem, 6vw, 4.5rem);
    background:
        radial-gradient(900px 420px at 8% -10%, rgba(51, 122, 183, 0.14), transparent 60%),
        radial-gradient(700px 380px at 100% 0%, rgba(126, 200, 239, 0.16), transparent 55%),
        linear-gradient(180deg, #f3f6fa 0%, #eef3f8 45%, #f7f9fc 100%);
    font-family: var(--font-sans, "Archivo", "GE SS Two", system-ui, sans-serif);
    color: var(--checkout-ink);
    overflow-x: clip;
}

.checkout-atmosphere {
    pointer-events: none;
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
    opacity: 0.55;
}

.checkout-container {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.checkout-hero {
    margin: 0.2rem 0 1.35rem;
    animation: checkout-rise 0.45s ease both;
}

.checkout-title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.55rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.15;
    color: var(--checkout-ink);
}

.checkout-steps {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem 0.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.checkout-steps__item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--checkout-muted);
    transition: color 0.25s ease;
}

.checkout-steps__num {
    display: inline-grid;
    place-items: center;
    width: 1.55rem;
    height: 1.55rem;
    border-radius: 999px;
    border: 1px solid var(--checkout-line);
    background: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 700;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.checkout-steps__item.is-active {
    color: var(--checkout-ink);
}

.checkout-steps__item.is-active .checkout-steps__num {
    background: var(--checkout-primary);
    border-color: var(--checkout-primary);
    color: #fff;
}

.checkout-steps__item.is-current .checkout-steps__num {
    transform: scale(1.08);
    box-shadow: 0 0 0 4px rgba(51, 122, 183, 0.16);
}

.checkout-steps__connector {
    width: 2rem;
    height: 2px;
    border-radius: 999px;
    background: var(--checkout-line);
}

.checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: clamp(1.25rem, 3vw, 2rem);
    align-items: start;
}

.checkout-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: checkout-rise 0.55s ease 0.05s both;
}

.course-summary-card {
    display: grid;
    grid-template-columns: minmax(140px, 38%) minmax(0, 1fr);
    gap: 0;
    overflow: hidden;
    background: var(--checkout-surface);
    border-radius: var(--checkout-radius);
    border: 1px solid rgba(51, 122, 183, 0.1);
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 18px 40px rgba(15, 23, 42, 0.07);
}

.course-summary-card__media {
    position: relative;
    min-height: 160px;
    background: #0f172a;
}

.course-thumbnail {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-summary-details {
    padding: 1.15rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.3rem;
}

.course-summary-category {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--checkout-primary);
}

.course-summary-title {
    margin: 0;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    font-weight: 750;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--checkout-ink);
}

.course-summary-instructor {
    margin: 0.1rem 0 0;
    font-size: 0.9rem;
    color: var(--checkout-muted);
}

.course-summary-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    margin-top: 0.55rem;
    font-size: 0.84rem;
    color: #475569;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.meta-item svg {
    color: var(--checkout-primary);
    opacity: 0.9;
}

.checkout-panel {
    animation: checkout-rise 0.4s ease both;
}

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

.checkout-buyer,
.checkout-methods {
    padding: 1.25rem 1.3rem 1.35rem;
    border-radius: var(--checkout-radius);
    background: var(--checkout-surface);
    border: 1px solid rgba(51, 122, 183, 0.1);
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 14px 32px rgba(15, 23, 42, 0.06);
}

.checkout-buyer__head,
.checkout-methods__head {
    margin-bottom: 1rem;
}

.checkout-buyer__title {
    margin: 0 0 0.3rem;
    font-size: 1.05rem;
    font-weight: 750;
    letter-spacing: -0.02em;
}

.checkout-buyer__hint {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.45;
    color: var(--checkout-muted);
}

.checkout-buyer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.checkout-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #475569;
}

.checkout-field--full {
    grid-column: 1 / -1;
}

.checkout-field input {
    width: 100%;
    border: 1px solid #dbe3ee;
    border-radius: 11px;
    padding: 0.72rem 0.8rem;
    font-size: 0.92rem;
    font-weight: 550;
    color: var(--checkout-ink);
    background: #fff;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.checkout-field input:focus {
    outline: none;
    border-color: var(--checkout-primary);
    box-shadow: 0 0 0 3px rgba(51, 122, 183, 0.14);
}

.checkout-field input.is-filled {
    border-color: rgba(51, 122, 183, 0.35);
}

.checkout-field input[readonly] {
    background: #eef2f7;
    color: #64748b;
}

.checkout-field__hint {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0;
    color: #94a3b8;
}

.checkout-field .iti {
    width: 100%;
}

.checkout-field .iti__tel-input {
    width: 100%;
    border: 1px solid #dbe3ee;
    border-radius: 11px;
    padding: 0.72rem 0.8rem;
    font-size: 0.92rem;
    font-weight: 550;
    color: var(--checkout-ink);
    background: #fff;
    box-sizing: border-box;
}

.checkout-field .iti__tel-input:focus {
    outline: none;
    border-color: var(--checkout-primary);
    box-shadow: 0 0 0 3px rgba(51, 122, 183, 0.14);
}

.checkout-field-error {
    margin: 0.65rem 0 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: #b91c1c;
}

.checkout-panel__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    margin-top: 1.15rem;
}

.checkout-back-link,
.checkout-text-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    font-size: 0.88rem;
    font-weight: 650;
    color: var(--checkout-primary);
    text-decoration: none;
    cursor: pointer;
}

.checkout-back-link:hover,
.checkout-text-btn:hover {
    text-decoration: underline;
}

.checkout-methods__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
}

.checkout-method {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    padding: 0.95rem 0.75rem;
    border-radius: 14px;
    border: 1.5px solid #e2e8f0;
    background: #f8fafc;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

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

.checkout-method:hover {
    transform: translateY(-2px);
    border-color: rgba(51, 122, 183, 0.35);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.checkout-method.is-selected {
    border-color: var(--checkout-primary);
    background: rgba(51, 122, 183, 0.06);
    box-shadow: 0 0 0 3px rgba(51, 122, 183, 0.12);
}

.checkout-method__media {
    display: grid;
    place-items: center;
    width: 100%;
    min-height: 2.5rem;
    color: var(--checkout-primary);
}

.checkout-method__media img {
    max-width: 72px;
    max-height: 36px;
    object-fit: contain;
}

.checkout-method__name {
    font-size: 0.82rem;
    font-weight: 700;
    text-align: center;
    color: var(--checkout-ink);
    line-height: 1.3;
}

.checkout-methods__empty {
    margin: 0;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    font-size: 0.86rem;
    color: var(--checkout-muted);
}

.checkout-pay-inline {
    margin-top: 1.25rem;
    padding-top: 1.15rem;
    border-top: 1px solid var(--checkout-line);
    animation: checkout-rise 0.4s ease both;
}

.checkout-pay-inline__head {
    margin-bottom: 0.9rem;
}

.checkout-pay-inline__title {
    margin: 0 0 0.3rem;
    font-size: 1rem;
    font-weight: 750;
    letter-spacing: -0.02em;
}

.checkout-pay-inline__hint {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.45;
    color: var(--checkout-muted);
}

.checkout-pay-inline__loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    min-height: 160px;
    margin-bottom: 0.75rem;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    color: #475569;
    font-size: 0.88rem;
    font-weight: 600;
}

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

.checkout-pay-inline__placeholder {
    margin: 0 0 0.75rem;
    padding: 1.1rem 1rem;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    color: var(--checkout-muted);
    font-size: 0.88rem;
    text-align: center;
}

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

.checkout-pay-inline__gateway {
    width: 100%;
    min-width: 0;
    min-height: 240px;
    padding: 0.35rem 0 0.5rem;
}

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

.checkout-pay-inline__trust {
    margin: 0.85rem 0 0;
    font-size: 0.74rem;
    line-height: 1.45;
    color: var(--checkout-muted);
    text-align: center;
}

/* Protect Paymob Pixel from site-wide meyer-reset / global input rules */
#paymob-elements {
    width: 100% !important;
    max-width: 100%;
    min-width: 280px;
    display: block;
}

#paymob-elements *,
#paymob-elements *::before,
#paymob-elements *::after {
    box-sizing: border-box;
}

#paymob-elements input,
#paymob-elements button,
#paymob-elements select,
#paymob-elements textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: normal;
    vertical-align: middle;
}

#paymob-elements iframe {
    width: 100% !important;
    max-width: 100%;
    border: 0;
}

.checkout-payment {
    animation: checkout-rise 0.55s ease 0.1s both;
}

.payment-card {
    position: sticky;
    top: 96px;
    background: var(--checkout-surface);
    border-radius: var(--checkout-radius);
    padding: 1.35rem 1.35rem 1.45rem;
    border: 1px solid rgba(51, 122, 183, 0.12);
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 22px 48px rgba(15, 23, 42, 0.1);
}

.payment-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.15rem;
}

.payment-card-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 750;
    letter-spacing: -0.02em;
}

.payment-card__badge {
    display: inline-flex;
    padding: 0.22rem 0.55rem;
    border-radius: 999px;
    background: rgba(239, 68, 68, 0.1);
    color: #b91c1c;
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.payment-card__step-hint {
    margin: 0.85rem 0 0;
    font-size: 0.8rem;
    line-height: 1.45;
    color: var(--checkout-muted);
    text-align: center;
}

.order-items {
    margin-bottom: 1.15rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.65rem;
    font-size: 0.92rem;
    color: #475569;
}

.order-item-value.is-struck {
    text-decoration: line-through;
    color: #94a3b8;
    font-weight: 500;
}

.order-item-value.is-accent {
    color: var(--checkout-primary);
    font-weight: 750;
}

.order-item-value.is-save {
    color: #15803d;
    font-weight: 700;
}

.order-divider {
    height: 1px;
    background: var(--checkout-line);
    margin: 0.85rem 0;
}

.order-total {
    margin-bottom: 0;
    font-size: 1.05rem;
    font-weight: 750;
    color: var(--checkout-ink);
}

.payment-button {
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: 0.95rem 1.1rem;
    background: linear-gradient(180deg, #3d88c4 0%, var(--checkout-primary) 100%);
    color: #fff;
    font-size: 0.98rem;
    font-weight: 750;
    letter-spacing: 0.01em;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(51, 122, 183, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.45rem;
    min-height: 3.1rem;
}

.payment-button--next {
    width: auto;
    min-width: 12.5rem;
    margin-inline-start: auto;
}

.payment-button:hover:not(:disabled) {
    filter: brightness(1.04);
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(51, 122, 183, 0.34);
}

.payment-button:disabled {
    filter: grayscale(0.25);
    opacity: 0.75;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.payment-button[hidden] {
    display: none !important;
}

.payment-security {
    margin-top: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    font-size: 0.75rem;
    color: var(--checkout-muted);
}

.payment-security svg {
    color: #15803d;
}

.payment-security__logo {
    height: 22px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    display: block;
}

.payment-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.payment-modal[hidden] {
    display: none !important;
}

.payment-modal.is-open {
    display: flex;
}

.payment-modal-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(51, 122, 183, 0.22), transparent 40%),
        rgba(15, 23, 42, 0.62);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.28s ease;
}

.payment-modal.is-open .payment-modal-overlay {
    opacity: 1;
}

.payment-modal-content {
    position: relative;
    z-index: 1001;
    width: min(540px, calc(100vw - 1.5rem));
    max-height: min(92vh, 820px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.55) inset,
        0 28px 80px rgba(15, 23, 42, 0.35);
    transform: translateY(18px) scale(0.97);
    opacity: 0;
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
}

.payment-modal.is-open .payment-modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.payment-modal__header {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.2rem 1.25rem 1rem;
    padding-inline-end: 3.25rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    background:
        linear-gradient(135deg, rgba(51, 122, 183, 0.08), transparent 55%),
        #fff;
}

.payment-modal__heading {
    min-width: 0;
}

.payment-modal__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.45rem;
    padding: 0.22rem 0.55rem;
    border-radius: 999px;
    background: rgba(21, 128, 61, 0.1);
    color: #166534;
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.payment-modal__title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
}

.payment-modal__course {
    margin: 0.3rem 0 0;
    font-size: 0.84rem;
    line-height: 1.35;
    color: #64748b;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.payment-modal__amount {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    padding: 0.55rem 0.75rem;
    border-radius: 12px;
    background: rgba(51, 122, 183, 0.08);
    border: 1px solid rgba(51, 122, 183, 0.14);
    width: fit-content;
    max-width: 100%;
}

.payment-modal__amount-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #64748b;
}

.payment-modal__amount strong {
    font-size: 1rem;
    font-weight: 800;
    color: #337ab7;
    white-space: nowrap;
}

.payment-modal__body {
    position: relative;
    flex: 1 1 auto;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 1.15rem 1.25rem 0.85rem;
    -webkit-overflow-scrolling: touch;
}

.payment-modal__gateway {
    width: 100%;
    min-width: 0;
    min-height: 260px;
}

/* Protect Paymob Pixel from site-wide meyer-reset / global input rules */
#paymob-elements {
    width: 100% !important;
    max-width: 100%;
    min-width: 280px;
    display: block;
}

#paymob-elements *,
#paymob-elements *::before,
#paymob-elements *::after {
    box-sizing: border-box;
}

#paymob-elements input,
#paymob-elements button,
#paymob-elements select,
#paymob-elements textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: normal;
    vertical-align: middle;
}

#paymob-elements iframe {
    width: 100% !important;
    max-width: 100%;
    border: 0;
}

.payment-modal__loading {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.88);
    color: #475569;
    font-size: 0.88rem;
    font-weight: 600;
}

.payment-modal__loading[hidden] {
    display: none !important;
}

.payment-modal__spinner {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    border: 2.5px solid rgba(51, 122, 183, 0.18);
    border-top-color: #337ab7;
    animation: checkout-spin 0.7s linear infinite;
}

.payment-modal__footer {
    padding: 0.85rem 1.2rem 1.1rem;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    background: #fff;
}

.payment-modal__footer p {
    margin: 0;
    font-size: 0.74rem;
    line-height: 1.45;
    color: #64748b;
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 0.95rem;
    inset-inline-end: 0.95rem;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    width: 2.15rem;
    height: 2.15rem;
    display: inline-grid;
    place-items: center;
    cursor: pointer;
    color: #475569;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.modal-close:hover {
    background: #e2e8f0;
    color: #0f172a;
    transform: scale(1.04);
}

body.checkout-modal-open {
    overflow: hidden;
}

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

@media (max-width: 560px) {
    .payment-modal {
        padding: 0.5rem;
        align-items: flex-end;
    }

    .payment-modal-content {
        width: 100%;
        max-height: min(94vh, 900px);
        border-radius: 20px 20px 12px 12px;
    }

    .payment-modal__header {
        padding-inline-end: 3rem;
    }
}

.button-loader {
    display: inline-block;
}

@keyframes checkout-rise {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    /* Flatten main so Order Summary can sit before Personal details */
    .checkout-main {
        display: contents;
    }

    .course-summary-card {
        order: 1;
        grid-template-columns: 1fr;
    }

    .checkout-payment {
        order: 2;
    }

    .checkout-panel {
        order: 3;
    }

    .payment-card {
        position: static;
    }

    .course-summary-card__media {
        min-height: 180px;
        max-height: 220px;
    }

    .payment-button--next {
        width: 100%;
        margin-inline-start: 0;
    }

    .checkout-panel__actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }
}

@media (max-width: 640px) {
    .checkout-container {
        width: min(100% - 24px, 1120px);
    }

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

    .payment-card {
        padding: 1.1rem;
    }

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

@media (prefers-reduced-motion: reduce) {
    .checkout-hero,
    .checkout-main,
    .checkout-payment,
    .checkout-panel {
        animation: none;
    }

    .payment-modal-overlay,
    .payment-modal-content {
        transition: none;
    }

    .payment-modal__spinner {
        animation: none;
    }

    .payment-button:hover:not(:disabled),
    .checkout-method:hover {
        transform: none;
    }
}
