* {
    box-sizing: border-box;
}

:root {
    --checkout-bg: #f5f7fb;
    --checkout-text: #111827;
    --checkout-muted: #64748b;
    --checkout-border: #e2e8f0;
    --checkout-purple: #7c3aed;
    --checkout-blue: #2563eb;
    --checkout-green: #16a34a;
    --checkout-orange: #ea580c;
    --checkout-dark: #0f172a;
    --checkout-shadow: 0 22px 54px rgba(15, 23, 42, 0.09);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--checkout-text);
    background:
        radial-gradient(circle at top left, rgba(124, 58, 237, 0.11), transparent 31%),
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.09), transparent 28%),
        var(--checkout-bg);
    font-family: "Inter", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body,
button,
input,
a {
    font-family: "Inter", Arial, sans-serif;
}

a {
    color: inherit;
}

button,
a,
label {
    -webkit-tap-highlight-color: transparent;
}

img {
    max-width: 100%;
}

.checkout-container {
    width: min(1160px, calc(100% - 30px));
    margin: 0 auto;
}

/* Header */
.checkout-topbar {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(226, 232, 240, 0.94);
    backdrop-filter: blur(15px);
}

.checkout-topbar-inner {
    min-height: 70px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.checkout-brand {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    gap: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    text-decoration: none;
}

.checkout-brand img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 12px;
}

.checkout-secure-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #166534;
    font-size: 0.79rem;
}

.checkout-secure-label span {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    background: #dcfce7;
    border-radius: 50%;
}

.checkout-back-link {
    justify-self: end;
    color: #475569;
    font-size: 0.84rem;
    font-weight: 750;
    text-decoration: none;
}

.checkout-back-link:hover {
    color: var(--checkout-purple);
}

/* Main heading */
.checkout-main {
    padding: 48px 0 70px;
}

.checkout-heading {
    max-width: 820px;
    margin: 0 auto 30px;
    text-align: center;
}

.checkout-kicker,
.checkout-summary-label {
    color: var(--checkout-purple);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.checkout-heading h1 {
    margin: 10px 0 10px;
    font-family: "Poppins", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.18;
    letter-spacing: -0.03em;
}

.checkout-heading > p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--checkout-muted);
    line-height: 1.72;
}

.checkout-progress {
    display: grid;
    grid-template-columns: auto minmax(20px, 1fr) auto minmax(20px, 1fr) auto minmax(20px, 1fr) auto;
    align-items: center;
    max-width: 670px;
    margin: 27px auto 0;
}

.checkout-progress-item {
    display: grid;
    justify-items: center;
    gap: 7px;
    color: #94a3b8;
}

.checkout-progress-button {
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.checkout-progress-button > span {
    transition:
        transform 0.16s ease,
        box-shadow 0.16s ease;
}

.checkout-progress-button:hover > span {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(124, 58, 237, 0.22);
}

.checkout-progress-button:focus-visible {
    outline: 3px solid rgba(124, 58, 237, 0.2);
    outline-offset: 6px;
    border-radius: 12px;
}

#checkoutBuyerSection,
#checkoutPhoneSection,
#checkoutConfirmationSection {
    scroll-margin-top: 95px;
}

.checkout-mobile-paybar button.is-disabled {
    background: #94a3b8;
    opacity: 0.75;
    box-shadow: none;
}

.checkout-progress-item > span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    background: #e2e8f0;
    border-radius: 50%;
    font-size: 0.78rem;
    font-weight: 900;
}

.checkout-progress-item strong {
    font-size: 0.7rem;
    white-space: nowrap;
}

.checkout-progress-item.is-complete,
.checkout-progress-item.is-active {
    color: var(--checkout-purple);
}

.checkout-progress-item.is-complete > span,
.checkout-progress-item.is-active > span {
    color: #ffffff;
    background: linear-gradient(135deg, var(--checkout-purple), var(--checkout-blue));
}

.checkout-progress-line {
    height: 2px;
    margin: 0 8px 25px;
    background: #dbe3ef;
}

.checkout-progress-line.is-active {
    background: linear-gradient(90deg, var(--checkout-purple), var(--checkout-blue));
}

/* Grid and cards */
.checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.14fr) minmax(340px, 0.86fr);
    gap: 25px;
    align-items: start;
}

.checkout-card {
    background: #ffffff;
    border: 1px solid var(--checkout-border);
    border-radius: 26px;
    box-shadow: var(--checkout-shadow);
}

.checkout-form-card {
    padding: 30px;
}

.checkout-card-heading {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding-bottom: 22px;
    margin-bottom: 23px;
    border-bottom: 1px solid var(--checkout-border);
}

.checkout-card-icon {
    flex: 0 0 auto;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    background: linear-gradient(135deg, #eef2ff, #eff6ff);
    border: 1px solid #c7d2fe;
    border-radius: 15px;
    font-size: 1.35rem;
}

.checkout-card-heading > div:last-child {
    display: grid;
    gap: 5px;
}

.checkout-card-heading span {
    color: var(--checkout-purple);
    font-size: 0.67rem;
    font-weight: 900;
    letter-spacing: 0.09em;
}

.checkout-card-heading h2 {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 1.55rem;
    line-height: 1.25;
}

.checkout-card-heading p {
    margin: 0;
    color: var(--checkout-muted);
    font-size: 0.86rem;
    line-height: 1.55;
}

/* Alerts */
.checkout-alert {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 15px 16px;
    margin-bottom: 19px;
    border: 1px solid;
    border-radius: 15px;
    line-height: 1.5;
}

.checkout-alert-icon {
    flex: 0 0 auto;
}

.checkout-alert ul {
    display: grid;
    gap: 4px;
    margin: 8px 0 0 18px;
    padding: 0;
}

.checkout-alert-danger {
    color: #9f1239;
    background: #fff1f2;
    border-color: #fda4af;
}

/* Selected product */
.checkout-selected-product {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 13px;
    padding: 15px;
    margin-bottom: 21px;
    background: #f8fafc;
    border: 1px solid var(--checkout-border);
    border-radius: 16px;
}

.checkout-selected-product-icon {
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    background: #ffffff;
    border: 1px solid var(--checkout-border);
    border-radius: 13px;
    font-size: 1.2rem;
}

.checkout-selected-product > div:nth-child(2) {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.checkout-selected-product span {
    color: var(--checkout-muted);
    font-size: 0.72rem;
}

.checkout-selected-product strong {
    font-size: 0.92rem;
}

.checkout-selected-product small {
    color: var(--checkout-muted);
    font-size: 0.74rem;
}

.checkout-selected-product a {
    color: var(--checkout-purple);
    font-size: 0.76rem;
    font-weight: 850;
}

/* Form */
.checkout-form-group {
    margin-bottom: 19px;
}

.checkout-form-group > label {
    display: block;
    margin-bottom: 8px;
    color: #334155;
    font-size: 0.88rem;
    font-weight: 800;
}

.checkout-required {
    color: #dc2626;
}

.checkout-phone-input {
    position: relative;
}

.checkout-phone-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    pointer-events: none;
}

.checkout-phone-input input {
    width: 100%;
    min-height: 54px;
    padding: 14px 15px 14px 46px;
    color: var(--checkout-text);
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 14px;
    font-size: 1rem;
    transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.checkout-phone-input input:hover {
    border-color: #94a3b8;
}

.checkout-phone-input input:focus {
    outline: none;
    border-color: var(--checkout-purple);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.11);
}

.checkout-phone-input input.is-invalid {
    border-color: #e11d48;
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.09);
}

.checkout-phone-input input.is-valid {
    border-color: #16a34a;
}

.checkout-field-help,
.checkout-field-error {
    display: block;
    margin-top: 8px;
    font-size: 0.77rem;
    line-height: 1.5;
}

.checkout-field-help {
    color: var(--checkout-muted);
}

.checkout-field-error {
    min-height: 0;
    color: #be123c;
    font-weight: 700;
}

.checkout-why-phone {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 14px;
    margin-bottom: 20px;
    color: #1e3a8a;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 14px;
}

.checkout-why-phone > div:last-child {
    display: grid;
    gap: 5px;
}

.checkout-why-phone strong {
    font-size: 0.82rem;
}

.checkout-why-phone p {
    margin: 0;
    color: #475569;
    font-size: 0.76rem;
    line-height: 1.55;
}

/* Confirmations */
.checkout-confirmation-box {
    min-width: 0;
    display: grid;
    gap: 10px;
    padding: 17px;
    margin: 0 0 22px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 17px;
}

.checkout-confirmation-box legend {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 7px;
    color: #9a3412;
    font-size: 0.86rem;
    font-weight: 850;
}

.checkout-confirmation-item {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    gap: 11px;
    padding: 13px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid #fed7aa;
    border-radius: 13px;
    cursor: pointer;
    transition: border-color 0.16s ease, background 0.16s ease, transform 0.16s ease;
}

.checkout-confirmation-item:hover {
    background: #ffffff;
    border-color: #fb923c;
}

.checkout-confirmation-item input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.checkout-custom-check {
    display: grid;
    width: 23px;
    height: 23px;
    place-items: center;
    color: transparent;
    background: #ffffff;
    border: 2px solid #fdba74;
    border-radius: 7px;
    font-size: 0.8rem;
    font-weight: 900;
    transition: all 0.16s ease;
}

.checkout-confirmation-item input:checked + .checkout-custom-check {
    color: #ffffff;
    background: linear-gradient(135deg, var(--checkout-purple), var(--checkout-blue));
    border-color: var(--checkout-purple);
}

.checkout-confirmation-item input:focus-visible + .checkout-custom-check {
    outline: 3px solid rgba(124, 58, 237, 0.18);
    outline-offset: 2px;
}

.checkout-confirmation-item > span:last-child {
    display: grid;
    gap: 4px;
}

.checkout-confirmation-item strong {
    color: #7c2d12;
    font-size: 0.82rem;
}

.checkout-confirmation-item small {
    color: #9a3412;
    font-size: 0.73rem;
    line-height: 1.5;
}

/* Submit */
.checkout-submit-button,
.checkout-manual-button {
    width: 100%;
    border: 0;
    border-radius: 999px;
    text-decoration: none;
}

.checkout-submit-button {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    min-height: 61px;
    padding: 11px 18px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--checkout-purple), var(--checkout-blue));
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(124, 58, 237, 0.25);
    transition: transform 0.16s ease, opacity 0.16s ease, box-shadow 0.16s ease;
}

.checkout-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(124, 58, 237, 0.31);
}

.checkout-submit-button > span:nth-child(2) {
    display: grid;
    gap: 2px;
    text-align: left;
}

.checkout-submit-button strong {
    font-size: 0.88rem;
}

.checkout-submit-button small {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.65rem;
    font-weight: 600;
}

.checkout-button-arrow {
    font-size: 1.15rem;
}

.checkout-submit-button.is-loading,
.checkout-submit-button.is-loading:disabled {
    color: #ffffff;
    background: linear-gradient(135deg, var(--checkout-purple), var(--checkout-blue));
    cursor: wait;
    opacity: 0.82;
    transform: none;
    box-shadow: 0 13px 28px rgba(124, 58, 237, 0.22);
}

.checkout-submit-button:disabled:not(.is-loading) {
    color: #ffffff;
    background: #94a3b8;
    cursor: not-allowed;
    opacity: 0.72;
    transform: none;
    box-shadow: none;
}

.checkout-payment-assurance {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 14px;
    margin-top: 14px;
    color: #475569;
    font-size: 0.68rem;
    font-weight: 700;
}

.checkout-stage-note {
    margin: 10px 0 0;
    color: var(--checkout-muted);
    font-size: 0.72rem;
    line-height: 1.55;
    text-align: center;
}

/* Summary */
.checkout-summary-card {
    position: sticky;
    top: 91px;
    overflow: hidden;
}

.checkout-summary-visual {
    position: relative;
    padding: 23px;
    background:
        radial-gradient(circle at top left, rgba(124, 58, 237, 0.42), transparent 37%),
        linear-gradient(135deg, #0f172a, #172554);
}

.checkout-summary-visual img {
    display: block;
    width: min(245px, 100%);
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 17px 36px rgba(0, 0, 0, 0.22);
}

.checkout-popular-badge {
    position: absolute;
    top: 17px;
    left: 18px;
    z-index: 2;
    padding: 7px 10px;
    color: #ffffff;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 900;
}

.checkout-stock-badge {
    display: flex;
    width: max-content;
    max-width: 100%;
    align-items: center;
    gap: 7px;
    margin: 14px auto 0;
    padding: 7px 11px;
    color: #dcfce7;
    background: rgba(22, 101, 52, 0.42);
    border: 1px solid rgba(134, 239, 172, 0.3);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
}

.checkout-stock-badge span {
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.13);
}

.checkout-summary-content {
    padding: 24px;
}

.checkout-summary-content h2 {
    margin: 8px 0 5px;
    font-family: "Poppins", sans-serif;
    font-size: 1.35rem;
    line-height: 1.35;
}

.checkout-summary-product {
    color: var(--checkout-muted);
    font-size: 0.76rem;
}

.checkout-price {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    margin: 20px 0 4px;
}

.checkout-price span {
    margin-top: 7px;
    color: var(--checkout-muted);
    font-weight: 800;
}

.checkout-price strong {
    font-family: "Poppins", sans-serif;
    font-size: 2.45rem;
    line-height: 1;
    letter-spacing: -0.03em;
}

.checkout-price-caption {
    margin: 0 0 17px;
    color: var(--checkout-muted);
    font-size: 0.7rem;
    line-height: 1.5;
}

.checkout-summary-list {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--checkout-border);
    border-radius: 15px;
}

.checkout-summary-list > div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 13px;
    border-bottom: 1px solid var(--checkout-border);
    font-size: 0.77rem;
}

.checkout-summary-list > div:last-child {
    border-bottom: 0;
}

.checkout-summary-list span {
    color: var(--checkout-muted);
}

.checkout-summary-list strong {
    text-align: right;
}

.checkout-project-safe {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-top: 15px;
    padding: 14px;
    color: #166534;
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 14px;
}

.checkout-project-safe > div:first-child {
    flex: 0 0 auto;
    font-size: 1.2rem;
}

.checkout-project-safe > div:last-child {
    display: grid;
    gap: 4px;
}

.checkout-project-safe strong {
    font-size: 0.82rem;
}

.checkout-project-safe p {
    margin: 0;
    color: #15803d;
    font-size: 0.72rem;
    line-height: 1.5;
}

.checkout-flow-box {
    display: grid;
    gap: 10px;
    margin-top: 15px;
    padding: 14px;
    background: #f8fafc;
    border: 1px solid var(--checkout-border);
    border-radius: 14px;
}

.checkout-flow-box > strong {
    font-size: 0.8rem;
}

.checkout-flow-box > div {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 9px;
}

.checkout-flow-box span {
    display: grid;
    width: 23px;
    height: 23px;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--checkout-purple), var(--checkout-blue));
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 900;
}

.checkout-flow-box p {
    margin: 0;
    color: #475569;
    font-size: 0.72rem;
    line-height: 1.5;
}

.checkout-fee-note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 15px;
    padding: 13px;
    color: #475569;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 13px;
}

.checkout-fee-note p {
    margin: 0;
    font-size: 0.71rem;
    line-height: 1.55;
}

.checkout-manual-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
    color: #94a3b8;
    font-size: 0.68rem;
    font-weight: 800;
}

.checkout-manual-divider::before,
.checkout-manual-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--checkout-border);
}

.checkout-manual-button {
    display: flex;
    min-height: 49px;
    align-items: center;
    justify-content: center;
    padding: 12px 15px;
    color: #ffffff;
    background: linear-gradient(135deg, #15803d, #22c55e);
    font-size: 0.82rem;
    font-weight: 850;
    text-align: center;
    box-shadow: 0 11px 24px rgba(34, 197, 94, 0.19);
}

/* Info section */
.checkout-info-section {
    padding-top: 38px;
}

.checkout-info-heading {
    margin-bottom: 20px;
    text-align: center;
}

.checkout-info-heading span {
    color: var(--checkout-purple);
    font-size: 0.69rem;
    font-weight: 900;
    letter-spacing: 0.09em;
}

.checkout-info-heading h2 {
    margin: 7px 0 0;
    font-family: "Poppins", sans-serif;
    font-size: 1.55rem;
}

.checkout-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 13px;
}

.checkout-info-card {
    display: grid;
    gap: 7px;
    min-height: 145px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid var(--checkout-border);
    border-radius: 17px;
    box-shadow: 0 9px 22px rgba(15, 23, 42, 0.04);
}

.checkout-info-card > div {
    font-size: 1.35rem;
}

.checkout-info-card strong {
    font-size: 0.88rem;
}

.checkout-info-card span {
    color: var(--checkout-muted);
    font-size: 0.76rem;
    line-height: 1.55;
}

/* Mobile paybar */
.checkout-mobile-paybar {
    display: none;
}

/* Responsive */
@media (max-width: 920px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .checkout-summary-card {
        position: static;
        order: -1;
    }

    .checkout-summary-visual {
        display: grid;
        grid-template-columns: 150px 1fr;
        align-items: center;
        gap: 18px;
    }

    .checkout-summary-visual img {
        width: 150px;
        margin: 0;
    }

    .checkout-stock-badge {
        margin: 0;
    }

    .checkout-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    body {
        padding-bottom: 78px;
    }

    .checkout-container {
        width: min(100% - 20px, 1160px);
    }

    .checkout-topbar-inner {
        min-height: 64px;
        grid-template-columns: 1fr auto;
    }

    .checkout-brand img {
        width: 38px;
        height: 38px;
    }

    .checkout-brand span {
        font-size: 0.93rem;
    }

    .checkout-secure-label {
        display: none;
    }

    .checkout-back-link {
        font-size: 0.73rem;
    }

    .checkout-main {
        padding: 30px 0 45px;
    }

    .checkout-heading {
        margin-bottom: 22px;
    }

    .checkout-heading h1 {
        font-size: 1.85rem;
    }

    .checkout-heading > p {
        font-size: 0.87rem;
        line-height: 1.62;
    }

    .checkout-progress {
        grid-template-columns: repeat(4, 1fr);
        gap: 5px;
        margin-top: 21px;
    }

    .checkout-progress-line {
        display: none;
    }

    .checkout-progress-item {
        gap: 5px;
    }

    .checkout-progress-item > span {
        width: 30px;
        height: 30px;
    }

    .checkout-progress-item strong {
        font-size: 0.59rem;
        white-space: normal;
        line-height: 1.3;
    }

    .checkout-card {
        border-radius: 21px;
    }

    .checkout-form-card {
        padding: 19px 14px;
    }

    .checkout-card-heading {
        gap: 11px;
        padding-bottom: 18px;
        margin-bottom: 18px;
    }

    .checkout-card-icon {
        width: 43px;
        height: 43px;
    }

    .checkout-card-heading h2 {
        font-size: 1.25rem;
    }

    .checkout-card-heading p {
        font-size: 0.78rem;
    }

    .checkout-selected-product {
        grid-template-columns: auto 1fr;
    }

    .checkout-selected-product a {
        grid-column: 2;
        justify-self: start;
    }

    .checkout-confirmation-box {
        padding: 14px 11px;
    }

    .checkout-confirmation-item {
        padding: 12px 10px;
    }

    .checkout-submit-button {
        grid-template-columns: auto 1fr auto;
        padding: 10px 14px;
    }

    .checkout-payment-assurance {
        display: grid;
        justify-content: start;
        padding: 0 5px;
    }

    .checkout-summary-card {
        display: grid;
        grid-template-columns: 118px 1fr;
        align-items: stretch;
        overflow: hidden;
    }

    .checkout-summary-visual {
        display: block;
        padding: 12px;
    }

    .checkout-summary-visual img {
        width: 100%;
        margin: 0;
        border-radius: 15px;
    }

    .checkout-popular-badge {
        display: none;
    }

    .checkout-stock-badge {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
        padding: 6px;
        font-size: 0.58rem;
        text-align: center;
    }

    .checkout-summary-content {
        min-width: 0;
        padding: 16px 13px;
    }

    .checkout-summary-content h2 {
        margin-top: 5px;
        font-size: 1rem;
    }

    .checkout-summary-product,
    .checkout-price-caption,
    .checkout-flow-box,
    .checkout-fee-note,
    .checkout-manual-divider,
    .checkout-manual-button {
        display: none;
    }

    .checkout-price {
        margin: 12px 0 9px;
    }

    .checkout-price strong {
        font-size: 1.65rem;
    }

    .checkout-summary-list {
        border: 0;
        border-radius: 0;
    }

    .checkout-summary-list > div {
        display: none;
        padding: 7px 0;
        border: 0;
    }

    .checkout-summary-list > div:nth-child(2),
    .checkout-summary-list > div:nth-child(3) {
        display: flex;
    }

    .checkout-project-safe {
        margin-top: 9px;
        padding: 9px;
    }

    .checkout-project-safe p {
        display: none;
    }

    .checkout-info-section {
        padding-top: 30px;
    }

    .checkout-info-heading h2 {
        font-size: 1.3rem;
    }

    .checkout-info-grid {
        grid-template-columns: 1fr;
    }

    .checkout-info-card {
        grid-template-columns: auto 1fr;
        min-height: 0;
        align-items: start;
        gap: 4px 11px;
        padding: 15px;
    }

    .checkout-info-card > div {
        grid-row: 1 / 3;
    }

    .checkout-mobile-paybar {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 80;
        display: flex;
        min-height: 70px;
        align-items: center;
        justify-content: space-between;
        gap: 13px;
        padding: 10px 12px;
        background: rgba(255, 255, 255, 0.97);
        border-top: 1px solid var(--checkout-border);
        box-shadow: 0 -12px 32px rgba(15, 23, 42, 0.13);
        backdrop-filter: blur(14px);
    }

    .checkout-mobile-paybar > div {
        display: grid;
        gap: 2px;
    }

    .checkout-mobile-paybar span {
        color: var(--checkout-muted);
        font-size: 0.66rem;
    }

    .checkout-mobile-paybar strong {
        font-size: 0.98rem;
    }

    .checkout-mobile-paybar button {
        min-height: 46px;
        padding: 11px 18px;
        color: #ffffff;
        background: linear-gradient(135deg, var(--checkout-purple), var(--checkout-blue));
        border: 0;
        border-radius: 999px;
        font-size: 0.8rem;
        font-weight: 850;
        box-shadow: 0 10px 22px rgba(124, 58, 237, 0.23);
    }

    .checkout-mobile-paybar button:disabled {
        background: #94a3b8;
        opacity: 0.75;
        box-shadow: none;
    }
}
