.bmb-sell,
.bmb-sell * {
    box-sizing: border-box;
}

.bmb-sell {
    --bmb-blue: #62b4e4;
    --bmb-blue-strong: #238fc9;
    --bmb-blue-deep: #1475aa;
    --bmb-ink: #0d1821;
    --bmb-ink-soft: #263640;
    --bmb-muted: #62727d;
    --bmb-line: #dbe5eb;
    --bmb-soft: #f3f8fb;
    --bmb-soft-blue: #eaf6fc;
    --bmb-white: #ffffff;
    --bmb-danger: #b42318;
    --bmb-success: #157347;
    --bmb-radius-sm: 10px;
    --bmb-radius: 18px;
    --bmb-radius-lg: 28px;
    --bmb-shadow: 0 22px 60px rgba(13, 24, 33, 0.12);
    --bmb-shadow-soft: 0 12px 34px rgba(13, 24, 33, 0.08);
    color: var(--bmb-ink);
    font-family: inherit;
    line-height: 1.5;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: var(--bmb-white);
}

.bmb-sell a {
    color: inherit;
}

.bmb-sell button,
.bmb-sell input,
.bmb-sell textarea,
.bmb-sell select {
    font: inherit;
}

.bmb-sell__container {
    width: min(1240px, calc(100% - 40px));
    margin-inline: auto;
}

.bmb-sell__hero {
    position: relative;
    padding: clamp(34px, 5vw, 76px) 0 clamp(42px, 6vw, 88px);
    background:
            radial-gradient(circle at 7% 4%, rgba(98, 180, 228, 0.24), transparent 31%),
            linear-gradient(135deg, #f8fbfd 0%, #eef6fa 58%, #ffffff 100%);
}

.bmb-sell__hero::after {
    content: "";
    position: absolute;
    right: -8%;
    bottom: -150px;
    width: 560px;
    height: 330px;
    border-radius: 50%;
    border: 76px solid rgba(98, 180, 228, 0.09);
    pointer-events: none;
    z-index: -1;
}

.bmb-sell__hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(430px, 0.96fr);
    gap: clamp(34px, 5vw, 70px);
    align-items: start;
}

.bmb-sell__copy {
    padding-top: clamp(4px, 1.5vw, 18px);
}

.bmb-sell__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 18px;
    padding: 7px 12px;
    border: 1px solid rgba(35, 143, 201, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--bmb-blue-deep);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.095em;
    text-transform: uppercase;
}

.bmb-sell__eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bmb-blue-strong);
    box-shadow: 0 0 0 5px rgba(98, 180, 228, 0.16);
}

.bmb-sell__title {
    max-width: 760px;
    margin: 0;
    color: var(--bmb-ink);
    font-size: clamp(2.35rem, 5vw, 4.65rem);
    font-weight: 850;
    letter-spacing: -0.048em;
    line-height: 0.98;
    text-wrap: balance;
}

.bmb-sell__title-accent {
    color: var(--bmb-blue-strong);
}

.bmb-sell__lede {
    max-width: 680px;
    margin: 24px 0 0;
    color: var(--bmb-ink-soft);
    font-size: clamp(1.03rem, 1.5vw, 1.24rem);
    line-height: 1.7;
}

.bmb-sell__confidence {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
    color: var(--bmb-ink-soft);
    font-size: 0.93rem;
    font-weight: 700;
}

.bmb-sell__confidence li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.bmb-sell__confidence svg {
    flex: 0 0 auto;
    color: var(--bmb-blue-deep);
}

.bmb-sell__phone-card {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-top: 27px;
    padding: 12px 16px 12px 12px;
    border: 1px solid rgba(13, 24, 33, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 8px 28px rgba(13, 24, 33, 0.06);
    text-decoration: none;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.bmb-sell__phone-card:hover {
    transform: translateY(-2px);
    border-color: rgba(35, 143, 201, 0.45);
    box-shadow: 0 12px 30px rgba(13, 24, 33, 0.1);
}

.bmb-sell__phone-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: var(--bmb-ink);
    color: var(--bmb-white);
}

.bmb-sell__phone-copy {
    display: grid;
    gap: 1px;
}

.bmb-sell__phone-copy small {
    color: var(--bmb-muted);
    font-size: 0.77rem;
    font-weight: 700;
    letter-spacing: 0.025em;
}

.bmb-sell__phone-copy strong {
    color: var(--bmb-ink);
    font-size: 1.08rem;
    letter-spacing: -0.01em;
}

.bmb-sell__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
}

.bmb-sell__step {
    min-width: 0;
    padding: 15px 14px;
    border: 1px solid rgba(13, 24, 33, 0.09);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
}

.bmb-sell__step-number {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    margin-bottom: 10px;
    border-radius: 9px;
    background: var(--bmb-blue-strong);
    color: var(--bmb-white);
    font-size: 0.78rem;
    font-weight: 900;
}

.bmb-sell__step strong {
    display: block;
    color: var(--bmb-ink);
    font-size: 0.92rem;
    line-height: 1.25;
}

.bmb-sell__visual {
    position: relative;
    min-height: 246px;
    margin-top: 26px;
    overflow: hidden;
    border-radius: var(--bmb-radius);
    background:
            linear-gradient(135deg, rgba(13, 24, 33, 0.94), rgba(35, 143, 201, 0.76)),
            #172a36;
    box-shadow: var(--bmb-shadow-soft);
}

.bmb-sell__visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 246px;
    object-fit: cover;
    opacity: 0.78;
}

.bmb-sell__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13, 24, 33, 0.86) 0%, rgba(13, 24, 33, 0.3) 72%, transparent 100%);
}

.bmb-sell__visual-copy {
    position: absolute;
    left: 22px;
    bottom: 21px;
    z-index: 1;
    max-width: 330px;
    color: var(--bmb-white);
}

.bmb-sell__visual-copy strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1.18rem;
}

.bmb-sell__visual-copy span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.bmb-sell__form-card {
    position: sticky;
    top: 24px;
    padding: clamp(23px, 3vw, 34px);
    border: 1px solid rgba(13, 24, 33, 0.09);
    border-radius: var(--bmb-radius-lg);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--bmb-shadow);
    backdrop-filter: blur(12px);
}

.bmb-sell__form-kicker {
    margin: 0 0 6px;
    color: var(--bmb-blue-deep);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.095em;
    text-transform: uppercase;
}

.bmb-sell__form-title {
    margin: 0;
    color: var(--bmb-ink);
    font-size: clamp(1.65rem, 3vw, 2.2rem);
    font-weight: 850;
    letter-spacing: -0.035em;
    line-height: 1.1;
}

.bmb-sell__form-intro {
    margin: 9px 0 0;
    color: var(--bmb-muted);
    font-size: 0.94rem;
}

.bmb-sell__completion-note {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 16px;
    padding: 10px 12px;
    border-radius: 11px;
    background: var(--bmb-soft-blue);
    color: var(--bmb-ink-soft);
    font-size: 0.84rem;
    font-weight: 700;
}

.bmb-sell__form-owner {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.bmb-sell__form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
    margin-top: 23px;
}

.bmb-sell__field {
    min-width: 0;
}

.bmb-sell__field--full {
    grid-column: 1 / -1;
}

.bmb-sell__label-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 7px;
}

.bmb-sell__label {
    display: inline-block;
    margin: 0;
    color: var(--bmb-ink);
    font-size: 0.87rem;
    font-weight: 800;
}

.bmb-sell__required {
    color: var(--bmb-danger);
}

.bmb-sell__optional {
    color: var(--bmb-muted);
    font-size: 0.76rem;
    font-weight: 650;
}

.bmb-sell__native-control,
.bmb-sell input.bmb-sell__native-control,
.bmb-sell textarea.bmb-sell__native-control,
.bmb-sell select.bmb-sell__native-control {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 48px !important;
    margin: 0 !important;
    padding: 0 14px !important;
    border: 1px solid #cbd8df !important;
    border-radius: var(--bmb-radius-sm) !important;
    outline: 0 !important;
    background: var(--bmb-white) !important;
    color: var(--bmb-ink) !important;
    box-shadow: 0 1px 2px rgba(13, 24, 33, 0.02) !important;
    font-size: 16px !important;
    line-height: 1.3 !important;
    transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease !important;
}

.bmb-sell textarea.bmb-sell__native-control {
    min-height: 126px !important;
    height: 126px !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    resize: vertical !important;
}

.bmb-sell__native-control::placeholder {
    color: #8998a2 !important;
    opacity: 1;
}

.bmb-sell [data-control-mount] .intl-tel-input {
    display: block;
    width: 100%;
}

.bmb-sell [data-control-mount] .intl-tel-input.allow-dropdown input.bmb-sell__native-control,
.bmb-sell [data-control-mount] .intl-tel-input.separate-dial-code input.bmb-sell__native-control {
    padding-right: 14px !important;
    padding-left: 60px !important;
}

.bmb-sell__native-control:hover {
    border-color: #a8bbc6 !important;
}

.bmb-sell__native-control:focus {
    border-color: var(--bmb-blue-strong) !important;
    box-shadow: 0 0 0 4px rgba(35, 143, 201, 0.14) !important;
}

.bmb-sell__native-control[aria-invalid="true"] {
    border-color: var(--bmb-danger) !important;
    background: #fffafa !important;
    box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.09) !important;
}

.bmb-sell__field-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 6px;
    min-height: 18px;
}

.bmb-sell__hint,
.bmb-sell__counter {
    color: var(--bmb-muted);
    font-size: 0.75rem;
}

.bmb-sell__error {
    display: none;
    margin-top: 6px;
    color: var(--bmb-danger);
    font-size: 0.78rem;
    font-weight: 700;
}

.bmb-sell__error:not(:empty) {
    display: block;
}

.bmb-sell__error-summary {
    display: none;
    margin-top: 18px;
    padding: 13px 14px;
    border: 1px solid rgba(180, 35, 24, 0.24);
    border-radius: 11px;
    background: #fff5f4;
    color: #7a271a;
    font-size: 0.86rem;
}

.bmb-sell__error-summary.is-visible {
    display: block;
}

.bmb-sell__error-summary strong {
    display: block;
    margin-bottom: 4px;
}

.bmb-sell__error-summary ul {
    margin: 0;
    padding-left: 18px;
}

.bmb-sell__status .alert {
    margin: 18px 0 0;
}

.bmb-sell__upload-shell {
    position: relative;
    min-height: 166px;
    padding: 19px;
    border: 2px dashed #b7d6e6;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8fcfe, #eef8fd);
    text-align: center;
    cursor: pointer;
    transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.bmb-sell__upload-shell:hover,
.bmb-sell__upload-shell.is-dragging {
    border-color: var(--bmb-blue-strong);
    background: #eaf7fd;
}

.bmb-sell__upload-shell.is-dragging {
    transform: scale(1.008);
}

.bmb-sell__upload-shell.is-invalid {
    border-color: var(--bmb-danger);
    background: #fffafa;
}

.bmb-sell__upload-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin: 0 auto 9px;
    border-radius: 13px;
    background: var(--bmb-white);
    color: var(--bmb-blue-deep);
    box-shadow: 0 8px 24px rgba(13, 24, 33, 0.08);
}

.bmb-sell__upload-title {
    display: block;
    color: var(--bmb-ink);
    font-size: 0.96rem;
    font-weight: 850;
}

.bmb-sell__upload-copy {
    display: block;
    margin-top: 3px;
    color: var(--bmb-muted);
    font-size: 0.8rem;
}

.bmb-sell__browse-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    margin-top: 11px;
    padding: 0 14px;
    border: 1px solid rgba(35, 143, 201, 0.3);
    border-radius: 9px;
    background: var(--bmb-white);
    color: var(--bmb-blue-deep);
    font-size: 0.82rem;
    font-weight: 850;
    cursor: pointer;
}

.bmb-sell__upload-mount {
    margin-top: 10px;
}

.bmb-sell__upload-mount:empty {
    display: none;
}

.bmb-sell__upload-mount #uploadedPictures {
    justify-content: center;
    margin: 18px 0 0;
}

.bmb-sell__upload-mount #uploadedPictures figure {
    margin: 0;
    background: var(--bmb-white);
}

.bmb-sell__upload-mount input[type="file"],
.bmb-sell input.bmb-sell__managed-file-input {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    border: 0 !important;
    white-space: nowrap !important;
}

.bmb-sell__upload-mount .dropzone,
.bmb-sell__upload-mount [class*="dropzone"],
.bmb-sell__upload-mount .qq-uploader,
.bmb-sell__upload-mount [class*="file-upload"],
.bmb-sell__upload-mount [class*="fileupload"] {
    min-height: 0 !important;
    margin: 0 !important;
    padding: 8px !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.bmb-sell__upload-mount .dz-message {
    margin: 0 !important;
}

.bmb-sell__upload-mount .dz-button {
    color: var(--bmb-blue-deep) !important;
    font-weight: 800 !important;
}

.bmb-sell__file-list {
    display: grid;
    gap: 7px;
    margin-top: 10px;
}

.bmb-sell__file-list:empty {
    display: none;
}

.bmb-sell__file-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 10px;
    border: 1px solid var(--bmb-line);
    border-radius: 9px;
    background: var(--bmb-white);
    text-align: left;
}

.bmb-sell__file-thumb {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    overflow: hidden;
    border-radius: 7px;
    background: var(--bmb-soft);
    color: var(--bmb-blue-deep);
}

.bmb-sell__file-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bmb-sell__file-info {
    min-width: 0;
    flex: 1;
}

.bmb-sell__file-name {
    display: block;
    overflow: hidden;
    color: var(--bmb-ink-soft);
    font-size: 0.78rem;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bmb-sell__file-size {
    display: block;
    color: var(--bmb-muted);
    font-size: 0.7rem;
}

.bmb-sell__remove-file {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: var(--bmb-muted);
    cursor: pointer;
}

.bmb-sell__remove-file:hover {
    background: #fff0ee;
    color: var(--bmb-danger);
}

.bmb-sell__photo-tips-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 10px;
    color: var(--bmb-muted);
    font-size: 0.73rem;
}

.bmb-sell__photo-tips-inline span {
    padding: 4px 7px;
    border-radius: 999px;
    background: rgba(13, 24, 33, 0.05);
}

.bmb-sell__submit-wrap {
    margin-top: 19px;
}

.bmb-sell__submit-wrap [data-progress-mount] .progress {
    margin-top: 14px;
}

.bmb-sell__submit,
.bmb-sell button.bmb-sell__submit,
.bmb-sell input.bmb-sell__submit {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: 54px !important;
    margin: 0 !important;
    padding: 0 22px !important;
    border: 0 !important;
    border-radius: 12px !important;
    background: var(--bmb-blue-strong) !important;
    color: var(--bmb-white) !important;
    box-shadow: 0 10px 24px rgba(35, 143, 201, 0.28) !important;
    font-size: 1rem !important;
    font-weight: 850 !important;
    letter-spacing: -0.01em !important;
    text-align: center !important;
    text-decoration: none !important;
    cursor: pointer !important;
    appearance: none !important;
    transition: transform 150ms ease, background 150ms ease, box-shadow 150ms ease !important;
}

.bmb-sell__submit:hover {
    background: var(--bmb-blue-deep) !important;
    box-shadow: 0 13px 27px rgba(20, 117, 170, 0.32) !important;
    transform: translateY(-1px);
}

.bmb-sell__submit:focus-visible,
.bmb-sell__browse-button:focus-visible,
.bmb-sell__remove-file:focus-visible,
.bmb-sell summary:focus-visible,
.bmb-sell a:focus-visible {
    outline: 3px solid rgba(35, 143, 201, 0.3) !important;
    outline-offset: 3px !important;
}

.bmb-sell__submit.is-submitting {
    pointer-events: none !important;
    opacity: 0.82 !important;
}

.bmb-sell__submit-note {
    margin: 10px 0 0;
    color: var(--bmb-muted);
    font-size: 0.76rem;
    text-align: center;

    svg {
        display: inline-block;
        position: relative;
        top: 3px;
    }
}

.bmb-sell__hp {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.bmb-sell__trust {
    position: relative;
    z-index: 2;
    margin-top: -28px;
}

.bmb-sell__trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid var(--bmb-line);
    border-radius: 18px;
    background: var(--bmb-white);
    box-shadow: var(--bmb-shadow-soft);
}

.bmb-sell__trust-item {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 84px;
    padding: 20px 24px;
}

.bmb-sell__trust-item + .bmb-sell__trust-item {
    border-left: 1px solid var(--bmb-line);
}

.bmb-sell__trust-icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--bmb-soft-blue);
    color: var(--bmb-blue-deep);
}

.bmb-sell__trust-item strong {
    display: block;
    color: var(--bmb-ink);
    font-size: 0.95rem;
}

.bmb-sell__trust-item span {
    margin-top: 2px;
    color: var(--bmb-muted);
    font-size: 0.78rem;
}

.bmb-sell__section {
    padding: clamp(68px, 8vw, 108px) 0;
}

.bmb-sell__section--soft {
    background: var(--bmb-soft);
}

.bmb-sell__section-head {
    max-width: 760px;
    margin-bottom: 34px;
}

.bmb-sell__section-kicker {
    margin: 0 0 7px;
    color: var(--bmb-blue-deep);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.095em;
    text-transform: uppercase;
}

.bmb-sell__section-title {
    margin: 0;
    color: var(--bmb-ink);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 850;
    letter-spacing: -0.042em;
    line-height: 1.04;
    text-wrap: balance;
}

.bmb-sell__section-lede {
    margin: 14px 0 0;
    color: var(--bmb-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.bmb-sell__buy-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
}

.bmb-sell__buy-card {
    min-height: 170px;
    padding: 23px;
    border: 1px solid var(--bmb-line);
    border-radius: 16px;
    background: var(--bmb-white);
    box-shadow: 0 8px 24px rgba(13, 24, 33, 0.045);
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.bmb-sell__buy-card:hover {
    transform: translateY(-3px);
    border-color: rgba(35, 143, 201, 0.36);
    box-shadow: 0 15px 34px rgba(13, 24, 33, 0.08);
}

.bmb-sell__buy-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 17px;
    border-radius: 12px;
    background: var(--bmb-soft-blue);
    color: var(--bmb-blue-deep);
}

.bmb-sell__buy-card h3 {
    margin: 0;
    color: var(--bmb-ink);
    font-size: 1.04rem;
    font-weight: 850;
}

.bmb-sell__buy-card p {
    margin: 7px 0 0;
    color: var(--bmb-muted);
    font-size: 0.84rem;
    line-height: 1.55;
}

.bmb-sell__inventory-details {
    margin-top: 22px;
    border: 1px solid var(--bmb-line);
    border-radius: 15px;
    background: var(--bmb-white);
}

.bmb-sell__inventory-details summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    color: var(--bmb-ink);
    font-size: 0.92rem;
    font-weight: 850;
    cursor: pointer;
    list-style: none;
}

.bmb-sell__inventory-details summary::-webkit-details-marker {
    display: none;
}

.bmb-sell__inventory-details summary::after {
    content: "+";
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--bmb-soft-blue);
    color: var(--bmb-blue-deep);
    font-size: 1.2rem;
    line-height: 1;
}

.bmb-sell__inventory-details[open] summary::after {
    content: "−";
}

.bmb-sell__inventory-body {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 0 20px 22px;
    border-top: 1px solid var(--bmb-line);
}

.bmb-sell__inventory-group {
    padding-top: 19px;
}

.bmb-sell__inventory-group h4 {
    margin: 0 0 9px;
    color: var(--bmb-ink);
    font-size: 0.83rem;
    font-weight: 850;
}

.bmb-sell__inventory-group ul {
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--bmb-muted);
    font-size: 0.78rem;
    line-height: 1.75;
}

.bmb-sell__tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.bmb-sell__tip {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    padding: 26px;
    border-radius: 18px;
    background: var(--bmb-ink);
    color: var(--bmb-white);
}

.bmb-sell__tip::after {
    content: "";
    position: absolute;
    right: -42px;
    bottom: -58px;
    width: 150px;
    height: 150px;
    border: 35px solid rgba(98, 180, 228, 0.18);
    border-radius: 50%;
}

.bmb-sell__tip-number {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-bottom: 35px;
    border-radius: 11px;
    background: var(--bmb-blue-strong);
    color: var(--bmb-white);
    font-weight: 900;
}

.bmb-sell__tip h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 1.13rem;
    font-weight: 850;
}

.bmb-sell__tip p {
    position: relative;
    z-index: 1;
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.86rem;
    line-height: 1.6;
}

.bmb-sell__faq-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
    gap: clamp(38px, 6vw, 82px);
    align-items: start;
}

.bmb-sell__faq-stack {
    border-top: 1px solid var(--bmb-line);
}

.bmb-sell__faq {
    border-bottom: 1px solid var(--bmb-line);
}

.bmb-sell__faq summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 21px 2px;
    color: var(--bmb-ink);
    font-size: 0.98rem;
    font-weight: 850;
    cursor: pointer;
    list-style: none;
}

.bmb-sell__faq summary::-webkit-details-marker {
    display: none;
}

.bmb-sell__faq summary::after {
    content: "+";
    flex: 0 0 auto;
    color: var(--bmb-blue-deep);
    font-size: 1.35rem;
}

.bmb-sell__faq[open] summary::after {
    content: "−";
}

.bmb-sell__faq p {
    margin: -4px 0 22px;
    padding-right: 40px;
    color: var(--bmb-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.bmb-sell__final-cta {
    padding: 0 0 clamp(68px, 8vw, 104px);
}

.bmb-sell__final-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: clamp(28px, 5vw, 52px);
    border-radius: 24px;
    background: linear-gradient(135deg, var(--bmb-ink), #1b3545);
    color: var(--bmb-white);
    box-shadow: var(--bmb-shadow);
}

.bmb-sell__final-card h2 {
    margin: 0;
    color: var(--bmb-white);
    font-size: clamp(1.65rem, 3.2vw, 2.55rem);
    font-weight: 850;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.bmb-sell__final-card p {
    margin: 9px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
}

.bmb-sell__final-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}

.bmb-sell__final-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 19px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 11px;
    color: var(--bmb-white) !important;
    font-size: 0.88rem;
    font-weight: 850;
    text-decoration: none !important;
}

.bmb-sell__final-button--primary {
    border-color: var(--bmb-blue-strong);
    background: var(--bmb-blue-strong);
}

.bmb-sell__legacy-source,
.bmb-sell__legacy-stash {
    display: none !important;
}

.bmb-sell__error-summary {
    &.is-visible > ul > li {
        list-style: outside;
    }
}

#bmb-sell-redesign {
    #uploadedPictures {
        figure {
            &, img, video {
                max-width: 100px;
            }
        }
    }
}

@media (max-width: 1040px) {
    .bmb-sell__hero-grid {
        grid-template-columns: 1fr;
        max-width: 790px;
        margin-inline: auto;
    }

    .bmb-sell__copy {
        padding-top: 0;
    }

    .bmb-sell__form-card {
        position: relative;
        top: auto;
    }

    .bmb-sell__trust-grid {
        grid-template-columns: 1fr;
    }

    .bmb-sell__trust-item + .bmb-sell__trust-item {
        border-top: 1px solid var(--bmb-line);
        border-left: 0;
    }
}

@media (max-width: 820px) {
    .bmb-sell__container {
        width: min(100% - 30px, 1240px);
    }

    .bmb-sell__steps,
    .bmb-sell__buy-grid,
    .bmb-sell__tips-grid {
        grid-template-columns: 1fr;
    }

    .bmb-sell__step {
        display: grid;
        grid-template-columns: 30px 1fr;
        align-items: center;
        gap: 10px;
    }

    .bmb-sell__step-number {
        margin-bottom: 0;
    }

    .bmb-sell__buy-card {
        min-height: 0;
    }

    .bmb-sell__inventory-body {
        grid-template-columns: repeat(2, 1fr);
    }

    .bmb-sell__faq-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .bmb-sell__final-card {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .bmb-sell__hero {
        padding-top: 28px;
    }

    .bmb-sell__title {
        font-size: clamp(2.22rem, 12vw, 3.35rem);
    }

    .bmb-sell__lede {
        margin-top: 18px;
    }

    .bmb-sell__visual {
        min-height: 210px;
    }

    .bmb-sell__visual img {
        min-height: 210px;
    }

    .bmb-sell__form-card {
        margin-inline: -3px;
        padding: 22px 17px;
        border-radius: 20px;
    }

    .bmb-sell__form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .bmb-sell__field--full {
        grid-column: auto;
    }

    .bmb-sell__trust {
        margin-top: -18px;
    }

    .bmb-sell__trust-item {
        min-height: 80px;
        padding: 17px;
    }

    .bmb-sell__inventory-body {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .bmb-sell__final-actions {
        width: 100%;
        flex-direction: column;
    }

    .bmb-sell__final-button {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .bmb-sell {
        margin-top: -2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bmb-sell *,
    .bmb-sell *::before,
    .bmb-sell *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
