@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/**
 * Sell Property — dashboard shell, sidebar, horizontal stepper, listing cards.
 * Aligns typography and radii with login/sign-up (#006AFF, slate neutrals).
 */

:root {
    --sell-bg: #f1f5f9;
}

body.tb-sell-body {
    background-color: var(--sell-bg);
    font-family: Inter, sans-serif;
}

body.tb-sell-body input,
body.tb-sell-body textarea,
body.tb-sell-body select,
body.tb-sell-body button {
    font-family: Inter, sans-serif;
}

/* Auth toolbar (dynamic #auth-actions) */
.login-btn {
    border-radius: 9999px;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #334155;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition:
        border-color 0.2s,
        color 0.2s,
        background 0.2s;
}

.login-btn:hover {
    border-color: #006aff;
    color: #006aff;
}

.signup-btn {
    border-radius: 9999px;
    background: #006aff;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
    transition: background 0.2s;
}

.signup-btn:hover {
    background: #0053b3;
}

.profile-circle {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    background: #006aff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.logout-btn {
    border-radius: 9999px;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #334155;
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition:
        border-color 0.2s,
        color 0.2s,
        background 0.2s;
}

.logout-btn:hover {
    border-color: #006aff;
    background: #e8f2ff;
    color: #006aff;
}

#auth-actions {
    min-width: 0;
}

#auth-actions > div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    max-width: 100%;
}

@media (min-width: 640px) {
    #auth-actions > div {
        gap: 0.75rem;
    }
}

#postPropFormContainer {
    align-items: stretch;
    box-sizing: border-box;
    min-width: 0;
    max-width: 100%;
}

/*
 * Global style.css defines `footer { background: var(--dark); color: white; ... }` for site footer.
 * Sell page uses semantic <footer> for sidebar rail + wizard step actions — reset that here only.
 */
#postPropFormContainer footer {
    background: transparent;
    background-color: transparent;
    color: inherit;
    text-align: initial;
}

.sell-sidebar-sheet {
    transition: transform 0.28s ease;
}

@media (max-width: 767px) {
    .sell-sidebar-sheet {
        transform: translateX(-100%);
        pointer-events: none;
        visibility: visible;
    }

    .sell-sidebar-sheet.sell-sidebar--open {
        transform: translateX(0);
        pointer-events: auto;
    }

    /* dashboard.html uses `is-open` toggled by dashboard.js */
    .sell-sidebar-sheet.is-open {
        transform: translateX(0);
        pointer-events: auto;
    }

    #sell-sidebar-backdrop.sell-sidebar-backdrop--visible,
    #sidebar-backdrop.sell-sidebar-backdrop--visible {
        opacity: 1;
        pointer-events: auto;
    }
}

@media (min-width: 768px) {
    #sell-sidebar-backdrop,
    #sidebar-backdrop {
        display: none;
    }

    .sell-sidebar-sheet {
        transform: none;
        pointer-events: auto;
    }
}

.tb-sell-header {
    position: sticky;
    top: 0;
    z-index: 35;
}

/* Marketplace header shell (sell dashboard) — light gray bar, pill search */
.tb-sell-header-inner {
    box-sizing: border-box;
}

.tb-sell-header-search {
    height: 2.625rem;
    border: none;
    background-color: #edf1f7;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 400;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        0 1px 2px rgba(15, 23, 42, 0.06);
    transition:
        box-shadow 0.15s ease,
        background-color 0.15s ease;
}

.tb-sell-header-search::placeholder {
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.tb-sell-header-search:focus {
    background-color: #e8eef6;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.85),
        0 0 0 2px rgba(0, 106, 255, 0.18);
}

.tb-sell-header-icon-btn:disabled {
    cursor: default;
    opacity: 0.72;
}

/* Header avatar (authenticated) — links to dashboard */
.tb-sell-header-user {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    overflow: hidden;
    border-radius: 9999px;
    padding: 0;
    cursor: pointer;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: #fff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.tb-sell-header-user:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 2px #f8fafc,
        0 0 0 4px rgba(0, 106, 255, 0.35);
}

.tb-sell-header-user img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.tb-sell-header-user-initial {
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #006aff, #0053c7);
    color: #fff;
    font-weight: 800;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
}

/* Guest actions in rail */
.tb-sell-header #auth-actions .login-btn {
    padding: 0.45rem 0.875rem;
    font-size: 0.8125rem;
}

.tb-sell-header #auth-actions .signup-btn {
    padding: 0.45rem 0.875rem;
    font-size: 0.8125rem;
}

/* ==========================================================================
   FORCE DARK MODE TOGGLE VISIBILITY (sell header + global site header)
   ========================================================================== */
.tb-site-header__theme-toggle,
.tb-site-header [data-dashboard-theme-toggle],
.tb-sell-header [data-dashboard-theme-toggle],
header.dashboard-main-header [data-dashboard-theme-toggle] {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-shrink: 0 !important;
    align-items: center;
    justify-content: center;
    min-width: 2.75rem;
    min-height: 2.75rem;
    position: relative;
    z-index: 2;
    color: #475569;
}

html.dark .tb-site-header [data-dashboard-theme-toggle],
html.dark .tb-sell-header [data-dashboard-theme-toggle],
html.dark header.dashboard-main-header [data-dashboard-theme-toggle] {
    color: #e2e8f0 !important;
}

.tb-sell-header-icon-btn[data-dashboard-theme-toggle] {
    flex-shrink: 0 !important;
}

@media (max-width: 768px) {
    .tb-sell-header,
    header.dashboard-main-header {
        overflow: visible;
    }

    .tb-sell-header-inner {
        overflow: visible;
    }

    /* Prevent full-width utility row from wrapping/clipping icon actions off-screen */
    .tb-sell-header-inner > .flex.shrink-0.items-center.justify-end,
    header.dashboard-main-header .ml-auto.flex.shrink-0.items-center {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: auto !important;
        max-width: 100%;
        flex: 0 0 auto;
        flex-wrap: nowrap;
        overflow: visible;
        margin-left: auto;
        gap: 0.35rem;
        z-index: 2;
    }

    .tb-sell-header-middle-spacer {
        display: none;
    }

    .tb-sell-header [data-dashboard-theme-toggle],
    header.dashboard-main-header [data-dashboard-theme-toggle] {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-shrink: 0 !important;
        align-items: center;
        justify-content: center;
        min-width: 2.75rem;
        min-height: 2.75rem;
        margin-right: 0.15rem;
        z-index: 9999;
        position: relative;
        color: #475569;
    }

    html.dark .tb-sell-header [data-dashboard-theme-toggle],
    html.dark header.dashboard-main-header [data-dashboard-theme-toggle] {
        color: #e2e8f0 !important;
    }

    .tb-sell-header-icon-btn[data-dashboard-theme-toggle] {
        flex-shrink: 0 !important;
    }
}
/* ==========================================================================
   END OF CSS REFACTORING — DO NOT ALTER ANY COMPONENT GRID CONFIGURATIONS
   ========================================================================== */

/* Listing column width/centering come from sell.html (e.g. max-w-4xl mx-auto). */
.tb-sell-form-column {
    box-sizing: border-box;
    min-width: 0;
    max-width: 100%;
}

#postPropFormContainer #propertyForm {
    box-sizing: border-box;
    min-width: 0;
    max-width: 100%;
}

/* Shared shell: stepper nav + all step panels (full width of .tb-sell-form-column). */
.tb-sell-form-column .tb-sell-wizard-stack {
    box-sizing: border-box;
    width: 100%;
}

.tb-sell-form-column .tb-sell-wizard-card {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    padding: clamp(1.625rem, 4vw, 2.125rem) clamp(1.625rem, 4vw, 2.375rem);
    background: rgba(255, 255, 255, 0.72);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow:
        0 1px 1px rgba(255, 255, 255, 0.55) inset,
        0 2px 4px rgba(15, 23, 42, 0.04),
        0 12px 32px rgba(15, 23, 42, 0.08);
}

/* Step 1 — compact inner typography/spacing only; outer card matches stack width. */
.tb-sell-form-column section.tb-sell-basic-info-card.tb-sell-wizard-card {
    box-sizing: border-box;
    max-width: none;
    width: 100%;
    margin-inline: 0;
}

.tb-sell-form-column section.tb-sell-basic-info-card .tb-sell-basic-info-header {
    margin-bottom: 1.1rem;
}

.tb-sell-form-column section.tb-sell-basic-info-card .tb-sell-wizard-section-title {
    line-height: 1.3;
}

.tb-sell-form-column section.tb-sell-basic-info-card .tb-sell-wizard-section-desc {
    margin-top: 0.25rem;
    font-size: 0.8125rem;
    line-height: 1.4;
}

.tb-sell-form-column section.tb-sell-basic-info-card .tb-sell-basic-info-fields.tb-sell-form-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem 1.5rem;
}

@media (min-width: 640px) {
    .tb-sell-form-column section.tb-sell-basic-info-card .tb-sell-basic-info-fields.tb-sell-form-grid-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.tb-sell-form-column .tb-sell-form-grid-2__full {
    grid-column: 1 / -1;
}

/* Property Type + Listing Type — stack on narrow phones, 50/50 from 480px */
.tb-sell-form-column section.tb-sell-basic-info-card .tb-sell-basic-type-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem 1.5rem;
    width: 100%;
}

@media (min-width: 480px) {
    .tb-sell-form-column section.tb-sell-basic-info-card .tb-sell-basic-type-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Price / beds / baths / size — 2×2 by default, single row of 4 from tablet up */
.tb-sell-form-column section.tb-sell-basic-info-card .tb-sell-basic-quad-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.125rem;
    width: 100%;
}

@media (min-width: 768px) {
    .tb-sell-form-column section.tb-sell-basic-info-card .tb-sell-basic-quad-row {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.tb-sell-form-column section.tb-sell-basic-info-card .tb-sell-form-field .tb-sell-form-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.45rem;
    letter-spacing: -0.01em;
}

.tb-sell-form-column section.tb-sell-basic-info-card .tb-sell-input,
.tb-sell-form-column section.tb-sell-basic-info-card .tb-sell-select {
    font-size: 14px;
    font-weight: 400;
    min-height: 2.875rem;
    height: 2.875rem;
    padding: 0 0.875rem;
}

.tb-sell-form-column section.tb-sell-basic-info-card .tb-sell-select {
    padding-right: 2.5rem;
    background-position: right 0.8125rem center;
}

.tb-sell-form-column section.tb-sell-basic-info-card .tb-sell-basic-desc-textarea {
    font-size: 14px;
    font-weight: 400;
    min-height: 40px;
    height: 40px;
    max-height: 40px;
    padding: 0 0.875rem;
    line-height: 38px;
    resize: none;
    overflow-x: hidden;
    overflow-y: auto;
}

.tb-sell-form-column section.tb-sell-basic-info-card .tb-sell-basic-info-footer {
    margin-top: 1.35rem;
    padding-top: 1.1rem;
}

.tb-sell-form-column .sell-step-nav {
    margin-bottom: 0;
}

/* Stepper card: same width as step panels (parent stack + shared .tb-sell-wizard-card rules). */
.tb-sell-form-column #sell-wizard-step-nav {
    box-sizing: border-box;
    max-width: none;
    width: 100%;
    margin-inline: 0;
}

/* Stepper track: [circle + labels] — short connector — … compact, labels nowrap */
.tb-sell-form-column .sell-stepper-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    gap: 0;
    padding: 0.35rem 0 0.85rem;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.tb-sell-form-column .sell-step-hit.sell-stepper-node {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    display: flex;
    flex: 0 0 auto;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    min-width: auto;
    padding: 0.25rem 0.125rem;
    border-radius: 0.5rem;
    text-align: left;
    outline: none;
    transition: background-color 0.12s ease;
}

.tb-sell-form-column .sell-step-hit.sell-stepper-node:hover {
    background-color: rgba(248, 250, 252, 0.95);
}

.tb-sell-form-column .sell-step-hit.sell-stepper-node:focus-visible {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(0, 106, 255, 0.35);
}

.tb-sell-form-column .sell-stepper-labels {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 0 0 auto;
    min-width: auto;
    max-width: none;
    text-align: left;
}

.tb-sell-form-column .sell-step-nav .sell-step-head-label {
    margin: 0;
    font-size: clamp(0.8125rem, 2.4vw, 1.125rem);
    font-weight: 600;
    line-height: 1.25;
    color: #475569;
    transition: color 0.15s ease;
    white-space: nowrap;
}

.tb-sell-form-column .sell-step-nav .sell-step-sublabel {
    display: block;
    margin: 0.125rem 0 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: none;
    white-space: nowrap;
}

.tb-sell-form-column .sell-step-head-label--current {
    color: #006aff;
}

.tb-sell-form-column .sell-step-head-label--done {
    color: #0f172a;
}

.tb-sell-form-column .sell-step-head-label--future {
    color: #64748b;
}

.tb-sell-form-column .sell-step-sublabel--current,
.tb-sell-form-column .sell-step-sublabel--done {
    color: #64748b;
}

.tb-sell-form-column .sell-step-sublabel--future {
    color: #94a3b8;
}

.tb-sell-form-column .sell-step-hit.sell-stepper-node:hover .sell-step-head-label--future,
.tb-sell-form-column .sell-step-hit.sell-stepper-node:focus-visible .sell-step-head-label--future {
    color: #0f172a;
}

.tb-sell-form-column .sell-step-hit.sell-stepper-node:hover .sell-step-head-label {
    text-decoration: underline solid rgba(0, 106, 255, 0.35);
    text-underline-offset: 3px;
}

.tb-sell-listing-page-title {
    font-family: Inter, sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: #0f172a;
}

.tb-sell-listing-page-subtitle {
    margin-top: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.5;
    color: #64748b;
}

.tb-sell-wizard-section-title {
    font-family: Inter, sans-serif;
    font-size: clamp(1.125rem, 3vw, 1.375rem);
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.tb-sell-wizard-section-desc {
    margin-top: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.5;
    color: #64748b;
}

.tb-sell-wizard-step-hint {
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.5;
    color: #94a3b8;
}

.tb-sell-form-column .tb-sell-form-label {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.4rem;
}

.tb-sell-wizard-btn-primary {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.25;
    border-radius: 12px;
    padding: 0.625rem 1.75rem;
    min-height: 2.75rem;
}

.tb-sell-wizard-btn-primary--cta {
    min-height: 3rem;
    padding: 0.75rem 1.85rem;
    font-size: 0.9375rem;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 106, 255, 0.32);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.tb-sell-wizard-btn-primary--cta:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 106, 255, 0.38);
}

.tb-sell-wizard-btn-primary--cta:active {
    transform: scale(1.01);
}

@media (prefers-reduced-motion: reduce) {
    .tb-sell-wizard-btn-primary--cta,
    .tb-sell-wizard-btn-primary--cta:hover,
    .tb-sell-wizard-btn-primary--cta:active {
        transform: none;
    }
}

.tb-sell-wizard-callout {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #475569;
}

.tb-sell-wizard-callout strong,
.tb-sell-wizard-callout .tb-sell-wizard-callout-title {
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.tb-sell-map-placeholder-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
}

.tb-sell-map-placeholder-sub {
    margin-top: 0.125rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748b;
}

/* —— Step 4: Photos (compact card, upload zone, grid, tips, footer) —— */
.tb-sell-form-column section.tb-sell-photos-step-card.tb-sell-wizard-card {
    box-sizing: border-box;
    max-width: none;
    width: 100%;
    margin-inline: 0;
}

.tb-sell-form-column section.tb-sell-photos-step-card .tb-sell-photos-step-header {
    margin-bottom: 1rem;
}

.tb-sell-form-column section.tb-sell-photos-step-card .tb-sell-wizard-section-title {
    line-height: 1.3;
}

.tb-sell-form-column section.tb-sell-photos-step-card .tb-sell-wizard-section-desc {
    margin-top: 0.25rem;
    font-size: 0.8125rem;
    line-height: 1.4;
}

.tb-sell-form-column section.tb-sell-photos-step-card .tb-sell-photos-step-body {
    margin-top: 0;
}

.tb-sell-form-column .tb-sell-photos-upload-stack {
    width: 100%;
}

/* Hide large drop zone once previews are shown (section loses .hidden) */
.tb-sell-form-column .tb-sell-photos-upload-stack:has(#sell-gallery-section:not(.hidden)) #sell-gallery-dropzone {
    display: none;
}

.tb-sell-form-column #sell-gallery-dropzone.tb-sell-gallery-dropzone {
    cursor: pointer;
    box-sizing: border-box;
    width: 100%;
    min-height: 248px;
    padding: 2.25rem 1.5rem;
    border-radius: 12px;
    border: 1px dashed #cbd5e1;
    background-color: #f8fafc;
    text-align: center;
    transition:
        border-color 0.15s ease,
        background-color 0.15s ease,
        box-shadow 0.15s ease;
}

.tb-sell-form-column #sell-gallery-dropzone.tb-sell-gallery-dropzone:hover {
    border-color: #94a3b8;
    background-color: #f1f5f9;
}

.tb-sell-form-column #sell-gallery-dropzone.tb-sell-gallery-dropzone.tb-sell-gallery-dropzone--drag {
    border-color: #006aff;
    background-color: #e8f2ff;
    box-shadow: 0 0 0 3px rgba(0, 106, 255, 0.12);
}

.tb-sell-form-column #sell-gallery-dropzone .tb-sell-gallery-dropzone-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    max-width: 24rem;
    margin-inline: auto;
}

.tb-sell-form-column #sell-gallery-dropzone .tb-sell-gallery-upload-icon {
    display: block;
    color: #64748b;
    margin-bottom: 0.375rem;
}

.tb-sell-form-column #sell-gallery-dropzone .tb-sell-gallery-dropzone-lead {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: #000;
}

.tb-sell-form-column #sell-gallery-dropzone .tb-sell-gallery-dropzone-hint {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    color: #64748b;
}

.tb-sell-form-column #sell-gallery-dropzone .tb-sell-gallery-select-files-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    margin-top: 0.625rem;
    cursor: pointer;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #fff;
    padding: 0.5rem 1.125rem;
    font-size: 14px;
    font-weight: 500;
    color: #0f172a;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition:
        border-color 0.15s ease,
        background-color 0.15s ease,
        color 0.15s ease;
}

.tb-sell-form-column #sell-gallery-dropzone .tb-sell-gallery-select-files-btn-icon {
    font-size: 0.6875rem;
    font-weight: 700;
    opacity: 0.85;
}

.tb-sell-form-column #sell-gallery-dropzone .tb-sell-gallery-select-files-btn-icon--photo {
    font-size: 0.9375rem;
    font-weight: 400;
    opacity: 0.72;
}

.tb-sell-form-column #sell-gallery-dropzone .tb-sell-gallery-select-files-btn:hover {
    border-color: #cbd5e1;
    background: #fafafa;
}

/* Preview grid */
.tb-sell-form-column #sell-gallery-section.tb-sell-gallery-section {
    width: 100%;
}

.tb-sell-form-column #sell-gallery-section .tb-sell-gallery-count-label {
    margin: 0 0 0.75rem;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    letter-spacing: -0.01em;
}

.tb-sell-form-column #sell-gallery-grid.tb-sell-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
}

@media (min-width: 640px) {
    .tb-sell-form-column #sell-gallery-grid.tb-sell-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .tb-sell-form-column #sell-gallery-grid.tb-sell-gallery-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.tb-sell-form-column #sell-gallery-grid .tb-sell-gallery-thumb {
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.tb-sell-form-column #sell-gallery-grid .tb-sell-gallery-cover-badge {
    border-radius: 4px;
    background: #006aff;
    box-shadow: 0 1px 3px rgba(0, 106, 255, 0.35);
    z-index: 2;
}

.tb-sell-form-column #sell-gallery-grid .tb-sell-gallery-add-tile {
    box-sizing: border-box;
    border-radius: 12px;
    border: 2px dashed #cbd5e1;
    background: #f1f5f9;
    color: #64748b;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.tb-sell-form-column #sell-gallery-grid .tb-sell-gallery-add-tile:hover {
    background: #e8eef5;
    border-color: #94a3b8;
    color: #475569;
}

.tb-sell-form-column #sell-gallery-grid .tb-sell-gallery-add-tile-label {
    font-size: 14px;
    font-weight: 500;
    color: inherit;
}

.tb-sell-form-column #sell-gallery-grid .tb-sell-gallery-add-tile-icon {
    color: #94a3b8;
}

/* Light blue tips panel (info badge + copy) */
.tb-sell-form-column section.tb-sell-photos-step-card .tb-sell-photo-tips {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    box-sizing: border-box;
    width: 100%;
    border-radius: 12px;
    border: 1px solid #bfdbfe;
    background: #eff6ff;
    padding: 1rem 1rem 1rem 0.875rem;
}

.tb-sell-form-column section.tb-sell-photos-step-card .tb-sell-photo-tips-badge {
    flex-shrink: 0;
    width: 1.625rem;
    height: 1.625rem;
    border-radius: 9999px;
    background: #006aff;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    font-style: normal;
    line-height: 1.625rem;
    text-align: center;
    margin-top: 0.0625rem;
    user-select: none;
}

.tb-sell-form-column section.tb-sell-photos-step-card .tb-sell-photo-tips-copy {
    min-width: 0;
    flex: 1;
}

.tb-sell-form-column section.tb-sell-photos-step-card .tb-sell-photo-tips-title {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: #000;
    letter-spacing: -0.01em;
}

.tb-sell-form-column section.tb-sell-photos-step-card .tb-sell-photo-tips-list {
    margin: 0.5rem 0 0;
    padding-left: 1.125rem;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
    color: #334155;
    list-style-type: disc;
}

.tb-sell-form-column section.tb-sell-photos-step-card .tb-sell-photo-tips-list li {
    margin-top: 0.3125rem;
}

.tb-sell-form-column section.tb-sell-photos-step-card .tb-sell-photo-tips-list li:first-child {
    margin-top: 0;
}

.tb-sell-form-column section.tb-sell-photos-step-card .tb-sell-photos-contact-grid .tb-sell-form-label {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.tb-sell-form-column section.tb-sell-photos-step-card .tb-sell-photos-contact-grid .tb-sell-input {
    font-size: 14px;
    font-weight: 400;
}

/* Footer: Previous left; Draft + Publish right */
.tb-sell-form-column section.tb-sell-photos-step-card .tb-sell-photos-step-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    width: 100%;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

/* Match mock: Previous = white pill, dark label (scoped to Photos step only) */
.tb-sell-form-column section.tb-sell-photos-step-card footer.tb-sell-photos-step-footer .tb-sell-photos-footer-prev.tb-sell-nav-muted {
    color: #0f172a;
}

.tb-sell-form-column section.tb-sell-photos-step-card .tb-sell-photos-footer-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.625rem;
    margin-left: auto;
}

.tb-sell-form-column section.tb-sell-photos-step-card .tb-sell-btn-draft {
    cursor: pointer;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #fff;
    padding: 0.625rem 1.25rem;
    min-height: 2.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition:
        background-color 0.15s ease,
        border-color 0.15s ease,
        color 0.15s ease;
}

.tb-sell-form-column section.tb-sell-photos-step-card .tb-sell-btn-draft:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #0f172a;
}

.tb-sell-form-column section.tb-sell-photos-step-card .tb-sell-btn-publish.tb-sell-wizard-btn-primary {
    min-width: 10rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    box-shadow:
        0 4px 14px rgba(0, 106, 255, 0.38),
        0 2px 4px rgba(0, 106, 255, 0.2);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.tb-sell-form-column section.tb-sell-photos-step-card .tb-sell-btn-publish.tb-sell-wizard-btn-primary:hover {
    transform: scale(1.02);
    box-shadow:
        0 6px 18px rgba(0, 106, 255, 0.42),
        0 2px 6px rgba(0, 106, 255, 0.22);
}

/* Features & Amenities (step 3): 4× equal columns on desktop, 12px gap, uniform 40px rows, single-line labels */
.tb-sell-form-column #sell-amenities-grid {
    display: grid;
    width: 100%;
    box-sizing: border-box;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 40px;
    align-items: stretch;
}

@media (min-width: 768px) {
    .tb-sell-form-column #sell-amenities-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.tb-sell-form-column #sell-amenities-grid .sell-amenity-tile {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    height: 40px;
    min-height: 40px;
    max-height: 40px;
    padding: 0 0.375rem;
    gap: 0.375rem;
    border-radius: 10px;
    line-height: 1;
}

.tb-sell-form-column #sell-amenities-grid .sell-amenity-input {
    width: 0.8125rem;
    height: 0.8125rem;
    min-width: 0.8125rem;
    min-height: 0.8125rem;
    flex-shrink: 0;
    margin: 0;
    align-self: center;
}

.tb-sell-form-column #sell-amenities-grid .sell-amenity-tile > span:last-child {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    color: #000;
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tb-sell-form-column #sell-step-nav-hint {
    cursor: default;
}

/* Horizontal step connectors (default; sell wizard uses shorter scoped rules below). */
.tb-sell-stepper-line {
    height: 2px;
    background: #e2e8f0;
    flex: 1 1 32px;
    min-width: 0.5rem;
    margin-top: 1.125rem;
    border-radius: 1px;
}

/* Connectors — thick segments for clear progress */
.tb-sell-form-column .sell-step-nav .tb-sell-stepper-line.sell-stepper-connector {
    flex: 1 1 auto;
    align-self: center;
    width: clamp(1.25rem, 5vw, 3rem);
    min-width: 1.25rem;
    max-width: 4rem;
    height: 5px;
    margin: 0 0.15rem;
    margin-top: 0;
    border-radius: 9999px;
    background: #e2e8f0;
}

@media (min-width: 640px) {
    .tb-sell-form-column .sell-step-nav .tb-sell-stepper-line.sell-stepper-connector {
        min-width: 1.75rem;
        max-width: 5rem;
    }
}

.tb-sell-stepper-badge {
    display: inline-flex;
    box-sizing: border-box;
    flex-shrink: 0;
    height: 2.5rem;
    width: 2.5rem;
    min-width: 2.5rem;
    min-height: 2.5rem;
    aspect-ratio: 1;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: Inter, sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
}

.tb-sell-stepper-badge[data-state="inactive"] {
    background: #e2e8f0;
    color: #64748b;
}

.tb-sell-stepper-badge[data-state="done"] {
    background: #006aff;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 106, 255, 0.35);
}

.tb-sell-stepper-badge[data-state="done"] .fa-check {
    font-size: 0.8125rem;
    line-height: 1;
}

.tb-sell-stepper-badge[data-state="active"] {
    background: #006aff;
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 106, 255, 0.4);
}

.tb-sell-form-column .sell-step-nav .tb-sell-stepper-line.tb-sell-stepper-line--complete {
    background: #006aff;
    opacity: 1;
}

/* Map placeholder — dashed border, light gray fill (reference). */
.tb-sell-map-placeholder {
    box-sizing: border-box;
    border: 2px dashed #e2e8f0;
    border-radius: 12px;
    background-color: #f1f5f9;
}

.tb-sell-form-label .req {
    margin-left: 0.125rem;
    font-weight: 700;
    color: #dc2626;
}

/* Form controls — match signup card scale */
.tb-sell-input,
.tb-sell-select,
.tb-sell-textarea {
    box-sizing: border-box;
    width: 100%;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #fff;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #0f172a;
    outline: none;
    transition:
        border-color 0.15s ease,
        box-shadow 0.15s ease;
}

.tb-sell-input:focus,
.tb-sell-select:focus,
.tb-sell-textarea:focus {
    border-color: #006aff;
    box-shadow: 0 0 0 3px rgba(0, 106, 255, 0.15);
}

.tb-sell-input::placeholder,
.tb-sell-textarea::placeholder {
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #94a3b8;
}

.tb-sell-input {
    height: 2.875rem;
    padding: 0 0.875rem;
}

.tb-sell-select {
    height: 2.875rem;
    padding: 0 2.25rem 0 0.75rem;
}

.tb-sell-textarea {
    min-height: 8.5rem;
    padding: 0.875rem;
    resize: vertical;
}

/* Listing description: one-line row height (scroll if text overflows) */
.tb-sell-form-column .tb-sell-description-compact {
    min-height: 2.875rem;
    max-height: 2.875rem;
    height: 2.875rem;
    padding: 0.5rem 0.875rem;
    line-height: 1.35;
    resize: none;
    overflow-y: auto;
    overflow-x: hidden;
}

.tb-sell-nav-muted {
    color: #475569;
    font-size: 0.9375rem;
    font-weight: 600;
    background: #f1f5f9;
}

.tb-sell-nav-muted:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.tb-sell-nav-muted:hover:not(:disabled) {
    background: #e2e8f0;
    color: #0f172a;
}

/* Mock: Previous = white card + subtle border within wizard footer only */
.tb-sell-form-column footer .tb-sell-nav-muted {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: none;
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 12px;
    padding: 0.625rem 1.25rem;
    min-height: 2.75rem;
}

.tb-sell-form-column footer .tb-sell-nav-muted:hover:not(:disabled) {
    background-color: #f8fafc;
    border-color: #cbd5e1;
    color: #475569;
}

/* ~12px corners + select chevron (basic info reference) */
.tb-sell-form-column .tb-sell-input,
.tb-sell-form-column .tb-sell-select,
.tb-sell-form-column .tb-sell-textarea {
    border-radius: 12px;
}

.tb-sell-form-column .tb-sell-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%2394a3b8' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round' d='M3 4.5 6 7.5 9 4.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8125rem center;
    background-size: 0.75rem;
    padding-right: 2.5rem;
}

.tb-sell-form-column input.tb-sell-input[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.tb-sell-form-column input.tb-sell-input[type="number"]::-webkit-inner-spin-button,
.tb-sell-form-column input.tb-sell-input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* --- Sell sidebar (reference layout: sections, active pills, profile + logout) --- */
#sell-sidebar.tb-sell-sidebar:not(.sell-sidebar--collapsed),
#sidebar.tb-sell-sidebar:not(.sell-sidebar--collapsed) {
    box-sizing: border-box;
    width: max-content;
    max-width: 100vw;
}

#sell-sidebar #sell-sidebar-nav .tb-sell-nav-link,
#sidebar #sell-sidebar-nav .tb-sell-nav-link {
    box-sizing: border-box;
    margin-inline: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding-block: 0.625rem;
    /* SALAH-aligned: px-3 (0.75rem), py-2.5 — matches dashboard-layout NavLink */
    padding-inline: 0.75rem;
    white-space: nowrap;
    font-size: 14px;
}

#sell-sidebar #sell-sidebar-nav .tb-sell-nav-link-label,
#sidebar #sell-sidebar-nav .tb-sell-nav-link-label {
    text-align: start;
    white-space: nowrap;
}

/* Fixed-width icon rail so glyphs share one vertical alignment line */
#sell-sidebar #sell-sidebar-nav .tb-sell-nav-link-icon,
#sidebar #sell-sidebar-nav .tb-sell-nav-link-icon {
    box-sizing: border-box;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    min-width: 24px;
}

#sell-sidebar #sell-sidebar-nav .tb-sell-sidebar-section-title,
#sidebar #sell-sidebar-nav .tb-sell-sidebar-section-title {
    text-align: center;
    padding-inline: 0;
    white-space: nowrap;
}

#sell-sidebar .tb-sell-sidebar-section-title,
#sidebar .tb-sell-sidebar-section-title {
    font-size: 12px;
    text-transform: uppercase;
}

.tb-sell-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.125rem;
    padding: 0.625rem 0.75rem;
    border-radius: 0.5rem;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    text-decoration: none;
    outline: none;
    transition:
        background-color 0.15s ease,
        color 0.15s ease;
}

.tb-sell-nav-link:not(.tb-sell-nav-link--active):not(.tb-sell-nav-link--seller-brand):hover {
    background-color: #f8fafc;
    color: #0f172a;
}

.tb-sell-nav-link:focus-visible {
    box-shadow: 0 0 0 2px rgba(0, 106, 255, 0.35);
}

.tb-sell-nav-link-icon {
    flex-shrink: 0;
    width: 1.25rem;
    text-align: center;
    font-size: 1rem;
    color: inherit;
}

.tb-sell-nav-link-icon-muted {
    color: #475569;
}

.tb-sell-nav-link:not(.tb-sell-nav-link--active):not(.tb-sell-nav-link--seller-brand):hover .tb-sell-nav-link-icon-muted {
    color: #334155;
}

.tb-sell-nav-link--badge-row {
    align-items: center;
}

.tb-sell-nav-link--active {
    background-color: #006aff;
    color: #ffffff;
    cursor: default;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 106, 255, 0.28);
}

.tb-sell-nav-link--active:hover {
    background-color: #0058e8;
    color: #ffffff;
}

.tb-sell-nav-link--active .tb-sell-nav-link-icon,
.tb-sell-nav-link--active .tb-sell-nav-link-icon-muted {
    color: #ffffff;
}

/* Sell sidebar: Tamagn Bet brand highlight (Sell Property + My Listings) */
#sell-sidebar #sell-sidebar-nav .tb-sell-nav-link--active,
#sell-sidebar #sell-sidebar-nav .tb-sell-nav-link--seller-brand,
#sidebar #sell-sidebar-nav .tb-sell-nav-link--active,
#sidebar #sell-sidebar-nav .tb-sell-nav-link--seller-brand {
    background-color: #006aff;
    color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 106, 255, 0.28);
}

#sell-sidebar #sell-sidebar-nav .tb-sell-nav-link--active:hover,
#sell-sidebar #sell-sidebar-nav .tb-sell-nav-link--seller-brand:hover,
#sidebar #sell-sidebar-nav .tb-sell-nav-link--active:hover,
#sidebar #sell-sidebar-nav .tb-sell-nav-link--seller-brand:hover {
    background-color: #0058e8;
    color: #ffffff;
}

#sell-sidebar #sell-sidebar-nav .tb-sell-nav-link--active .tb-sell-nav-link-icon,
#sell-sidebar #sell-sidebar-nav .tb-sell-nav-link--active .tb-sell-nav-link-icon-muted,
#sell-sidebar #sell-sidebar-nav .tb-sell-nav-link--seller-brand .tb-sell-nav-link-icon,
#sell-sidebar #sell-sidebar-nav .tb-sell-nav-link--seller-brand .tb-sell-nav-link-icon-muted,
#sidebar #sell-sidebar-nav .tb-sell-nav-link--active .tb-sell-nav-link-icon,
#sidebar #sell-sidebar-nav .tb-sell-nav-link--active .tb-sell-nav-link-icon-muted,
#sidebar #sell-sidebar-nav .tb-sell-nav-link--seller-brand .tb-sell-nav-link-icon,
#sidebar #sell-sidebar-nav .tb-sell-nav-link--seller-brand .tb-sell-nav-link-icon-muted {
    color: #ffffff;
}

.tb-sell-sidebar-collapse-anchor:active {
    filter: brightness(0.94);
}

@media (min-width: 768px) {
    #sell-sidebar.tb-sell-sidebar.sell-sidebar--collapsed,
    #sidebar.tb-sell-sidebar.sell-sidebar--collapsed {
        width: 4.75rem !important;
    }

    #sell-sidebar.tb-sell-sidebar.sell-sidebar--collapsed .tb-sell-sidebar-collapse-hidden,
    #sidebar.tb-sell-sidebar.sell-sidebar--collapsed .tb-sell-sidebar-collapse-hidden {
        display: none !important;
    }

    #sell-sidebar.tb-sell-sidebar.sell-sidebar--collapsed .tb-sell-sidebar-profile-card .flex,
    #sidebar.tb-sell-sidebar.sell-sidebar--collapsed .tb-sell-sidebar-profile-card .flex {
        justify-content: center;
        gap: 0;
    }

    #sell-sidebar.tb-sell-sidebar.sell-sidebar--collapsed .tb-sell-sidebar-profile-card,
    #sidebar.tb-sell-sidebar.sell-sidebar--collapsed .tb-sell-sidebar-profile-card {
        padding: 0.375rem;
        background: transparent;
    }

    #sell-sidebar.tb-sell-sidebar.sell-sidebar--collapsed #sell-sidebar-nav .tb-sell-nav-link,
    #sidebar.tb-sell-sidebar.sell-sidebar--collapsed #sell-sidebar-nav .tb-sell-nav-link {
        justify-content: center;
        padding-inline: 0.5rem;
        gap: 0;
    }

    #sell-sidebar.tb-sell-sidebar.sell-sidebar--collapsed .tb-sell-sidebar-logout,
    #sidebar.tb-sell-sidebar.sell-sidebar--collapsed .tb-sell-sidebar-logout {
        justify-content: center;
        padding-inline: 0;
    }
}

/* Create listing wizard — narrow viewport layout (no logic / visual redesign) */
@media (max-width: 767px) {
    #postPropFormContainer > .flex.min-h-0 {
        min-width: 0;
    }

    #postPropFormContainer main {
        min-width: 0;
    }

    .tb-sell-form-column .tb-sell-wizard-card {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .tb-sell-form-column .sell-stepper-track {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 0.65rem;
        column-gap: 0.35rem;
        overflow-x: visible;
        padding-inline: 0.125rem;
    }

    .tb-sell-form-column .sell-step-nav .tb-sell-stepper-line.sell-stepper-connector {
        display: none;
    }

    .tb-sell-form-column .sell-step-hit.sell-stepper-node {
        flex: 1 1 calc(50% - 0.375rem);
        min-width: 8.75rem;
        max-width: calc(50% - 0.25rem);
    }

    .tb-sell-form-column .sell-stepper-labels {
        min-width: 0;
    }

    .tb-sell-form-column .sell-step-nav .sell-step-head-label,
    .tb-sell-form-column .sell-step-nav .sell-step-sublabel {
        white-space: normal;
    }

    .tb-sell-form-column footer.flex,
    .tb-sell-form-column section.tb-sell-basic-info-card .tb-sell-basic-info-footer,
    .tb-sell-form-column section[data-step-panel] > footer {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .tb-sell-form-column footer .tb-sell-nav-muted,
    .tb-sell-form-column footer .tb-sell-wizard-btn-primary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .tb-sell-form-column section.tb-sell-photos-step-card .tb-sell-photos-step-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .tb-sell-form-column section.tb-sell-photos-step-card .tb-sell-photos-footer-actions {
        width: 100%;
        margin-left: 0;
        flex-direction: column;
        align-items: stretch;
    }

    .tb-sell-form-column section.tb-sell-photos-step-card .tb-sell-btn-draft,
    .tb-sell-form-column section.tb-sell-photos-step-card .tb-sell-btn-publish.tb-sell-wizard-btn-primary {
        width: 100%;
        min-width: 0;
    }

    .tb-sell-form-column .tb-sell-role-option {
        flex: 1 1 100%;
        min-width: 0;
        width: 100%;
    }

    .tb-sell-form-column #sell-gallery-dropzone .tb-sell-gallery-dropzone-lead {
        font-size: clamp(1.125rem, 4.5vw, 1.5rem);
    }

    .tb-sell-form-column section.tb-sell-photos-step-card .tb-sell-photo-tips-title {
        font-size: clamp(1.125rem, 4.5vw, 1.5rem);
    }
}

@media (max-width: 399px) {
    .tb-sell-form-column section.tb-sell-basic-info-card .tb-sell-basic-quad-row {
        grid-template-columns: minmax(0, 1fr);
    }
}
