/* Goranked checkout — brand-compliant (Flame Orange, Champion Gold, Graphite) */
:root {
    /* Neutrals (Graphite) */
    --gbco-bg: #0c0f14;
    --gbco-bg-soft: #11151c;
    --gbco-card: #141b24;
    --gbco-border: rgba(0, 0, 0, 0.08);
    --gbco-text: #e7ecf3;
    --gbco-dim: #a9b1bf;

    /* Brand */
    --gbco-primary: #ff8036;
    /* Flame Orange */
    --gbco-primary-2: #ff6a26;
    /* deeper orange for gradient */
    --gbco-secondary: #f4c542;
    /* Champion Gold */
    --gbco-success: #23c199;
    --gbco-danger: #ff4d6d;
    --gbco-warning: #ffb020;

    /* Misc */
    --gbco-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
    --gbco-r-lg: 16px;
    --gbco-r-xl: 20px;
    --gap: 22px;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font:
        16px/1.5 "Open Sans",
        system-ui,
        -apple-system,
        Segoe UI,
        Roboto,
        Ubuntu,
        Arial,
        Helvetica,
        sans-serif;
    color: var(--gbco-text);
    background:
        radial-gradient(1100px 1100px at -10% -10%,
            rgba(255, 128, 54, 0.12),
            transparent 60%),
        radial-gradient(900px 900px at 110% -10%,
            rgba(244, 197, 66, 0.1),
            transparent 60%),
        var(--background-black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-repeat: no-repeat;
}

/* layout */
/* по умолчанию без паддинга (мобилки, планшеты) */
.gbco {
    max-width: 1200px;
    margin: 32px auto 64px;
    padding: 0 18px;
}

/* только для десктопа (экраны от 1024px) */
.gbco__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.gbco__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.gbco__brand-badge {
    padding: 8px;
    border-radius: 16px;
    display: grid;
    border: 1px solid var(--background-70);
    background-color: var(--background-dark-grey);
    place-items: center;
    overflow: hidden;
}

.gbco__brand-badge img {
    display: block;
    width: 32px;
    height: 32px;
}

.gbco__grid {
    display: grid;
    grid-template-columns: minmax(320px, 440px) 1fr;
    gap: 16px;
}

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

    .product {
        min-width: 100px !important;
    }
}

/* cards */
.gbco-card-left {
    background: #111;
    /* height: 100%; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 500px;
    font-family: var(--title-font);
    border: 1px solid var(--background-70);
    border-radius: var(--gbco-r-xl);
    box-shadow: var(--gbco-shadow);
}

@media (max-width: 600px) {
    .gbco-card {
    min-height: 300px;

}
}

.gbco-card-right {
    background: #111;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 500px;
    font-family: var(--title-font);
    border: 1px solid var(--background-70);
    border-radius: var(--gbco-r-xl);
    box-shadow: var(--gbco-shadow);
}

@media (max-width: 600px) {
    .gbco-card {
    min-height: 300px;

}
}

/* left column: methods */
.methods {
    padding: 10px;
}

.methods__title {
    padding: 14px 14px 6px;
    color: var(--gbco-dim);
    font-size: 14px;
}

.method {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: 0.18s ease;
}

.method+.method {
    margin-top: 10px;
}

.method:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: var(--gbco-border);
}

/*
.method__icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    flex: 0 0 38px;
    background: #0f141c;
    border: 1px solid var(--gbco-border);
} */

.method__icon img {
    height: 28px;
}

.method__body {
    flex: 1 1 auto;
}

.method__title {
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: self-start;
    gap: 4px;
}

.product__body {
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.method__desc {
    color: var(--gbco-dim);
    font-size: 13px;
    margin-top: 2px;
}

.method__tick {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #364150;
    color: transparent;
    transition: 0.18s;
}

.method[data-checked="true"] {
    background: rgba(255, 128, 54, 0.1);
    border-color: rgba(255, 128, 54, 0.35);
}

.method[data-checked="true"] .method__tick {
    border-color: transparent;
    background: linear-gradient(160deg,
            var(--gbco-primary),
            var(--gbco-primary-2));
    color: #fff;
}

.method__tick {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #364150;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 22px;
    transition: 0.2s ease;
    background: transparent;
}

.method__tick .circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
    opacity: 0;
    transition: 0.2s ease;
}

.method[data-checked="true"] .method__tick {
    border-color: var(--gbco-primary);
    background: transparent;
}

.method[data-checked="true"] .method__tick .circle {
    background: #fff;
    opacity: 1;
}

.custom-radio {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.custom-radio input {
    display: none;
}

.custom-radio__circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 3px solid #ff6d2e;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    background: transparent;
}

.custom-radio__circle::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #ff6d2e;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.custom-radio input:checked+.custom-radio__circle::after {
    opacity: 1;
}

.custom-radio__label {
    font-size: 15px;
    color: #fff;
}

.checked {
    width: 8px;
    height: 8px;
    border-radius: 16px;
    background-color: #fff;
}

.pay_summ {
    font-size: 28px;
    font-weight: 800;
}

/* trust ribbon */
.trust {
    
    margin-top: 12px ;
    padding: 12px 14px;
    border: 1px dashed var(--gbco-border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gbco-dim);
    border: 1px solid var(--green);
    font-size: 14px;
    background: rgba(35, 193, 153, 0.06);
}

.trust:hover {
    background: rgba(35, 193, 106, 0.099);
}


.trust .stars {
    color: var(--gbco-success);
    font-weight: 700;
}

/* right column: summary */
.summary {
    padding: 18px;
}

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

.summary__title {
    color: var(--gbco-dim);
    font-size: 14px;
}

.summary__amount {
    font-weight: 800;
    font-size: 22px;
}

/* product line */
.product {
    padding: 14px;
    border-radius: 16px;
    background: var(--background-dark-grey);
    border: 1px solid var(--background-70);
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 500px;
    gap: 12px;
}

/* Skin checkout: steam URL on its own row, input not truncated */
.product[data-checkout-type="skin"] {
    flex-wrap: wrap;
}

.product[data-checkout-type="skin"] .checkout-steam-url {
    flex: 1 1 100%;
    min-width: 0;
}

.product[data-checkout-type="skin"] .checkout-steam-url input {
    min-width: 0;
    box-sizing: border-box;
}

.product_container {
    display: flex;
    gap: 16px;
}

.product__logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: #2b1b00;
    /* background: linear-gradient(150deg, var(--gbco-secondary), #d8b12a); */
    border: 1px solid rgba(0, 0, 0, 0.25);
}

/* benefit toggle (warranty) */
.benefit {
    margin: 12px 0 2px;
    background: var(--background-dark-grey);
    border: 1px solid var(--background-70);
    border-radius: 14px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.badge {
    font-size: 13px;
    padding: 3px 8px;
    font-weight: 500;
    border-radius: 999px;
    border: 1px solid var(--gbco-border);
}

.switch {
    --w: 44px;
    --h: 26px;
    width: var(--w);
    height: var(--h);
    border-radius: 999px;
    position: relative;
    cursor: pointer;
    background: #2a3340;
    border: 1px solid #354154;
    transition: 0.2s;
}

.switch__dot {
    position: absolute;
    top: 50%;
    left: 3px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #cfd6e3;
    transition: 0.22s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.switch[data-on="true"] {
    background: var(--gbco-primary);
    border-color: var(--gbco-primary);
}

.switch[data-on="true"] .switch__dot {
    left: calc(var(--w) - 23px);
    background: white;
}

.checkout_subtotal {
    font-weight: 600;
}


.checkout_cashback {
    display: flex;
    align-items: end;
    flex-direction: column;
}

.cashback_avilible {
    font-size: 14px;
    color: #737373;
    margin-top: 5px;
}

.checkout_cashback .input_group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout_cashback input {
    width: 50px;
    border: 2px solid #fff;
    outline: none;
    border-radius: 5px;
    text-align: center;
}

/* breakdown */
.breakdown {
    margin-top: 10px;
    border-top: 1px dashed var(--gbco-border);
    padding-top: 10px;
}

.breakdown__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}

.breakdown__row:last-child {
    border-bottom: none;
}

.muted {
    color: var(--gbco-dim);
    font-size: 14px;
}

/* total + button */
.total {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    margin-top: 48px;
    padding-top: 12px;
    border-top: 1px solid var(--gbco-border);
}

.coins {
    color: var(--gbco-secondary);
    font-weight: 700;
    font-size: 16px;
    padding: 4px 0;
}

.checkout_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 18px;
    border: none;
    font-family: var(--title-font);
    border-radius: 14px;
    background: linear-gradient(45deg, #00ff75 20%, #24c16c 100%);
    color: #000;
    font-weight: 800;
    letter-spacing: 0.2px;
    cursor: pointer;
    transition: 0.18s;
    box-shadow: 0 10px 24px rgba(36, 193, 108, 0.35);
    margin-top: 24px;
}

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

.checkout_btn:focus-visible {
    outline: 0;
    box-shadow:
        0 0 0 3px rgba(36, 193, 108, 0.35),
        0 10px 24px rgba(36, 193, 108, 0.35);
}

.secure {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--title-font);
    gap: 8px;
    opacity: 0.3;
    font-weight: 600;
    color: var(--gbco-dim);
    font-size: 12px;
}

.terms__checkout_new {
    text-align: center;
    font-family: var(--title-font);
    font-size: 14px;
    font-weight: 1000;
    display: flex;
    gap: 4px;
    justify-content: center;
    opacity: 0.6;
    color: var(--background-light-grey);
    margin-top: 16px;
}

.icon-lock {
    width: 14px;
    height: 14px;
    border: 1px solid var(--gbco-border);
    border-radius: 3px;
    display: grid;
    place-items: center;
}

/* helpers */
.right {
    text-align: right;
}

.small {
    font-size: 13px;
}

.bold {
    font-weight: 700;
}

.hr {
    height: 1px;
    background: var(--gbco-border);
    margin: 12px 0 6px;
    border: 0;
}

/* Sticky checkout button (mobile only) */
.checkout-sticky {
    position: static;
}

@media (max-width: 980px) {
    .checkout-sticky {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9999;
        padding: 12px max(16px, env(safe-area-inset-right)) max(12px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
        background: linear-gradient(180deg,
                rgba(12, 15, 20, 0) 0%,
                rgba(12, 15, 20, 0.85) 18%,
                rgba(12, 15, 20, 0.95) 100%);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-top: 1px solid var(--gbco-border, rgba(255, 255, 255, 0.12));
        box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.25);
    }

    .checkout-sticky .checkout_btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        /* ⬅ занимает всю ширину */
        margin: 0;
        /* ⬅ убираем возможные внешние отступы */
        min-height: 52px;
        /* ⬅ удобная зона тапа */
    }

    .checkout-sticky .checkout_price {
        display: inline-flex;
        align-items: center;
        padding: 6px 10px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid var(--gbco-border, rgba(255, 255, 255, 0.12));
        font-weight: 800;
        line-height: 1;
        white-space: nowrap;
    }

    body.has-sticky-checkout {
        /* если без JS — оставь как есть; c JS лучше задавать фактическую высоту бара */
        padding-bottom: calc(84px + env(safe-area-inset-bottom));
    }
}

/* === Guest auth (not logged-in) ======================= */
.auth-guest {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
    background: #111;
    font-family: var(--title-font);
    border: 1px solid var(--background-70);
    border-radius: var(--gbco-r-xl);
    box-shadow: var(--gbco-shadow);
}

.auth-guest__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
    flex-direction: column;
}

.auth-guest__title {
    font-family: var(--title-font);
    font-size: 20px;
    font-weight: 800
}

.auth-guest__signin {
    font-size: 14px;
    color: var(--gbco-dim)
}

.auth-guest__signin a {
    color: var(--gbco-secondary);
    text-decoration: none
}

.auth-guest__signin a:hover {
    text-decoration: underline
}

.contacts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.auth-guest__field input,
.auth-guest__field select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid var(--background-70, rgba(255, 255, 255, 0.08));
    background: var(--background-dark-grey, #111);
    color: var(--gbco-text, #e7ecf3);
    outline: 0;
    transition: .18s ease;
    font: inherit;
}

.auth-guest__field input::placeholder {
    color: var(--gbco-dim)
}

.auth-guest__field input:focus,
.auth-guest__field select:focus {
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 0 3px rgba(255, 128, 54, 0.2);
}

.auth-guest__divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 0
}

.auth-guest__divider::before,
.auth-guest__divider::after {
    content: "";
    height: 1px;
    flex: 1;
    background: var(--gbco-border, rgba(255, 255, 255, 0.08));
}

.auth-guest__divider span {
    font-weight: 800;
    color: var(--gbco-dim);
    text-transform: lowercase
}

.auth-guest__providers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

@media (max-width:540px) {
    .auth-guest__providers {
        grid-template-columns: 1fr
    }
}

.auth-guest__provider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 8px;
    border-radius: 22px;
    background: #2b333e;
    border: 1px solid var(--gbco-border, rgba(255, 255, 255, 0.08));
    text-decoration: none;
    color: var(--gbco-text);
    cursor: pointer;
    transition: .18s ease;
}

.auth-guest__provider:hover {
    background: rgba(255, 255, 255, 0.05)
}

.auth-guest__provider svg {
    width: 24px;
    height: 24px;
    display: block
}

.error {
    padding: 14px;
    border-radius: 16px;
    background: #2b1b00;
    border: 1px solid #ff4d6d;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 500px;
    margin-top: 20px;
    display: none;
    width: min-content;
}

.error a {
    padding: 0 5px;
    text-decoration: underline;
}

.spinner {
    border: 2px solid #f3f3f3;
    /* светлый фон */
    border-top: 2px solid #005D08;
    /* зелёный акцент */
    border-radius: 50%;
    width: 18px;
    height: 18px;
    animation: spin 0.6s linear infinite;
    display: inline-block;
    vertical-align: middle;
    display: none;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ======================================================= */
    /* Cashback Section */
/* ======================================================= */

.cashback-input-group {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 8px;
}

.cashback-input {
    width: 120px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.cashback-input:focus {
    outline: none;
    border-color: var(--gbco-primary);
}

.cashback-btn-apply {
    padding: 8px 16px;
    background: #22c55e;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
}

.cashback-btn-apply:hover {
    background: #16a34a;
}

.cashback-btn-max {
    padding: 8px 12px;
    background: rgba(255, 128, 54, 0.15);
    color: #fff4eb;
    border: 1px solid rgba(255, 128, 54, 0.45);
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: background 0.2s, border-color 0.2s;
}

.cashback-btn-max:hover {
    background: rgba(255, 128, 54, 0.25);
    border-color: rgba(255, 128, 54, 0.6);
}

.cashback-info {
    font-size: 12px;
    line-height: 1.5;
}

.cashback-info > div {
    margin-bottom: 4px;
}

.cashback-info strong {
    font-weight: 600;
}

.cashback-info .text-muted {
    color: #888;
}

/* Кешбек: підказки в потоці документа, на всю ширину блоку — без накладання на «Знижка кешбеком» */
.breakdown__row.breakdown__row--cashback {
    align-items: flex-start !important;
    flex-wrap: wrap;
    min-width: 0;
}

.breakdown__row.breakdown__row--cashback > .cashback-row {
    flex: 1 1 100%;
    min-width: 0;
}

.breakdown__row.breakdown__row--cashback > .cashback-input-error {
    flex: 1 1 100%;
    max-width: 100%;
    min-width: 0;
}

/* New Cashback Row Styles */
.cashback-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
}

.cashback-row__icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.cashback-row__text {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    min-width: 0;
}

.cashback-row__label {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

.cashback-row__balance {
    font-size: 12px;
    color: #b8c1cf;
}

.cashback-row__info {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 4px;
}

.info-icon {
    color: #9ca3af;
    cursor: help;
    transition: color 0.2s ease;
}

.info-icon:hover {
    color: #10b981;
}

.cashback-row__input {
    min-width: 80px;
    flex-shrink: 0;
}

.cashback-row__input-field {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    background: #1f2937;
    color: #ffffff;
    outline: none;
    text-align: right;
    transition: all 0.2s ease;
}

.cashback-row__input-field:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
    background: #374151;
}

.cashback-row__input-field::placeholder {
    color: #9ca3af;
}

.cashback-row__input-field::-webkit-outer-spin-button,
.cashback-row__input-field::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cashback-row__input-field[type=number] {
    -moz-appearance: textfield;
}

.cashback-row__input-field.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
    background: #7f1d1d;
}

.cashback-input-error {
    margin-top: 8px;
    padding: 8px 10px;
    background: rgba(255, 128, 54, 0.18);
    border: 1px solid rgba(255, 128, 54, 0.5);
    border-radius: 6px;
    color: #fff4eb;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: flex-start;
    width: 100px;
    min-width: 0;
    box-sizing: border-box;
}

.cashback-input-error svg {
    flex-shrink: 0;
}



.cashback-discount {
    color: #10b981 !important;
    font-weight: 600;
}

.breakdown__row-right--cashback {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.cashback-max-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: rgba(255, 128, 54, 0.2);
    border: 1px solid rgba(255, 128, 54, 0.5);
    border-radius: 6px;
    color: #fff4eb;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.pay_summ-container {
    position: relative;
}

.pay_summ.original {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 14px;
    margin-bottom: 4px;
}


@media (max-width:768px) {
    .product__body {
    white-space: wrap;
}
}

/* ======================================================= */
/* Checkout seller block (продавець) ====================== */
/* ======================================================= */

.checkout-seller {
    padding: 16px;
    background: var(--background-dark-grey);
    border-radius: 12px;
    border: 1px solid var(--background-70);
    margin-top: 16px;
}

.checkout-seller__content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkout-seller__avatar-wrapper {
    position: relative;
}

.checkout-seller__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.checkout-seller__avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.checkout-seller__online-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #24c16c;
    border: 2px solid rgba(0, 0, 0, 0.8);
    border-radius: 50%;
}

.checkout-seller__info {
    flex: 1;
    min-width: 0;
}

.checkout-seller__header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.checkout-seller__name {
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 600;
}

.checkout-seller__online-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    background: rgba(36, 193, 108, 0.15);
    color: #9af0d3;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.checkout-seller__online-dot {
    width: 6px;
    height: 6px;
    background: #24c16c;
    border-radius: 50%;
}

.checkout-seller__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.checkout-seller__verified,
.checkout-seller__sales {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.checkout-seller__verified svg,
.checkout-seller__sales svg {
    opacity: 0.7;
}

/* ======================================================= */
