/* © 2026 H.W. & H. Investments Pty Ltd. All rights reserved. */
/* ─── Trade Layout ─── */
.trade-layout { display: grid; grid-template-columns: 240px 1fr; gap: 2rem; max-width: 1400px; margin: 0 auto; padding: 2rem 1rem; min-height: 60vh; }
@media (max-width: 768px) { .trade-layout { grid-template-columns: 1fr; } }

/* ─── Trade Sidebar ─── */
.trade-sidebar { background: var(--white); border-radius: 12px; padding: 1.5rem; box-shadow: 0 2px 8px rgba(0,0,0,0.06); height: fit-content; position: sticky; top: 80px; }
.trade-sidebar-title { font-size: 1rem; font-weight: 700; margin: 0 0 1rem; color: var(--brand-secondary); }
.trade-nav { display: flex; flex-direction: column; gap: 2px; }
.trade-nav a { display: block; padding: 0.5rem 0.75rem; border-radius: 6px; font-size: 0.85rem; color: var(--grey-900); text-decoration: none; transition: background 0.15s; }
.trade-nav a:hover { background: #f0f4fa; }
.trade-nav-active { background: #fefce8 !important; color: #b8941f !important; font-weight: 600; }

/* ─── Trade Content ─── */
.trade-content { min-width: 0; }
.trade-content h1 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.trade-header-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; flex-wrap: wrap; gap: 0.5rem; }
.trade-toolbar { margin-bottom: 1.5rem; }

/* ─── Trade Welcome Banner ─── */
.trade-welcome {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, var(--brand-secondary) 0%, #253d6b 100%);
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 2rem;
}
.trade-welcome h1 { color: #fff; margin: 0 0 4px; }
.trade-welcome p { font-size: 14px; color: rgba(255,255,255,0.7); margin: 0; }
@media (max-width: 600px) {
    .trade-welcome { flex-direction: column; align-items: flex-start; padding: 20px 24px; }
}

/* ─── Trade Stat Icons ─── */
.trade-stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}
.tsi-feed    { background: #e8f5e9; color: #2e7d32; }
.tsi-tender  { background: #fff3e0; color: #e65100; }
.tsi-auction { background: #fef9e7; color: #b8941f; }
.tsi-bulk    { background: #e3f2fd; color: #1565c0; }
.tsi-finance { background: #f3e5f5; color: #7b1fa2; }
.tsi-active  { background: #e8f5e9; color: #2e7d32; }
.tsi-offers  { background: #fce4ec; color: #c62828; }
.tsi-network { background: #e3f0ff; color: #1976d2; }

/* ─── Trade Finance Banner ─── */
.trade-finance-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #1a365d, #2d5a8e);
    border-radius: 12px;
    padding: 24px 28px;
    margin-bottom: 2rem;
}
.trade-finance-banner h3 { color: var(--brand-primary); margin: 0 0 6px; font-size: 18px; }
.trade-finance-banner p { color: rgba(255,255,255,0.8); margin: 0; font-size: 14px; }
@media (max-width: 600px) {
    .trade-finance-banner { flex-direction: column; align-items: flex-start; }
}

.trade-section { margin-top: 2rem; }
.trade-section h2 { font-size: 1.1rem; margin-bottom: 1rem; color: var(--brand-secondary); }

/* ─── Trade Hub Stats ─── */
.trade-stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.trade-stat-card { display: flex; flex-direction: column; align-items: center; padding: 1.5rem 1rem; background: var(--white); border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); text-decoration: none; color: inherit; transition: transform 0.15s; }
.trade-stat-card:hover { transform: translateY(-2px); }
.trade-stat-value { font-size: 2rem; font-weight: 700; color: var(--brand-primary); }
.trade-stat-label { font-size: 0.8rem; color: var(--grey-600); text-align: center; }

.trade-actions-grid { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.trade-quick-actions h2 { font-size: 1.1rem; margin-bottom: 0.75rem; }

/* ─── Trade Listings Grid ─── */
.trade-listing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.trade-listing-card { display: block; background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.08); text-decoration: none; color: inherit; transition: transform 0.15s; }
.trade-listing-card:hover { transform: translateY(-2px); }
.trade-listing-image { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--grey-100); }
.trade-listing-image img { width: 100%; height: 100%; object-fit: cover; }
.trade-method-badge { display: inline-block; background: var(--brand-secondary); color: #fff; font-size: 0.7rem; padding: 3px 8px; border-radius: 4px; position: absolute; top: 8px; left: 8px; }
h1 .trade-method-badge, .ws-info .trade-method-badge, .my-trade-header .trade-method-badge { position: static; vertical-align: middle; margin-left: 0.5rem; }
.trade-listing-body { padding: 1rem; }
.trade-listing-body h3 { font-size: 0.95rem; margin: 0 0 0.5rem; }
.trade-listing-meta { display: flex; gap: 1rem; font-size: 0.85rem; margin-bottom: 0.5rem; }
.trade-price { font-weight: 700; color: var(--brand-secondary); }
.trade-listing-info { display: flex; gap: 0.75rem; font-size: 0.8rem; color: var(--grey-600); flex-wrap: wrap; }
.trade-lot-desc { font-size: 0.85rem; color: #555; margin: 0.25rem 0 0.5rem; }
.ppsr-clear { color: #27ae60; font-weight: 600; }
.tender-closes { font-size: 0.8rem; color: #e67e22; font-weight: 600; padding: 0.5rem 1rem; border-top: 1px solid #f0f0f0; }

/* ─── Feed Cards ─── */
.feed-list { display: flex; flex-direction: column; gap: 1rem; }
.feed-card { display: grid; grid-template-columns: 200px 1fr 280px; gap: 1rem; background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
@media (max-width: 900px) { .feed-card { grid-template-columns: 1fr; } }
.feed-card-image { aspect-ratio: 4/3; overflow: hidden; background: var(--grey-100); }
.feed-card-image img { width: 100%; height: 100%; object-fit: cover; }
.feed-card-body { padding: 1rem; }
.feed-card-body h3 { margin: 0 0 0.5rem; font-size: 1rem; }
.feed-card-body h3 a { color: var(--brand-secondary); text-decoration: none; }
.feed-card-body h3 a:hover { text-decoration: underline; }
.feed-card-specs { display: flex; gap: 0.75rem; font-size: 0.8rem; color: var(--grey-600); margin-bottom: 0.5rem; flex-wrap: wrap; }
.feed-card-condition { display: flex; gap: 1rem; font-size: 0.8rem; margin-bottom: 0.5rem; flex-wrap: wrap; }
.feed-card-price { font-size: 1.1rem; font-weight: 700; color: var(--brand-secondary); margin-bottom: 0.25rem; }
.feed-card-meta { display: flex; gap: 1rem; font-size: 0.75rem; color: var(--grey-500); }
.feed-card-action { padding: 1rem; border-left: 1px solid #f0f0f0; display: flex; flex-direction: column; gap: 0.5rem; justify-content: center; }
.offer-form { display: flex; flex-direction: column; gap: 0.5rem; }
.my-offer-summary { font-size: 0.85rem; padding: 0.5rem; background: #f0f4fa; border-radius: 6px; }
.form-checkbox-inline { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.85rem; }

/* ─── Wholesale Detail ─── */
.ws-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 768px) { .ws-detail { grid-template-columns: 1fr; } }
.ws-gallery { display: flex; flex-direction: column; gap: 0.5rem; }
.ws-gallery-img { width: 100%; border-radius: 8px; }
.ws-info h1 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.ws-price { font-size: 1.5rem; font-weight: 700; color: var(--brand-secondary); margin: 0.5rem 0; }
.ws-specs { display: flex; flex-wrap: wrap; gap: 0.75rem; font-size: 0.85rem; margin: 1rem 0; }
.ws-specs span { background: #f0f4fa; padding: 0.25rem 0.5rem; border-radius: 4px; }
.ws-meta { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.85rem; color: var(--grey-600); margin: 1rem 0; }
.ws-bulk-info { background: #fffbe6; padding: 1rem; border-radius: 8px; margin: 1rem 0; }
.ws-offer-section { margin-top: 2rem; padding-top: 1.5rem; border-top: 2px solid #f0f0f0; }
.ws-offer-form { display: flex; flex-direction: column; gap: 0.75rem; }
.tender-status-bar { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; margin: 0.5rem 0 1rem; font-size: 0.85rem; }
.tender-bids-section { margin-top: 2rem; }

/* ─── My Trade Listings ─── */
.my-trade-card { background: var(--white); border-radius: 12px; padding: 1.5rem; box-shadow: 0 2px 8px rgba(0,0,0,0.06); margin-bottom: 1.5rem; }
.my-trade-header { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1rem; flex-wrap: wrap; }
.my-trade-header h3 { margin: 0; }
.my-trade-offers { border-top: 1px solid #f0f0f0; padding-top: 1rem; }
.my-trade-offers h4 { margin: 0 0 0.75rem; font-size: 0.95rem; }

/* ─── Network ─── */
.network-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.network-card { display: flex; align-items: center; gap: 1rem; background: var(--white); padding: 1rem; border-radius: 8px; box-shadow: 0 1px 4px rgba(0,0,0,0.06); flex-wrap: wrap; }
.network-card-blocked { opacity: 0.6; }
.dealer-grid-compact { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.dealer-card-compact { background: var(--white); padding: 1rem; border-radius: 8px; box-shadow: 0 1px 4px rgba(0,0,0,0.06); display: flex; flex-direction: column; align-items: center; gap: 0.25rem; text-align: center; }
.dealer-card-logo-sm { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }

/* ─── Preferences ─── */
.checkbox-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 0.5rem; }
.form-checkbox { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; cursor: pointer; }

/* ─── Analytics ─── */
.analytics-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.5rem; margin-bottom: 2rem; }
.analytics-card { background: var(--white); border-radius: 12px; padding: 1.5rem; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.analytics-card h3 { font-size: 0.9rem; margin: 0 0 0.5rem; color: var(--grey-600); }
.analytics-stat { font-size: 2.5rem; font-weight: 700; color: var(--brand-primary); }
.analytics-detail { font-size: 0.85rem; color: var(--grey-600); margin-top: 0.25rem; }

/* ─── Offers List ─── */
.offers-list { display: flex; flex-direction: column; gap: 1rem; }
.offer-card { background: var(--white); border-radius: 12px; padding: 1.5rem; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.offer-card-accepted { border: 2px solid #27ae60; }
.offer-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.75rem; flex-wrap: wrap; gap: 0.5rem; }
.offer-amount { font-size: 1.5rem; font-weight: 700; color: var(--brand-secondary); }
.offer-details { display: flex; gap: 1rem; font-size: 0.85rem; color: var(--grey-600); margin-bottom: 0.75rem; flex-wrap: wrap; }
.offer-dealer-location { font-size: 0.8rem; color: var(--grey-500); }
.offer-message { background: var(--off-white); padding: 0.75rem; border-radius: 6px; margin-bottom: 0.75rem; font-size: 0.9rem; }
.offer-actions { display: flex; gap: 0.5rem; align-items: flex-start; flex-wrap: wrap; }
.counter-form { margin-top: 0.5rem; display: flex; gap: 0.5rem; align-items: flex-end; }
.submission-actions { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; }

/* ─── Sell to Dealer Landing ─── */
.std-landing { max-width: 1100px; margin: 0 auto; padding: 0 1rem; }
.std-hero { text-align: center; padding: 4rem 1rem; background: linear-gradient(135deg, var(--brand-secondary), #2d4a7c); color: #fff; border-radius: 12px; margin-bottom: 3rem; }
.std-hero h1 { font-size: 2.2rem; margin-bottom: 0.75rem; }
.std-hero p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 1.5rem; }
.std-how-it-works { margin-bottom: 3rem; }
.std-how-it-works h2 { text-align: center; margin-bottom: 2rem; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.step { text-align: center; }
.step-number { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%; background: var(--brand-primary); color: #fff; font-weight: 700; font-size: 1.2rem; margin-bottom: 0.75rem; }
.std-benefits { margin-bottom: 3rem; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.benefit-card { background: var(--white); padding: 1.5rem; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.benefit-card h3 { color: var(--brand-secondary); margin-bottom: 0.5rem; }
.std-cta { text-align: center; padding: 3rem; background: #f0f4fa; border-radius: 12px; margin-bottom: 3rem; }
.std-cta h2 { margin-bottom: 0.5rem; }
.std-cta p { margin-bottom: 1.5rem; color: var(--grey-600); }

/* ─── Fleet Landing ─── */
.fleet-landing { max-width: 1100px; margin: 0 auto; padding: 0 1rem; }
.fleet-hero { text-align: center; padding: 4rem 1rem; background: linear-gradient(135deg, var(--brand-secondary), #2d4a7c); color: #fff; border-radius: 12px; margin-bottom: 3rem; }
.fleet-hero h1 { font-size: 2.2rem; margin-bottom: 0.75rem; }
.fleet-hero p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 1.5rem; }
.fleet-features, .fleet-who { margin-bottom: 3rem; }
.fleet-features h2, .fleet-who h2 { text-align: center; margin-bottom: 2rem; }
.features-grid, .who-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.feature-card, .who-card { background: var(--white); padding: 1.5rem; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.feature-card h3, .who-card h3 { color: var(--brand-secondary); margin-bottom: 0.5rem; }
.fleet-cta { text-align: center; padding: 3rem; background: #f0f4fa; border-radius: 12px; margin-bottom: 3rem; }
.fleet-cta h2 { margin-bottom: 0.5rem; }
.fleet-cta p { margin-bottom: 1.5rem; color: var(--grey-600); }

/* ─── Upload Instructions ─── */
.upload-instructions { background: var(--off-white); padding: 1.5rem; border-radius: 8px; margin-bottom: 2rem; }
.upload-instructions h3 { margin-top: 0; }
.upload-instructions code { background: var(--grey-100); padding: 1px 4px; border-radius: 3px; font-size: 0.85rem; }

/* ─── Dealer Storefront ─── */
.dealer-storefront { max-width: 1200px; margin: 0 auto; }
.dealer-header { min-height: 200px; background: linear-gradient(135deg, var(--brand-secondary), #2d4a7c); position: relative; }
.dealer-header-overlay { background: rgba(0,0,0,0.3); padding: 2rem; display: flex; align-items: flex-end; min-height: 200px; }
.dealer-header-inner { display: flex; gap: 1.5rem; align-items: flex-end; }
.dealer-logo { width: 80px; height: 80px; border-radius: 50%; border: 3px solid #fff; object-fit: cover; }
.dealer-logo-placeholder { width: 80px; height: 80px; border-radius: 50%; border: 3px solid #fff; background: var(--brand-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 700; }
.dealer-header-info { color: #fff; }
.dealer-header-info h1 { margin: 0 0 0.25rem; font-size: 1.5rem; }
.dealer-location { opacity: 0.9; margin-bottom: 0.25rem; }
.dealer-verified-badge { display: inline-block; background: #27ae60; color: #fff; font-size: 0.7rem; padding: 2px 8px; border-radius: 4px; font-weight: 600; }
.dealer-rating { font-size: 0.85rem; opacity: 0.9; margin-left: 0.5rem; }
.dealer-followers { font-size: 0.85rem; opacity: 0.9; margin-left: 0.5rem; }
.dealer-response-badge { display: inline-block; background: #0ea5e9; color: #fff; font-size: 0.7rem; padding: 2px 8px; border-radius: 4px; font-weight: 600; margin-left: 0.5rem; }
.dealer-member-since { display: inline-block; font-size: 0.8rem; opacity: 0.85; margin-left: 0.5rem; }
.dealer-response-time-card { margin-top: 0.75rem; padding: 0.6rem 0.75rem; background: #f0f9ff; border: 1px solid #bae6fd; border-radius: 8px; font-size: 0.85rem; color: #0369a1; font-weight: 500; }
.response-icon { margin-right: 4px; }

.dealer-body { display: grid; grid-template-columns: 280px 1fr; gap: 2rem; padding: 2rem 1rem; }
@media (max-width: 768px) { .dealer-body { grid-template-columns: 1fr; } }
.dealer-sidebar { display: flex; flex-direction: column; gap: 1rem; }
.dealer-card { background: var(--white); border-radius: 12px; padding: 1.25rem; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.dealer-card h3 { margin-top: 0; font-size: 1rem; }
.dealer-details-list { list-style: none; padding: 0; margin: 0; }
.dealer-details-list li { padding: 0.4rem 0; border-bottom: 1px solid #f0f0f0; font-size: 0.85rem; }
.dealer-details-list li:last-child { border: 0; }

.dealer-listings-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 0.5rem; }
.dealer-listings-toolbar h2 { margin: 0; }
.dealer-reviews { margin-top: 3rem; }
.review-card { background: var(--white); padding: 1rem; border-radius: 8px; box-shadow: 0 1px 4px rgba(0,0,0,0.06); margin-bottom: 0.75rem; }
.review-header { display: flex; gap: 1rem; align-items: center; margin-bottom: 0.5rem; flex-wrap: wrap; }
.review-rating { color: #e67e22; font-weight: 600; }
.review-date { font-size: 0.8rem; color: var(--grey-500); }
.review-text { font-size: 0.9rem; color: var(--grey-700); margin: 0; }
.review-author { display: flex; align-items: center; gap: 6px; }
.review-verified { font-size: 11px; color: #16a34a; font-weight: 600; }
.review-title { font-size: 14px; margin: 4px 0; }
.review-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.review-tag { display: inline-block; background: #e0f2fe; color: #0369a1; font-size: 12px; padding: 3px 10px; border-radius: 12px; font-weight: 500; }
.review-reply { margin-top: 10px; padding: 10px; background: var(--grey-50); border-radius: 6px; border-left: 3px solid #3b82f6; }
.review-reply strong { font-size: 13px; color: #1e40af; }
.review-reply p { font-size: 13px; margin: 4px 0 0; color: #334155; }
.review-reply-form { margin-top: 8px; display: flex; gap: 8px; align-items: flex-start; }
.review-reply-form textarea { flex: 1; font-size: 13px; padding: 6px 8px; border: 1px solid var(--grey-300); border-radius: 4px; resize: vertical; }
.review-flag-form { margin-top: 8px; text-align: right; }
.review-flag-btn { background: none; border: none; color: var(--grey-400); cursor: pointer; font-size: 12px; padding: 0; }
.review-flag-btn:hover { color: var(--color-danger); }
.review-count-label { font-weight: 400; font-size: 14px; color: var(--grey-600); }
.review-empty { font-size: 14px; color: #555; }

/* ─── Dealer Directory ─── */
.dealer-directory { max-width: 1200px; margin: 0 auto; padding: 2rem 1rem; }
/* ─── Trade Nav Group Labels ─── */
.trade-nav-group-label {
    display: block;
    padding: 12px 16px 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--grey-500);
    border-top: 1px solid #e8e8e8;
    margin-top: 4px;
}

/* ─── Source Tabs (wholesale/finance filter) ─── */
.trade-source-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e8e8e8;
    margin-bottom: 1rem;
}

.trade-source-tab {
    padding: 8px 16px;
    color: var(--grey-600);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color 0.15s, border-color 0.15s;
}

.trade-source-tab:hover { color: var(--brand-secondary); }
.trade-source-tab.active {
    color: #b8941f;
    border-bottom-color: var(--brand-primary);
}

/* ─── Finance Sale Badge on Wholesale Cards ─── */
.trade-source-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
}

.trade-source-finance {
    background: #2196f3;
    color: #fff;
}

/* ─── Financer Alert Card ─── */
.trade-stat-alert {
    border-color: #e53935;
    box-shadow: 0 0 0 1px #e53935;
}

/* ─── Dashboard Nav Labels ─── */
.dash-nav-label {
    display: block;
    padding: 8px 16px 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.45);
}

.directory-header { text-align: center; margin-bottom: 2rem; }
.directory-toolbar { margin-bottom: 2rem; }
.directory-toolbar .filter-inline { display: flex; gap: 0.5rem; max-width: 600px; margin: 0 auto; }
.dealer-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.dealer-card { display: flex; flex-direction: column; align-items: center; background: var(--white); padding: 2rem 1.5rem; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); text-decoration: none; color: inherit; text-align: center; transition: transform 0.15s; }
.dealer-card:hover { transform: translateY(-2px); }
.dealer-card-logo { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; margin-bottom: 0.75rem; }
.dealer-card-logo-placeholder { width: 64px; height: 64px; border-radius: 50%; background: var(--brand-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; }
.dealer-card h3 { margin: 0 0 0.25rem; font-size: 1rem; }
.dealer-card-location { color: var(--grey-600); font-size: 0.85rem; margin-bottom: 0.25rem; }
.dealer-card-rating { color: #e67e22; font-size: 0.85rem; }
.dealer-card-stock { color: var(--grey-500); font-size: 0.8rem; }

/* ─── Responsive ─── */
@media (max-width: 600px) {
    .trade-listing-grid { grid-template-columns: 1fr; gap: 1rem; }
    .trade-listing-card:hover,
    .trade-stat-card:hover,
    .dealer-card:hover { transform: none; }
    .feed-card { gap: 0; }
    .feed-card-action { border-left: none; border-top: 1px solid #f0f0f0; }
    .trade-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .trade-stat-value { font-size: 1.5rem; }
    .dealer-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .dealer-header-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
    .dealer-body { padding: 1rem 0.75rem; }
    .ws-detail { gap: 1rem; }
    .ws-price { font-size: 1.25rem; }
    .std-hero, .fleet-hero { padding: 2.5rem 1rem; }
    .std-hero h1, .fleet-hero h1 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
    .trade-layout { padding: 1rem 0.75rem; gap: 1rem; }
    .trade-welcome { padding: 16px; }
    .trade-welcome h1 { font-size: 1.2rem; }
    .trade-stats-grid { grid-template-columns: 1fr 1fr; }
    .trade-stat-card { padding: 1rem 0.75rem; }
    .trade-stat-value { font-size: 1.25rem; }
    .trade-stat-label { font-size: 0.75rem; }
    .trade-finance-banner { padding: 16px; }
    .trade-finance-banner h3 { font-size: 16px; }
    .dealer-grid { grid-template-columns: 1fr; }
    .dealer-card { padding: 1.25rem 1rem; }
    .std-hero, .fleet-hero { padding: 2rem 0.75rem; }
    .std-hero h1, .fleet-hero h1 { font-size: 1.3rem; }
    .std-cta, .fleet-cta { padding: 2rem 1rem; }
}

/* ═══ Premium Trade Hub Refinements ═══ */
.trade-sidebar {
    background: linear-gradient(180deg, #0f1a2e 0%, var(--navy) 100%);
    border-radius: 12px 0 0 12px;
}
.trade-nav-active {
    background: rgba(245,166,35,0.15) !important;
    color: var(--gold) !important;
    border-left: 3px solid var(--gold);
}
.trade-welcome {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3460 100%);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.trade-stat-card {
    background: var(--white);
    border: 1px solid var(--grey-100);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}
.trade-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.trade-stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--navy);
}
.trade-listing-card {
    border: 1px solid var(--grey-100);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}
.trade-listing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.trade-method-badge {
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.offer-card {
    border: 1px solid var(--grey-100);
    border-radius: 12px;
    padding: 1.5rem;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.offer-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
}

/* ─── Premium Trade Polish ─── */
.trade-card {
    border-radius: 12px;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s;
}
.trade-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(15,31,61,0.1);
}

/* ═══════════════════════════════════════════════════
   Premium Trade Hub — Visual Upgrade
   ═══════════════════════════════════════════════════ */

/* ─── Premium Stats Grid ─── */
.trade-stats-premium .trade-stat-card {
    border-left: 3px solid var(--brand-primary);
    padding: 1.25rem 1rem;
    gap: 4px;
    transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s;
}
.trade-stats-premium .trade-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15,31,61,0.12);
    border-left-color: var(--brand-secondary);
}
.trade-stats-premium .trade-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.trade-stats-premium .trade-stat-icon svg {
    display: block;
}

/* ─── How the Trade Hub Works ─── */
.trade-how-it-works {
    margin: 2.5rem 0 2rem;
}
.trade-how-it-works h2 {
    font-size: 1.2rem;
    color: var(--brand-secondary);
    margin-bottom: 1.25rem;
}
.trade-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
@media (max-width: 768px) {
    .trade-steps-grid { grid-template-columns: 1fr; }
}
.trade-step-card {
    background: var(--white);
    border: 1px solid var(--grey-100);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
}
.trade-step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(15,31,61,0.08);
}
.trade-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-primary), #d49200);
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}
.trade-step-card h3 {
    font-size: 1rem;
    color: var(--brand-secondary);
    margin: 0 0 0.5rem;
}
.trade-step-card p {
    font-size: 0.85rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

/* ─── Page Header ─── */
.trade-page-header {
    margin-bottom: 1.25rem;
}
.trade-page-header h1 {
    margin-bottom: 0.25rem;
}
.trade-page-subtitle {
    font-size: 0.9rem;
    color: var(--grey-600);
    margin: 0;
}

/* ─── Filter Bar ─── */
.trade-filter-bar {
    margin-bottom: 1.5rem;
    padding: 0.75rem 1rem;
    background: var(--white);
    border: 1px solid var(--grey-100);
    border-radius: 10px;
}
.trade-filter-form {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}
.trade-filter-group {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.form-input-sm {
    padding: 6px 10px;
    font-size: 0.85rem;
    border-radius: 6px;
}

/* ─── Premium Empty State ─── */
.empty-state-premium {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border: 2px dashed var(--grey-200);
    border-radius: 12px;
}
.empty-state-icon {
    margin-bottom: 1rem;
}
.empty-state-premium h3 {
    font-size: 1.1rem;
    color: var(--brand-secondary);
    margin: 0 0 0.5rem;
}
.empty-state-premium p {
    font-size: 0.9rem;
    color: var(--grey-600);
    margin: 0;
}
.empty-state-premium a {
    color: var(--brand-primary);
    font-weight: 600;
}

/* ─── Tender Card Extras ─── */
.card-closing-soon {
    border-color: #fbbf24 !important;
    box-shadow: 0 0 0 1px #fbbf24, 0 2px 8px rgba(0,0,0,0.05) !important;
}
.trade-urgency-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--color-danger);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.03em;
}
.trade-category-tag {
    display: inline-block;
    font-size: 0.7rem;
    color: var(--grey-600);
    background: var(--grey-50);
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}
.trade-bid-count {
    font-size: 0.8rem;
    color: var(--grey-600);
}
.trade-listing-specs {
    display: flex;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: #555;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}
.trade-listing-specs span {
    background: #f0f4fa;
    padding: 2px 6px;
    border-radius: 3px;
}

/* ─── Tender Countdown ─── */
.tender-countdown {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #92400e;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-top: 1px solid #f0f0f0;
    background: #fffbeb;
}
.tender-countdown svg {
    flex-shrink: 0;
}
.tender-countdown-urgent {
    color: #dc2626;
    background: #fef2f2;
}

/* ─── Tender Detail: Prominent Countdown ─── */
.tender-countdown-prominent {
    border-radius: 10px;
    padding: 1.25rem;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.countdown-open {
    background: #f0fdf4;
    border: 1px solid #86efac;
}
.countdown-urgent {
    background: #fef2f2;
    border: 1px solid #fca5a5;
}
.countdown-closed {
    background: var(--off-white);
    border: 1px solid var(--grey-200);
}
.countdown-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.countdown-timer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.countdown-timer svg {
    color: var(--brand-secondary);
    flex-shrink: 0;
}
.countdown-text {
    display: flex;
    flex-direction: column;
}
.countdown-label {
    font-size: 0.75rem;
    color: var(--grey-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.countdown-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--brand-secondary);
}
.countdown-urgent .countdown-value {
    color: #dc2626;
}
.countdown-deadline {
    font-size: 0.85rem;
    color: var(--grey-600);
}
.countdown-bids {
    font-size: 0.85rem;
    color: #555;
    font-weight: 500;
}

/* ─── Tender Specs Panel ─── */
.tender-specs-panel {
    background: var(--off-white);
    border: 1px solid var(--grey-100);
    border-radius: 10px;
    padding: 1.25rem;
    margin: 1rem 0;
}
.tender-specs-panel h3 {
    font-size: 0.95rem;
    color: var(--brand-secondary);
    margin: 0 0 0.75rem;
}
.tender-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
}
.tender-spec-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.spec-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--grey-400);
    font-weight: 600;
}
.spec-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
}

/* ─── Tender Report Panels ─── */
.tender-report-panel {
    background: var(--white);
    border: 1px solid var(--grey-100);
    border-radius: 10px;
    padding: 1.25rem;
    margin: 1rem 0;
}
.tender-report-panel h3 {
    font-size: 0.95rem;
    color: var(--brand-secondary);
    margin: 0 0 0.5rem;
}
.tender-report-panel p {
    font-size: 0.85rem;
    color: var(--grey-700);
    margin: 0;
    line-height: 1.6;
}
.tender-report-damage {
    border-left: 3px solid #f59e0b;
}

/* ─── Bids Table ─── */
.dash-table-striped tbody tr:nth-child(even) {
    background: var(--off-white);
}
.bid-rating {
    font-size: 0.8rem;
    color: #e67e22;
}
.bid-amount {
    color: var(--brand-secondary);
    font-size: 0.95rem;
}

/* ─── Wholesale Source Badges ─── */
.trade-source-fleet {
    background: #059669;
    color: #fff;
}
.condition-badge {
    display: inline-block;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}
.condition-used { background: var(--grey-200); color: var(--grey-800); }
.condition-new { background: #d1fae5; color: #065f46; }
.condition-damaged { background: #fee2e2; color: #991b1b; }
.condition-salvage { background: #fef3c7; color: #92400e; }
.trade-condition-tag {
    margin-bottom: 0.5rem;
}

/* ═══════════════════════════════════════════════════
   Premium Fleet Landing — Visual Upgrade
   ═══════════════════════════════════════════════════ */

/* ─── Fleet Hero Premium ─── */
.fleet-hero-premium {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--brand-secondary) 50%, #1e3a5f 100%);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}
.fleet-hero-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(240,165,0,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.fleet-hero-inner {
    position: relative;
    z-index: 1;
}
.fleet-hero-premium h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}
.fleet-hero-premium p {
    max-width: 640px;
    margin: 0 auto 2rem;
}
.fleet-hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
    background: transparent;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    cursor: pointer;
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

/* ─── Fleet Benefits ─── */
.fleet-benefits {
    margin-bottom: 3rem;
}
.fleet-benefits h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--brand-secondary);
    font-size: 1.5rem;
}
.fleet-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 768px) {
    .fleet-benefits-grid { grid-template-columns: 1fr; }
}
.fleet-benefit-card {
    background: var(--white);
    border: 1px solid var(--grey-100);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
}
.fleet-benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(15,31,61,0.08);
}
.fleet-benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #fffbeb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.fleet-benefit-card h3 {
    font-size: 1.05rem;
    color: var(--brand-secondary);
    margin: 0 0 0.5rem;
}
.fleet-benefit-card p {
    font-size: 0.85rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

/* ─── Fleet How It Works ─── */
.fleet-how-it-works {
    margin-bottom: 3rem;
}
.fleet-how-it-works h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--brand-secondary);
    font-size: 1.5rem;
}
.fleet-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
}
@media (max-width: 768px) {
    .fleet-steps { grid-template-columns: 1fr; gap: 1.5rem; }
    .fleet-step-connector { display: none; }
}
.fleet-step {
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
}
.fleet-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-primary), #d49200);
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}
.fleet-step-connector {
    position: absolute;
    top: 26px;
    left: calc(50% + 30px);
    width: calc(100% - 60px);
    height: 2px;
    background: var(--grey-200);
    z-index: 1;
}
.fleet-step:last-child .fleet-step-connector {
    display: none;
}
.fleet-step h3 {
    font-size: 1rem;
    color: var(--brand-secondary);
    margin: 0 0 0.5rem;
}
.fleet-step p {
    font-size: 0.85rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

/* ─── Fleet CSV Teaser ─── */
.fleet-csv-teaser {
    margin-bottom: 3rem;
}
.fleet-csv-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--white);
    border: 1px solid var(--grey-100);
    border-left: 4px solid var(--brand-primary);
    border-radius: 12px;
    padding: 1.5rem 2rem;
}
@media (max-width: 768px) {
    .fleet-csv-inner { flex-direction: column; text-align: center; }
}
.fleet-csv-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: #fffbeb;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fleet-csv-content {
    flex: 1;
}
.fleet-csv-content h3 {
    font-size: 1.05rem;
    color: var(--brand-secondary);
    margin: 0 0 0.25rem;
}
.fleet-csv-content p {
    font-size: 0.85rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
}
.fleet-csv-action {
    flex-shrink: 0;
}

/* ─── Fleet Who Premium ─── */
.fleet-who-premium .who-card {
    border: 1px solid var(--grey-100);
    transition: transform 0.25s, box-shadow 0.25s;
}
.fleet-who-premium .who-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(15,31,61,0.08);
}

/* ─── Fleet CTA Premium ─── */
.fleet-cta-premium {
    background: linear-gradient(135deg, #f0f4fa, #e8edf5);
    border: 1px solid #d1d9e8;
}
.fleet-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════
   Fleet Dashboard Premium
   ═══════════════════════════════════════════════════ */

.fleet-dash-header {
    margin-bottom: 1.5rem;
}
.fleet-dash-header h1 {
    margin-bottom: 0.25rem;
}
.fleet-dash-subtitle {
    font-size: 0.9rem;
    color: var(--grey-600);
    margin: 0;
}

/* ─── Fleet KPI Grid ─── */
.fleet-kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
    .fleet-kpi-grid { grid-template-columns: repeat(2, 1fr); }
}
.fleet-kpi-card {
    background: var(--white);
    border: 1px solid var(--grey-100);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
}
.fleet-kpi-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15,31,61,0.08);
}
.fleet-kpi-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}
.fleet-kpi-total { background: #e0f2fe; color: #0369a1; }
.fleet-kpi-active { background: #d1fae5; color: #065f46; }
.fleet-kpi-sold { background: #fef3c7; color: #92400e; }
.fleet-kpi-pending { background: #f3e8ff; color: #7c3aed; }
.fleet-kpi-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--brand-secondary);
}
.fleet-kpi-label {
    font-size: 0.8rem;
    color: var(--grey-600);
}

/* ─── Fleet Revenue Bar ─── */
.fleet-revenue-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--brand-secondary), #1e3a5f);
    color: #fff;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
}
.fleet-revenue-label {
    font-size: 0.85rem;
    opacity: 0.8;
}
.fleet-revenue-value {
    font-size: 1.5rem;
    font-weight: 800;
}

/* ─── Fleet Quick Actions ─── */
.fleet-quick-actions {
    margin-bottom: 2rem;
}
.fleet-quick-actions h2 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}
.fleet-actions-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.fleet-actions-row .btn svg {
    vertical-align: -3px;
    margin-right: 6px;
}

/* ─── Fleet Recent ─── */
.fleet-recent {
    margin-bottom: 2rem;
}
.fleet-recent h2 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

/* ═══════════════════════════════════════════════════
   Fleet Upload — Drop Zone & Template
   ═══════════════════════════════════════════════════ */

/* ─── Template Download ─── */
.fleet-template-download {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}
@media (max-width: 600px) {
    .fleet-template-download { flex-direction: column; text-align: center; }
}
.fleet-template-icon {
    flex-shrink: 0;
}
.fleet-template-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.fleet-template-text strong {
    font-size: 0.9rem;
    color: var(--brand-secondary);
}
.fleet-template-text span {
    font-size: 0.8rem;
    color: var(--grey-600);
}

/* ─── Drop Zone ─── */
.fleet-dropzone {
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    background: #fafbfc;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    margin-bottom: 1.5rem;
    position: relative;
}
.fleet-dropzone:hover,
.fleet-dropzone-active {
    border-color: var(--brand-primary);
    background: #fffdf5;
}
.fleet-dropzone-has-file {
    border-color: var(--color-success);
    background: #f0fdf4;
}
.fleet-dropzone-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 1rem;
    gap: 0.5rem;
}
.fleet-dropzone-icon {
    margin-bottom: 0.25rem;
}
.fleet-dropzone-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--brand-secondary);
    margin: 0;
}
.fleet-dropzone-hint {
    font-size: 0.8rem;
    color: #94a3b8;
    margin: 0;
}
.fleet-dropzone-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.fleet-dropzone-filename {
    display: none;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #065f46;
    background: #ecfdf5;
    border-top: 1px solid #a7f3d0;
    border-radius: 0 0 10px 10px;
}

/* ─── Column Preview ─── */
.fleet-column-preview {
    margin-top: 2rem;
    background: var(--off-white);
    border: 1px solid var(--grey-100);
    border-radius: 10px;
    padding: 1.5rem;
}
.fleet-column-preview h3 {
    margin: 0 0 1rem;
    font-size: 1rem;
    color: var(--brand-secondary);
}
.badge-required {
    display: inline-block;
    background: #fee2e2;
    color: #991b1b;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
}
.badge-optional {
    display: inline-block;
    background: var(--grey-200);
    color: var(--grey-800);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
}

/* ─── Responsive: Fleet Premium ─── */
@media (max-width: 600px) {
    .fleet-hero-premium { padding: 3rem 1rem; }
    .fleet-hero-premium h1 { font-size: 1.75rem; }
    .fleet-benefits-grid { grid-template-columns: 1fr; }
    .fleet-steps { grid-template-columns: 1fr; gap: 1.5rem; }
    .fleet-kpi-grid { grid-template-columns: 1fr 1fr; }
    .fleet-csv-inner { flex-direction: column; text-align: center; padding: 1.25rem; }
    .fleet-dropzone-inner { padding: 1.5rem 1rem; }
}

/* ─── Missing Utility Classes (Trade) ─── */
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: var(--grey-600);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: color 0.15s;
}
.btn-back:hover { color: var(--brand-secondary); }

.form-standard { max-width: 640px; }

.dash-table-compact th,
.dash-table-compact td { padding: 0.5rem 0.75rem; font-size: 0.85rem; }

/* ─── Trade-scoped dash-table (avoid requiring dashboard.css) ─── */
.trade-content .dash-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.trade-content .dash-table th { text-align: left; padding: 0.75rem 1rem; font-size: 12px; font-weight: 600; color: var(--grey-500); text-transform: uppercase; letter-spacing: 0.5px; background: var(--off-white, #f9fafb); border-bottom: 2px solid #e5e7eb; }
.trade-content .dash-table td { padding: 0.75rem 1rem; border-bottom: 1px solid #f1f3f5; vertical-align: middle; font-size: 14px; color: var(--grey-800, #333); }
.trade-content .dash-table tr:last-child td { border-bottom: none; }
.trade-content .dash-table tr:hover td { background: #fafbfc; }
.trade-content .dash-listing-thumb { width: 80px; height: 60px; object-fit: cover; border-radius: 6px; }
