/**
 * Theme 3 - Post Free Ads (matches React design)
 * Blue, white, dark grey, light green. Responsive: mobile, tablet, desktop.
 */
:root {
    --t3-background: #ffffff;
    --t3-foreground: #1e293b;
    --t3-primary: #2563eb;
    --t3-primary-light: #3b82f6;
    --t3-primary-foreground: #ffffff;
    --t3-muted: #64748b;
    --t3-border: #e2e8f0;
    --t3-card: #ffffff;
    --t3-footer-bg: 222 47% 11%;
    --t3-footer-text: rgba(255, 255, 255, 0.85);
    --t3-hero-gradient: linear-gradient(135deg, hsl(217 91% 60%) 0%, hsl(199 89% 48%) 100%);
    --t3-hero-overlay: linear-gradient(180deg, hsla(217, 91%, 20%, .85) 0%, hsla(199, 89%, 30%, .75) 100%);
    --t3-radius: 0.5rem;
    --t3-radius-lg: 0.75rem;
    --t3-success: #22c55e;
    --t3-verified-bg: #dcfce7;
    --t3-verified-text: #16a34a;
    --t3-featured-bg: #2563eb;
    --t3-featured-text: #fff;
}

.theme3-body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--t3-background);
    color: var(--t3-foreground);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.theme3-body h1, .theme3-body h2, .theme3-body h3, .theme3-body h4, .theme3-body h5, .theme3-body h6 {
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    color: var(--t3-foreground);
}

/* ----- Header (white, sticky) ----- */
.theme3-header {
    background: #fff !important;
    border-bottom: 1px solid var(--t3-border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.theme3-header .container-tight {
    max-width: 72rem;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}
.theme3-logo-img, .theme3-footer-logo-img {
    max-height: 50px;
}
.theme3-logo-icon {
    width: 2.25rem;
    height: 2.25rem;
    background: var(--t3-primary);
    border-radius: var(--t3-radius);
    color: #fff;
    flex-shrink: 0;
}
.theme3-brand { font-size: 1.125rem; font-weight: 700; color: var(--t3-foreground); }
.theme3-nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--t3-muted);
    transition: color 0.2s, background 0.2s;
}
.theme3-nav-link:hover { background: #f1f5f9; color: var(--t3-primary) !important; }
.theme3-header .btn-ghost { background: transparent; color: var(--t3-foreground); }
.theme3-header .btn-ghost:hover { background: #f1f5f9; color: var(--t3-primary); }
.theme3-header .btn-primary {
    background: var(--t3-primary);
    color: #fff;
    border-radius: var(--t3-radius);
    font-weight: 500;
    padding: 0.375rem 0.875rem;
}
.theme3-header .btn-primary:hover { background: #1d4ed8; color: #fff; }

@media (max-width: 767.98px) {
    .theme3-header .container-tight > div { min-height: 3.5rem; }
    .theme3-mobile-menu.collapse:not(.show) { display: none; }
    .theme3-mobile-menu.collapse.show { display: block; }
}

/* ----- Main ----- */
.theme3-main { flex: 1; }

/* ----- Container & sections ----- */
.container-tight {
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}
@media (min-width: 576px) {
    .container-tight { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 992px) {
    .container-tight { padding-left: 2rem; padding-right: 2rem; }
}

.section-padding {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
@media (min-width: 768px) {
    .section-padding { padding-top: 4rem; padding-bottom: 4rem; }
}
@media (min-width: 992px) {
    .section-padding { padding-top: 5rem; padding-bottom: 5rem; }
}

/* ----- Hero (city image + dark blue overlay) ----- */
.theme3-hero {
    position: relative;
    overflow: hidden;
    background: var(--t3-hero-gradient);
    background-image: url('../assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}
.theme3-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--t3-hero-overlay);
    z-index: 1;
}
.theme3-hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 3rem;
    padding-bottom: 3.5rem;
}
@media (min-width: 768px) {
    .theme3-hero-inner { padding-top: 4.5rem; padding-bottom: 5rem; }
}
@media (min-width: 992px) {
    .theme3-hero-inner { padding-top: 6rem; padding-bottom: 7rem; }
}

.theme3-hero .theme3-hero-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
    .theme3-hero .theme3-hero-title { font-size: 2.5rem; }
}
@media (min-width: 768px) {
    .theme3-hero .theme3-hero-title { font-size: 3rem; }
}
@media (min-width: 992px) {
    .theme3-hero .theme3-hero-title { font-size: 3.5rem; }
}
.theme3-hero .theme3-hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    max-width: 36rem;
}
@media (min-width: 768px) {
    .theme3-hero .theme3-hero-subtitle { font-size: 1.125rem; }
}

/* ----- Search card ----- */
.theme3-search-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--t3-radius-lg);
    padding: 1.25rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-top: 1.5rem;
}
.theme3-search-card .form-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--t3-muted);
    margin-bottom: 0.35rem;
}
.theme3-search-card .form-control,
.theme3-search-card .form-select {
    font-size: 0.875rem;
    border-radius: var(--t3-radius);
    border-color: var(--t3-border);
}
.theme3-search-card .form-control:focus,
.theme3-search-card .form-select:focus {
    border-color: var(--t3-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.theme3-search-card .btn-primary {
    background: var(--t3-primary);
    color: #fff;
    border-radius: var(--t3-radius);
    font-weight: 500;
    white-space: nowrap;
}
@media (max-width: 575.98px) {
    .theme3-search-card { padding: 1rem; }
    .theme3-search-card .theme3-search-row > * { width: 100% !important; max-width: none !important; }
    .theme3-search-card .btn-primary { width: 100%; }
}

/* ----- Section titles ----- */
.theme3-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--t3-foreground);
    margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
    .theme3-section-title { font-size: 1.75rem; }
}
.theme3-section-subtitle { color: var(--t3-muted); font-size: 0.9375rem; }

/* ----- Category cards ----- */
.theme3-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.25rem 0.75rem;
    border-radius: var(--t3-radius-lg);
    border: 1px solid var(--t3-border);
    background: var(--t3-card);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}
.theme3-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    color: var(--t3-foreground);
    border-color: rgba(37, 99, 235, 0.3);
}
.theme3-category-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.12);
    color: var(--t3-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    flex-shrink: 0;
}
.theme3-category-card .theme3-cat-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--t3-foreground);
}
.theme3-category-card .theme3-cat-count {
    font-size: 0.75rem;
    color: var(--t3-muted);
    margin-top: 0.25rem;
}

/* Home: category grid collapse (2 rows initially, see more to expand) */
.theme3-category-grid-wrap {
    max-height: 25rem;
    overflow: hidden;
    transition: max-height 0.5s ease;
}
.theme3-category-grid-wrap.is-expanded {
    max-height: 5000px;
}

/* ----- Stats strip (home) ----- */
.theme3-stats-strip {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06) 0%, rgba(37, 99, 235, 0.02) 100%);
    border-top: 1px solid var(--t3-border);
    border-bottom: 1px solid var(--t3-border);
}
.theme3-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}
.theme3-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--t3-primary);
    line-height: 1.2;
}
.theme3-stat-label {
    font-size: 0.8125rem;
    color: var(--t3-muted);
    font-weight: 500;
}
@media (min-width: 768px) {
    .theme3-stat-value { font-size: 1.75rem; }
}

/* ----- How it works (home) ----- */
.theme3-how-step {
    padding: 1.5rem 1rem;
    border-radius: var(--t3-radius-lg);
    border: 1px solid var(--t3-border);
    background: var(--t3-card);
    height: 100%;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.theme3-how-step:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-color: rgba(37, 99, 235, 0.2);
}
.theme3-how-step-num {
    position: absolute;
    top: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: var(--t3-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.theme3-how-step {
    position: relative;
    padding-top: 2rem;
}
.theme3-how-step-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.12);
    color: var(--t3-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
.theme3-how-step-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--t3-foreground);
    margin-bottom: 0.5rem;
}
.theme3-how-step-text {
    font-size: 0.875rem;
    color: var(--t3-muted);
    line-height: 1.5;
}

/* ----- Location pills ----- */
.theme3-location-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid var(--t3-border);
    background: var(--t3-card);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--t3-foreground);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}
.theme3-location-pill:hover {
    border-color: var(--t3-primary);
    color: var(--t3-primary);
}
.theme3-location-pill .theme3-loc-dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background: var(--t3-primary);
    flex-shrink: 0;
}

/* ----- Featured Ads ----- */
.theme3-ad-card {
    overflow: hidden;
    border-radius: var(--t3-radius-lg);
    border: 1px solid var(--t3-border);
    background: var(--t3-card);
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.theme3-ad-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
.theme3-ad-card .theme3-ad-image {
    aspect-ratio: 16/10;
    background: #f1f5f9;
    display: flex;
    align-items: baseline;
    justify-content: center;
    color: var(--t3-muted);
    position: relative;
}
.theme3-ad-card .theme3-ad-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.theme3-ad-card .theme3-ad-image .theme3-ad-placeholder {
    font-size: 2rem;
    opacity: 0.35;
    margin: auto;
}
.theme3-ad-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}
.theme3-ad-badge.badge-featured {
    background: var(--t3-featured-bg);
    color: var(--t3-featured-text);
}
.theme3-ad-badge.badge-verified {
    background: var(--t3-verified-bg);
    color: var(--t3-verified-text);
}
.theme3-ad-card .theme3-ad-body { padding: 1rem; flex: 1; display: flex; flex-direction: column; }
.theme3-ad-card .theme3-ad-cat { font-size: 0.75rem; font-weight: 600; color: var(--t3-primary); margin-bottom: 0.25rem; }
.theme3-ad-card .theme3-ad-title { font-size: 0.9375rem; font-weight: 600; color: var(--t3-foreground); margin-bottom: 0.5rem; line-height: 1.3; }
.theme3-ad-card .theme3-ad-title a { display: block; white-space: nowrap; text-overflow: ellipsis; overflow: hidden;}
.theme3-ad-card .theme3-ad-meta { margin-top: auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.25rem; }
.theme3-ad-card .theme3-ad-price { font-size: 1rem; font-weight: 700; color: var(--t3-foreground); }
.theme3-ad-card .theme3-ad-location { font-size: 0.75rem; color: var(--t3-muted); }

.badge-success { background: var(--t3-verified-bg); color: var(--t3-verified-text); }
.badge-primary-t3 { background: rgba(37, 99, 235, 0.15); color: var(--t3-primary); }
.badge-rejected { background: #fef2f2; color: #b91c1c; }

/* ----- Trust strip ----- */
.theme3-trust-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.12);
    color: var(--t3-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.theme3-trust-title { font-size: 1.125rem; font-weight: 700; color: var(--t3-foreground); margin-bottom: 0.35rem; }
.theme3-trust-desc { font-size: 0.875rem; color: var(--t3-muted); line-height: 1.5; }
@media (max-width: 767.98px) {
    .theme3-trust-item { margin-bottom: 1.5rem; }
    .theme3-trust-item:last-child { margin-bottom: 0; }
}

/* ----- CTA ----- */
.hero-gradient-bg,
.theme3-page-hero {
    background: var(--t3-hero-gradient);
    color: #fff;
}
.theme3-page-hero .text-primary-foreground { color: rgba(255,255,255,0.9) !important; }
.theme3-page-hero .text-primary-foreground-60 { color: rgba(255,255,255,0.6) !important; }
.hero-gradient-bg .btn-light,
.theme3-page-hero .btn-light {
    background: #fff;
    color: var(--t3-primary);
    font-weight: 600;
    border-radius: var(--t3-radius);
    padding: 0.625rem 1.5rem;
}
.hero-gradient-bg .btn-light:hover,
.theme3-page-hero .btn-light:hover {
    background: #f8fafc;
    color: var(--t3-primary);
}

/* ----- React-style card hover ----- */
.theme3-card-hover {
    transition: transform 0.2s, box-shadow 0.2s;
}
.theme3-card-hover:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

/* ----- Categories page: list card (row layout) ----- */
.theme3-categories-list-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid var(--t3-border);
    background: var(--t3-card);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
}
.theme3-categories-list-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    color: var(--t3-foreground);
    border-color: rgba(37, 99, 235, 0.3);
}
.theme3-categories-list-card .theme3-category-icon {
    margin-bottom: 0;
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
}
.theme3-categories-list-card .theme3-cat-name { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.theme3-categories-list-card .theme3-cat-desc { font-size: 0.875rem; color: var(--t3-muted); margin: 0; }
.theme3-categories-list-card .theme3-cat-count-pill {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    background: #f1f5f9;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--t3-muted);
}

/* ----- Categories page: block with subcategories ----- */
.theme3-category-blocks {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.theme3-category-block {
    border-radius: 0.75rem;
    border: 1px solid var(--t3-border);
    background: var(--t3-card);
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.theme3-category-block:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.theme3-category-block-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
}
.theme3-category-block-head:hover {
    background: rgba(37, 99, 235, 0.04);
    color: var(--t3-foreground);
}
.theme3-category-block-icon {
    width: 2.75rem;
    height: 2.75rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--t3-primary);
    font-size: 1.125rem;
}
.theme3-category-block-info {
    flex: 1;
    min-width: 0;
}
.theme3-category-block-title {
    font-size: 1.0625rem;
    font-weight: 700;
    margin: 0 0 0.125rem 0;
    color: var(--t3-foreground);
}
.theme3-category-block-meta {
    font-size: 0.8125rem;
    color: var(--t3-muted);
}
.theme3-category-block-arrow {
    color: var(--t3-muted);
    font-size: 0.75rem;
    transition: transform 0.2s;
}
.theme3-category-block-head:hover .theme3-category-block-arrow {
    color: var(--t3-primary);
    transform: translateX(2px);
}
/* ----- Categories page: advanced two-column layout (main + sub list) ----- */
.theme3-categories-advanced {
    margin-top: 0.5rem;
}
.theme3-categories-grid {
    display: grid;
    gap: 2rem 2.5rem;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .theme3-categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem 3rem;
    }
}
@media (min-width: 1200px) {
    .theme3-categories-page .container-tight { max-width: 80rem; }
}

.theme3-cat-card {
    background: var(--t3-card);
    border: 1px solid var(--t3-border);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.25s ease, border-color 0.2s ease;
}
.theme3-cat-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: rgba(37, 99, 235, 0.2);
}

.theme3-cat-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem 1rem;
    border-bottom: 1px solid var(--t3-border);
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.04) 0%, transparent 100%);
}
.theme3-cat-card-icon {
    width: 2.75rem;
    height: 2.75rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.625rem;
    background: linear-gradient(135deg, var(--t3-primary) 0%, #1d4ed8 100%);
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
.theme3-cat-card-heading-wrap {
    flex: 1;
    min-width: 0;
}
.theme3-cat-card-title {
    display: block;
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin-bottom: 0.25rem;
    transition: color 0.2s;
}
.theme3-cat-card-title:hover {
    color: var(--t3-primary);
}
.theme3-cat-card-link:hover .theme3-cat-card-title {
    color: var(--t3-primary);
}
.theme3-cat-card-count {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--t3-muted);
}

.theme3-cat-card-sublist {
    list-style: none;
    margin: 0;
    padding: 0.75rem 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}
.theme3-cat-card-sublist li {
    margin: 0;
    padding: 0;
}
.theme3-cat-card-sublink {
    display: block;
    font-size: 0.9375rem;
    color: var(--t3-foreground);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    transition: color 0.2s, background 0.2s;
    position: relative;
    padding-left: 1.5rem;
}
.theme3-cat-card-sublink::before {
    content: "";
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--t3-muted);
    opacity: 0.7;
    transition: background 0.2s, opacity 0.2s;
}
.theme3-cat-card-sublink:hover {
    color: var(--t3-primary);
    background: rgba(37, 99, 235, 0.06);
}
.theme3-cat-card-sublink:hover::before {
    background: var(--t3-primary);
    opacity: 1;
}
.theme3-cat-card-sublist-empty {
    display: flex;
    align-items: center;
}
.theme3-cat-card-no-subs {
    font-size: 0.9375rem;
    color: var(--t3-muted);
    font-style: normal;
}

.theme3-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}
@media (max-width: 575.98px) {
    .theme3-filter-bar { flex-direction: column; align-items: stretch; }
}
.theme3-filter-search-wrap {
    position: relative;
    max-width: 24rem;
    flex: 1;
}
.theme3-filter-search-wrap .theme3-search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    color: var(--t3-muted);
    pointer-events: none;
}
.theme3-filter-search-wrap .form-control { padding-left: 2.25rem; }
.theme3-listing-card {
    display: block;
    overflow: hidden;
    border-radius: 0.75rem;
    border: none;
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.theme3-listing-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}
.theme3-listing-card:hover .theme3-listing-title { color: var(--t3-primary); }
.theme3-listing-image-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f1f5f9;
}
.theme3-listing-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.theme3-listing-card:hover .theme3-listing-image-wrap img { transform: scale(1.04); }
.theme3-listing-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--t3-muted);
    font-size: 2.25rem;
    opacity: 0.4;
}
.theme3-listing-body {
    padding: 1rem 1.25rem 1.25rem;
    box-sizing: border-box;
}
.theme3-listing-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-width: 0;
    width: 100%;
}
.theme3-listing-content > * {
    margin-left: 0;
    margin-right: 0;
}
.theme3-listing-cat {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.3;
    margin: 0 0 0.35rem 0;
    padding: 0;
    color: var(--t3-muted);
    text-align: left;
    display: block;
    width: 100%;
    box-sizing: border-box;
}
.theme3-listing-cat-link,
.theme3-listing-cat span {
    display: inline;
}
.theme3-listing-cat-link {
    color: var(--t3-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.theme3-listing-cat-link:hover {
    color: var(--t3-primary);
}
.theme3-listing-title {
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--t3-foreground);
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
}
.theme3-listing-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 0.75rem;
    font-size: 0.8125rem;
    color: var(--t3-muted);
    margin: 0;
    min-height: 1.25rem;
}
.theme3-listing-meta-left {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
    text-align: left;
}
.theme3-listing-meta-left .theme3-listing-meta-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.theme3-listing-meta-right {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
    margin-left: auto;
    text-align: right;
}
.theme3-listing-meta-left i,
.theme3-listing-meta-right i {
    font-size: 0.7rem;
    opacity: 0.9;
    flex-shrink: 0;
}

/* Grid spacing for ad listing pages (home, category, state) */
.theme3-ads-grid {
    --bs-gutter-y: 1.25rem;
}
@media (min-width: 768px) {
    .theme3-ads-grid {
        --bs-gutter-x: 1.75rem;
        --bs-gutter-y: 1.75rem;
    }
}

/* List view for ad listing pages */
.theme3-ads-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.theme3-listing-card-list-wrap {
    width: 100%;
}
.theme3-listing-card-list {
    flex-direction: row;
    align-items: stretch;
    text-align: left;
    min-height: 0;
}
.theme3-listing-card-list:hover {
    transform: none;
    translate: none;
}
.theme3-listing-image-wrap-list {
    flex-shrink: 0;
    width: 140px;
    min-width: 140px;
    aspect-ratio: 1;
}
@media (min-width: 576px) {
    .theme3-listing-image-wrap-list {
        width: 160px;
        min-width: 160px;
    }
}
.theme3-listing-body-list {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
}
.theme3-listing-card-list .theme3-listing-title {
    -webkit-line-clamp: 2;
}
.theme3-listing-desc {
    font-size: 0.8125rem;
    color: var(--t3-muted);
    margin: 0.25rem 0 0.5rem 0;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.theme3-view-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--t3-border, #e2e8f0);
    border-radius: 0.5rem;
    overflow: hidden;
    background: #fff;
}
.theme3-view-toggle a,
.theme3-view-toggle span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    color: var(--t3-muted);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.theme3-view-toggle a:hover {
    background: var(--t3-muted-bg, #f1f5f9);
    color: var(--t3-foreground);
}
.theme3-view-toggle .theme3-view-active {
    background: var(--t3-primary);
    color: #fff;
}
.theme3-view-toggle a:not(:last-child) {
    border-right: 1px solid var(--t3-border, #e2e8f0);
}

.theme3-listing-price { font-size: 1.25rem; font-weight: 800; color: var(--t3-primary); margin-bottom: 0.75rem; }
.theme3-listing-badge {
    position: absolute;
    left: 0.75rem;
    top: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--t3-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

/* ----- Ad Detail ----- */
.ad-detail-image-wrap {
    border-radius: var(--t3-radius-lg);
    overflow: hidden;
    background: #f1f5f9;
    border: 1px solid var(--t3-border);
}
.ad-detail-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: block;
    background: #f8fafc;
}
.ad-detail-no-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    background: #f8fafc;
}
.ad-detail-title {
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--t3-foreground);
    margin: 0 0 0.75rem;
}
.ad-detail-meta-title {
    font-size: 0.9375rem;
    margin: 0 0 0.25rem;
}
.ad-detail-meta-description {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 0 0.75rem;
}
.ad-detail-meta {
    display: grid;
    font-size: 0.875rem;
    color: var(--t3-muted);
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 0px;
}
.ad-detail-meta-item {
    display: inline-flex;
    align-items: center;
}
.ad-detail-meta-item a { color: var(--t3-primary); text-decoration: none; }
.ad-detail-meta-item a:hover { text-decoration: underline; }
.ad-detail-section-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--t3-foreground);
    margin: 0 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--t3-border);
}
.ad-detail-description {
    margin-top: 10px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #334155;
    /* white-space: pre-line; */
    text-align: justify;
}
.ad-detail-table {
    width: 100%;
    border-collapse: collapse;
}
.ad-detail-table th,
.ad-detail-table td {
    padding: 0.6rem 0.75rem;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--t3-border);
    vertical-align: top;
}
.ad-detail-table th {
    width: 140px;
    font-weight: 600;
    color: var(--t3-muted);
    white-space: nowrap;
}
.ad-detail-table td { color: var(--t3-foreground); }
.ad-detail-table a { color: var(--t3-primary); text-decoration: none; }
.ad-detail-table a:hover { text-decoration: underline; }
.ad-detail-sidebar { position: sticky; top: 1.5rem; }
.ad-detail-contact-card {
    background: var(--t3-card);
    border: 1px solid var(--t3-border);
    border-radius: var(--t3-radius-lg);
    padding: 1.25rem;
}
.ad-detail-contact-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--t3-border);
}
.ad-detail-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f1f5f9;
}
.ad-detail-contact-row:last-child { border-bottom: none; }
.ad-detail-contact-row > i {
    font-size: 1rem;
    color: var(--t3-primary);
    margin-top: 0.2rem;
    width: 1.25rem;
    text-align: center;
    flex-shrink: 0;
}
.ad-detail-contact-label {
    display: block;
    font-size: 0.75rem;
    color: var(--t3-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.ad-detail-contact-value {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--t3-foreground);
    word-break: break-word;
}
a.ad-detail-contact-value { color: var(--t3-primary); text-decoration: none; }
a.ad-detail-contact-value:hover { text-decoration: underline; }
.ad-detail-safety {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--t3-radius-lg);
    padding: 1rem 1.25rem;
}
.ad-detail-safety-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #16a34a;
    margin: 0 0 0.5rem;
}
.ad-detail-safety-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ad-detail-safety-list li {
    position: relative;
    padding: 0.25rem 0 0.25rem 1.25rem;
    font-size: 0.825rem;
    color: #334155;
}
.ad-detail-safety-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 700;
}
@media (max-width: 991.98px) {
    .ad-detail-sidebar { position: static; }
    .ad-detail-title { font-size: 1.25rem; }
}

/* Recent ads in sidebar */
.ad-detail-recent-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--t3-border);
}
.ad-detail-recent-list { margin: 0; padding: 0; }
.ad-detail-recent-item {
    border-bottom: 1px solid #f1f5f9;
}
.ad-detail-recent-item:last-child { border-bottom: none; }
.ad-detail-recent-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    text-decoration: none;
    color: var(--t3-foreground);
}
.ad-detail-recent-link:hover { color: var(--t3-primary); }
.ad-detail-recent-thumb {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: var(--t3-radius);
    object-fit: cover;
    background: #f1f5f9;
}
.ad-detail-recent-thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--t3-muted);
}
.ad-detail-recent-body { min-width: 0; }
.ad-detail-recent-item-title {
    display: -webkit-box;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.3;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.ad-detail-recent-meta {
    display: block;
    font-size: 0.75rem;
    color: var(--t3-muted);
    margin-top: 0.15rem;
}

/* Social sharing */
.ad-detail-share-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--t3-border);
}
.ad-detail-share-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.ad-detail-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--t3-radius);
    border: 1px solid var(--t3-border);
    background: var(--t3-card);
    color: var(--t3-foreground);
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.ad-detail-share-btn:hover {
    border-color: var(--t3-primary);
    color: var(--t3-primary);
    background: rgba(37, 99, 235, 0.08);
}
.ad-detail-share-btn:focus {
    outline: 2px solid var(--t3-primary);
    outline-offset: 2px;
}
.ad-detail-share-fb:hover { border-color: #1877f2; color: #1877f2; background: rgba(24, 119, 242, 0.08); }
.ad-detail-share-tw:hover { border-color: #000; color: #000; background: rgba(0, 0, 0, 0.06); }
.ad-detail-share-wa:hover { border-color: #25d366; color: #25d366; background: rgba(37, 211, 102, 0.08); }
.ad-detail-share-in:hover { border-color: #0a66c2; color: #0a66c2; background: rgba(10, 102, 194, 0.08); }
.ad-detail-share-copy {
    cursor: pointer;
    font-size: 1rem;
}

/* ----- Dashboard (React-style) ----- */
.theme3-dashboard-wrap {
    min-height: 80vh;
    background: rgba(241, 245, 249, 0.5);
}
.theme3-dashboard-sidebar {
    width: 100%;
    flex-shrink: 0;
}
@media (min-width: 768px) {
    .theme3-dashboard-sidebar {
        width: 16rem;
        display: block !important; /* always show common sidebar on account pages */
    }
}
.theme3-dashboard-sidebar-card {
    border-radius: 0.75rem;
    border: 1px solid var(--t3-border);
    background: #fff;
    padding: 1.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.theme3-dashboard-user-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--t3-border);
    min-width: 0;
}
.theme3-dashboard-user-card > div:last-child {
    min-width: 0;
    overflow: hidden;
}
.theme3-dashboard-user-card p.text-muted {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.theme3-dashboard-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--t3-primary);
    color: #fff;
    font-weight: 700;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.theme3-dashboard-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.theme3-dashboard-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.75rem;
    border-radius: var(--t3-radius);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--t3-muted);
    transition: background 0.2s, color 0.2s;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}
.theme3-dashboard-nav-link:hover {
    background: #f1f5f9;
    color: var(--t3-primary);
}
.theme3-dashboard-nav-link.active {
    background: var(--t3-primary);
    color: #fff;
}
.theme3-dashboard-nav-link.active i {
    color: inherit;
}
.theme3-dashboard-nav-link i { width: 1rem; height: 1rem; flex-shrink: 0; }
.theme3-dashboard-cta {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--t3-border);
}
.theme3-dashboard-cta .btn { width: 100%; }
.theme3-dashboard-main { min-width: 0; flex: 1; }
.theme3-dashboard-card {
    border-radius: var(--t3-radius-lg);
    border: 1px solid var(--t3-border);
    background: var(--t3-card);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}
.theme3-dashboard-card:last-child { margin-bottom: 0; }
.theme3-dashboard-card-title { font-size: 1.125rem; font-weight: 700; margin-bottom: 1rem; }
.theme3-dashboard-stat-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.25rem;
    height: 100%;
}
.theme3-dashboard-stat-card > div:last-child { min-width: 0; }
.theme3-dashboard-stat-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--t3-radius);
    background: rgba(37, 99, 235, 0.12);
    color: var(--t3-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.theme3-dashboard-stat-value { font-size: 1.5rem; font-weight: 700; color: var(--t3-foreground); line-height: 1.1; }
.theme3-dashboard-stat-label { font-size: 0.75rem; color: var(--t3-muted); line-height: 1.2; margin-top: 0.125rem; }
.theme3-dashboard-stat-change {
    font-size: 0.75rem;
    color: var(--t3-success);
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.theme3-dashboard-stat-change i { flex-shrink: 0; }
.theme3-dashboard-recent-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    border-radius: var(--t3-radius);
    border: 1px solid var(--t3-border);
    margin-bottom: 0.5rem;
}
.theme3-dashboard-recent-item:last-child { margin-bottom: 0; }
.theme3-myads-list .theme3-myad-item { margin-bottom: 1rem; }
.theme3-myads-list .theme3-myad-item:last-child { margin-bottom: 0; }
.theme3-dashboard-mobile-toggle { display: none; }
@media (max-width: 767.98px) {
    .theme3-dashboard-mobile-toggle { display: flex; }
    .theme3-dashboard-sidebar.collapse:not(.show) { display: none; }
    .theme3-dashboard-sidebar.collapse.show { display: block; }
}

/* ----- Footer ----- */
.theme3-footer {
    background-color: hsl(var(--t3-footer-bg));
    color: var(--t3-footer-text);
}
.theme3-footer .container-tight {
    max-width: 72rem;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}
@media (min-width: 576px) {
    .theme3-footer .container-tight { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 992px) {
    .theme3-footer .container-tight { padding-left: 2rem; padding-right: 2rem; }
}
.theme3-footer-logo {
    width: 2rem;
    height: 2rem;
    background: var(--t3-primary);
    border-radius: var(--t3-radius);
    flex-shrink: 0;
}
.theme3-footer-brand { font-size: 1.125rem; font-weight: 700; color: #fff; }
.theme3-footer-heading {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.theme3-footer .list-unstyled li { margin-bottom: 0.35rem; }
.theme3-footer .list-unstyled li:last-child { margin-bottom: 0; }
.theme3-footer-text { opacity: 0.85; font-size: 0.875rem; line-height: 1.5; text-align: justify; }
.theme3-footer-link {
    color: inherit;
    text-decoration: none;
    opacity: 0.85;
    font-size: 0.875rem;
    transition: opacity 0.2s;
}
.theme3-footer-link:hover { opacity: 1; color: #fff; }

/* Footer social icons */
.theme3-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.theme3-footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    font-size: 1.1rem;
}
.theme3-footer-social-icon:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    transform: translateY(-2px);
}
.theme3-footer-social-icon:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.theme3-footer-bottom {
    opacity: 0.75;
    font-size: 0.8125rem;
}
.theme3-footer .theme3-footer-bottom.border-top {
    border-color: rgba(255, 255, 255, 0.15) !important;
}
.theme3-newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    border-radius: var(--t3-radius);
    font-size: 0.875rem;
}
.theme3-newsletter-form .form-control::placeholder { color: rgba(255, 255, 255, 0.6); }
.theme3-newsletter-form .btn-primary {
    background: var(--t3-primary);
    border: none;
    border-radius: var(--t3-radius);
    font-weight: 500;
}
@media (max-width: 575.98px) {
    .theme3-newsletter-form { flex-direction: column; }
    .theme3-newsletter-form .form-control { width: 100%; }
    .theme3-newsletter-form .btn { width: 100%; }
}

/* ----- Form cards ----- */
.theme3-form-card {
    border-radius: var(--t3-radius-lg);
    border: 1px solid var(--t3-border);
    background: var(--t3-card);
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
@media (min-width: 576px) {
    .theme3-form-card { padding: 2rem; }
}
.theme3-form-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.12);
    color: var(--t3-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

/* ----- Steps (post-ad) ----- */
.theme3-step { width: 2rem; height: 2rem; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 0.875rem; font-weight: 600; }
.theme3-step.active { background: var(--t3-primary); color: #fff; }
.theme3-step.inactive { background: #f1f5f9; color: var(--t3-muted); }
.theme3-step-connector { height: 2px; width: 3rem; border-radius: 2px; }

/* ----- Auth errors ----- */
.theme3-auth-error { background: #fef2f2; color: #b91c1c; padding: 0.5rem 0.75rem; border-radius: var(--t3-radius); margin-bottom: 0.75rem; font-size: 0.875rem; }
.theme3-auth-success { background: #f0fdf4; color: #166534; padding: 0.5rem 0.75rem; border-radius: var(--t3-radius); margin-bottom: 0.75rem; font-size: 0.875rem; }
.theme3-field-error { font-size: 0.875rem; color: #b91c1c; margin-top: 0.25rem; }

/* ----- Select2 placeholder (post-ad category, state, city) ----- */
/* File input: hide visually without display:none so it still submits on edit (some browsers drop files inside display:none) */
#theme3-file-input.theme3-file-input-hidden {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    clip: rect(0, 0, 0, 0) !important;
}
.select2-container--bootstrap-5 .select2-selection--single .select2-selection__placeholder,
.select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
    color: #6b7280;
}
.select2-container--bootstrap-5.select2-container--focus .select2-selection--single .select2-selection__placeholder,
.select2-container--bootstrap-5.select2-container--open .select2-selection--single .select2-selection__placeholder {
    color: #9ca3af;
}
