/* ============================================================
   CarSkipper - Brand Styles
   Primary: #1e2d3d (navy) | Accent: #F5C842 (gold)
   ============================================================ */

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

:root {
    --cs-navy: #1e2d3d;
    --cs-navy-dark: #141f2b;
    --cs-navy-light: #2c3e50;
    --cs-gold: #F5C842;
    --cs-gold-dark: #d4a91e;
    --cs-white: #ffffff;
    --cs-light-gray: #f8f9fa;
    --cs-border: #e0e4e9;
    --cs-text-muted: #6c757d;
    --cs-text-dark: #1e2d3d;
    --nav-height: 72px;
}

/* ── Base ── */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Barlow', system-ui, sans-serif;
    color: var(--cs-text-dark);
    background: #fff;
    margin: 0;
    padding-top: var(--nav-height);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Barlow', 'Inter', system-ui, sans-serif;
    font-weight: 700;
}

/* ── Navbar ── */
.cs-navbar {
    background: var(--cs-navy);
    height: var(--nav-height);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.cs-navbar .container-fluid {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 24px;
}

.cs-navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.cs-navbar-brand img {
    height: 48px;
    width: auto;
}

.cs-nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 0 24px;
    padding: 0;
    list-style: none;
}

.cs-nav-links a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    padding: 6px 14px;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}

.cs-nav-links a:hover {
    color: var(--cs-gold);
    background: rgba(245, 200, 66, 0.08);
}

.cs-nav-skipper-link {
    background: rgba(245, 200, 66, 0.18) !important;
    color: var(--cs-gold) !important;
    border: 1px solid rgba(245, 200, 66, 0.4);
    border-radius: 6px !important;
}

.cs-nav-skipper-link:hover {
    background: rgba(245, 200, 66, 0.3) !important;
}

.cs-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* ── Navbar Search Typeahead ── */
.cs-nav-search {
    position: relative;
    flex: 1;
    max-width: 380px;
    margin: 0 16px;
}

.cs-nav-search-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #fff;
    padding: 7px 14px;
    font-size: 0.875rem;
    outline: none;
    transition: background 0.2s, border-color 0.2s;
}

.cs-nav-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.cs-nav-search-input:focus {
    background: rgba(255, 255, 255, 0.18);
    border-color: var(--cs-gold);
}

.cs-nav-search-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
    z-index: 1050;
    max-height: 420px;
    overflow-y: auto;
}

.cs-nav-search-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    text-decoration: none;
    color: var(--cs-navy);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: background 0.15s;
}

.cs-nav-search-item:last-child {
    border-bottom: none;
}

.cs-nav-search-item:hover,
.cs-nav-search-item.cs-active {
    background: #f5f5f5;
}

.cs-nav-search-item-title {
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cs-nav-search-item-meta {
    font-size: 0.75rem;
    color: #6c757d;
}

.cs-nav-search-empty {
    padding: 16px;
    text-align: center;
    color: #6c757d;
    font-size: 0.875rem;
}

/* ── Mobile Menu Search ── */
.cs-mobile-search {
    position: relative;
    margin: 12px 0 4px;
}

.cs-mobile-search-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    color: #fff;
    padding: 10px 14px;
    font-size: 0.9rem;
    outline: none;
}

.cs-mobile-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.cs-mobile-search-input:focus {
    border-color: var(--cs-gold);
    background: rgba(255, 255, 255, 0.15);
}

.cs-mobile-search-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    z-index: 1100;
    max-height: 320px;
    overflow-y: auto;
}

.btn-nav-signin {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: border-color 0.2s, color 0.2s;
}

.btn-nav-signin:hover {
    color: var(--cs-white);
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-nav-cta {
    background: var(--cs-gold);
    color: var(--cs-navy);
    text-decoration: none;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 9px 20px;
    border-radius: 4px;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.btn-nav-cta:hover {
    background: var(--cs-gold-dark);
    color: var(--cs-navy);
    transform: translateY(-1px);
}

/* Mobile hamburger */
.cs-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    margin-left: auto;
}

.cs-hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--cs-white);
    border-radius: 2px;
    transition: transform 0.3s;
}

/* Mobile menu */
.cs-mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--cs-navy-dark);
    padding: 16px 24px 24px;
    z-index: 999;
    border-top: 1px solid rgba(245, 200, 66, 0.2);
}

.cs-mobile-menu.open {
    display: block;
}

.cs-mobile-menu a {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cs-mobile-menu a:last-child {
    border-bottom: none;
}

.cs-mobile-menu a:hover {
    color: var(--cs-gold);
}

.cs-mobile-cta {
    display: inline-block;
    margin-top: 16px;
    background: var(--cs-gold);
    color: var(--cs-navy) !important;
    padding: 12px 24px;
    border-radius: 4px;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    border-bottom: none !important;
}

/* ── Hero Carousel ── */
.cs-hero {
    position: relative;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    min-height: 500px;
    max-height: 780px;
    overflow: hidden;
}

.cs-hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.cs-hero-slide.active {
    opacity: 1;
}

.cs-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(20, 31, 43, 0.78) 0%,
            rgba(20, 31, 43, 0.45) 50%,
            rgba(20, 31, 43, 0.15) 100%);
    display: flex;
    align-items: center;
}

.cs-hero-content {
    max-width: 620px;
    padding: 0 48px;
    color: var(--cs-white);
}

.cs-hero-tagline {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cs-gold);
    margin-bottom: 16px;
}

.cs-hero-title {
    font-family: 'Barlow', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cs-hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    line-height: 1.6;
    max-width: 480px;
}

.cs-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--cs-gold);
    color: var(--cs-navy);
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
}

.btn-hero-primary:hover {
    background: var(--cs-gold-dark);
    color: var(--cs-navy);
    transform: translateY(-2px);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--cs-white);
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 13px 28px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 4px;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
    display: inline-block;
}

.btn-hero-secondary:hover {
    border-color: var(--cs-white);
    background: rgba(255, 255, 255, 0.1);
    color: var(--cs-white);
}

/* Carousel dots */
.cs-hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.cs-hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    border: none;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.cs-hero-dot.active {
    background: var(--cs-gold);
    transform: scale(1.3);
}

/* Carousel arrow buttons */
.cs-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-hero-arrow:hover {
    background: rgba(255, 255, 255, 0.28);
}

.cs-hero-arrow-prev {
    left: 16px;
}

.cs-hero-arrow-next {
    right: 16px;
}

/* ── Search Bar ── */
.cs-search-bar {
    background: var(--cs-white);
    padding: 20px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
}

.cs-search-inner {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.cs-search-select,
.cs-search-input {
    flex: 1;
    min-width: 140px;
    height: 48px;
    padding: 0 16px;
    border: 1.5px solid var(--cs-border);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--cs-text-dark);
    background: #fff;
    appearance: none;
    -webkit-appearance: none;
}

.cs-search-select:focus,
.cs-search-input:focus {
    outline: none;
    border-color: var(--cs-gold);
    box-shadow: 0 0 0 3px rgba(245, 200, 66, 0.15);
}

.cs-search-btn {
    background: var(--cs-navy);
    color: var(--cs-white);
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    height: 48px;
    padding: 0 28px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.cs-search-btn:hover {
    background: var(--cs-navy-light);
}

/* ── Section Commons ── */
.cs-section {
    padding: 80px 0;
}

.cs-section-alt {
    background: var(--cs-light-gray);
}

.cs-section-header {
    text-align: center;
    margin-bottom: 56px;
}

.cs-section-label {
    font-family: 'Barlow', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cs-gold-dark);
    margin-bottom: 10px;
}

.cs-section-title {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--cs-navy);
    margin: 0 0 14px;
}

.cs-section-subtitle {
    font-size: 1rem;
    color: var(--cs-text-muted);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Stats Banner ── */
.cs-stats {
    background: var(--cs-navy);
    padding: 48px 0;
}

.cs-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.cs-stat-number {
    font-family: 'Barlow', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--cs-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.cs-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ── How It Works tabs ── */
.cs-hiw-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    border: 1.5px solid var(--cs-navy);
    border-radius: 6px;
    overflow: hidden;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.cs-hiw-tab {
    background: transparent;
    border: none;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 40px;
    cursor: pointer;
    color: var(--cs-navy);
    transition: background 0.2s, color 0.2s;
}

.cs-hiw-tab.active {
    background: var(--cs-navy);
    color: var(--cs-white);
}

.cs-hiw-pane {
    display: none;
}

.cs-hiw-pane.active {
    display: block;
}

/* ── Steps Grid ── */
.cs-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.cs-step {
    text-align: center;
    padding: 32px 24px;
    background: var(--cs-white);
    border-radius: 8px;
    border: 1px solid var(--cs-border);
    transition: transform 0.2s, box-shadow 0.2s;
}

.cs-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(30, 45, 61, 0.1);
}

.cs-step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--cs-gold);
    color: var(--cs-navy);
    font-family: 'Barlow', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.cs-step-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
}

.cs-step h4 {
    font-family: 'Barlow', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--cs-navy);
    margin-bottom: 10px;
}

.cs-step p {
    font-size: 0.88rem;
    color: var(--cs-text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ── Why CarSkipper ── */
.cs-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.cs-feature {
    display: flex;
    gap: 18px;
    padding: 28px;
    background: var(--cs-white);
    border-radius: 8px;
    border-left: 4px solid var(--cs-gold);
    box-shadow: 0 2px 12px rgba(30, 45, 61, 0.06);
    transition: box-shadow 0.2s;
}

.cs-feature:hover {
    box-shadow: 0 6px 24px rgba(30, 45, 61, 0.12);
}

.cs-feature-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-feature-body h4 {
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--cs-navy);
    margin: 0 0 8px;
}

.cs-feature-body p {
    font-size: 0.875rem;
    color: var(--cs-text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ── Browse by Brand ── */
.cs-brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
}

.cs-brand-card {
    background: var(--cs-white);
    border: 1.5px solid var(--cs-border);
    border-radius: 8px;
    padding: 20px 12px;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
}

.cs-brand-card:hover {
    border-color: var(--cs-gold);
    box-shadow: 0 6px 20px rgba(245, 200, 66, 0.18);
    transform: translateY(-3px);
}

.cs-brand-card img {
    width: 72px;
    height: 56px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.2s;
}

.cs-brand-card:hover img {
    filter: grayscale(0%);
}

.cs-brand-name {
    font-family: 'Barlow', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--cs-navy);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ── Testimonials ── */
.cs-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.cs-testimonial {
    background: var(--cs-white);
    border-radius: 8px;
    padding: 28px;
    box-shadow: 0 2px 16px rgba(30, 45, 61, 0.07);
    position: relative;
}

.cs-testimonial::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--cs-gold);
    line-height: 1;
    position: absolute;
    top: 16px;
    left: 24px;
    font-family: Georgia, serif;
}

.cs-testimonial-text {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.7;
    margin: 32px 0 20px;
}

.cs-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cs-testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--cs-navy);
    color: var(--cs-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.cs-testimonial-name {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--cs-navy);
    margin: 0;
}

.cs-testimonial-location {
    font-size: 0.78rem;
    color: var(--cs-text-muted);
    margin: 2px 0 0;
}

.cs-stars {
    color: var(--cs-gold);
    font-size: 0.85rem;
    margin-bottom: 4px;
}

/* ── CTA Banner ── */
.cs-cta-banner {
    background: var(--cs-navy);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cs-cta-banner::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(245, 200, 66, 0.05);
}

.cs-cta-banner::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(245, 200, 66, 0.04);
}

.cs-cta-banner .cs-section-title {
    color: var(--cs-white);
}

.cs-cta-banner .cs-section-subtitle {
    color: rgba(255, 255, 255, 0.72);
}

.cs-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 36px;
}

.btn-cta-primary {
    background: var(--cs-gold);
    color: var(--cs-navy);
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 36px;
    border-radius: 4px;
    text-decoration: none;
    border: 2px solid var(--cs-gold);
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
}

.btn-cta-primary:hover {
    background: var(--cs-gold-dark);
    border-color: var(--cs-gold-dark);
    color: var(--cs-navy);
    transform: translateY(-2px);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--cs-white);
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 36px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
    display: inline-block;
}

.btn-cta-secondary:hover {
    border-color: var(--cs-white);
    background: rgba(255, 255, 255, 0.08);
    color: var(--cs-white);
}

/* ── App Download Banner ── */
.cs-app-banner {
    background: linear-gradient(135deg, var(--cs-navy-light) 0%, var(--cs-navy) 100%);
    padding: 64px 0;
}

.cs-app-content {
    display: flex;
    align-items: center;
    gap: 48px;
}

.cs-app-text {
    flex: 1;
}

.cs-app-text h2 {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--cs-white);
    margin-bottom: 12px;
}

.cs-app-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.cs-app-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cs-app-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    padding: 10px 20px;
    color: var(--cs-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s, border-color 0.2s;
}

.cs-app-badge:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: var(--cs-gold);
    color: var(--cs-white);
}

.cs-app-badge .badge-icon {
    font-size: 1.5rem;
}

.cs-app-badge .badge-text {
    line-height: 1.2;
}

.cs-app-badge .badge-text small {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    display: block;
}

.cs-app-badge .badge-text strong {
    font-size: 0.95rem;
    font-family: 'Barlow', sans-serif;
}

/* ── Footer ── */
.cs-footer {
    background: var(--cs-navy-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 60px 0 0;
}

.cs-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.cs-footer-brand img {
    height: 52px;
    width: auto;
    margin-bottom: 16px;
}

.cs-footer-brand p {
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 280px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.cs-footer-social {
    display: flex;
    gap: 10px;
}

.cs-footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.cs-footer-social a:hover {
    border-color: var(--cs-gold);
    color: var(--cs-gold);
    background: rgba(245, 200, 66, 0.08);
}

.cs-footer-col h5 {
    font-family: 'Barlow', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cs-gold);
    margin-bottom: 18px;
}

.cs-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cs-footer-col ul a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.cs-footer-col ul a:hover {
    color: var(--cs-gold);
}

.cs-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.cs-footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.cs-footer-bottom-links {
    display: flex;
    gap: 20px;
}

.cs-footer-bottom-links a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s;
}

.cs-footer-bottom-links a:hover {
    color: rgba(255, 255, 255, 0.75);
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .cs-nav-links {
        display: none;
    }

    .cs-nav-actions {
        display: none;
    }

    .cs-nav-search {
        display: none;
    }

    .cs-hamburger {
        display: flex;
    }

    .cs-section {
        padding: 64px 0;
    }

    .cs-section-header {
        margin-bottom: 44px;
    }

    .cs-hero-content {
        padding: 0 24px;
    }

    .cs-hero-title {
        font-size: 1.8rem;
    }

    .cs-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cs-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cs-app-content {
        flex-direction: column;
        text-align: center;
    }

    .cs-app-badges {
        justify-content: center;
    }

    .cs-cta-banner {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .cs-section {
        padding: 56px 0;
    }

    .cs-section-header {
        margin-bottom: 36px;
    }

    .cs-hero {
        height: auto;
        min-height: 680px;
        max-height: none;
    }

    .cs-hero-content {
        padding: 0 20px;
        max-width: 100%;
    }

    .cs-hero-subtitle {
        display: none;
    }

    .cs-hero-arrow {
        display: none;
    }

    .cs-steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cs-features-grid {
        grid-template-columns: 1fr;
    }

    .cs-brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cs-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cs-footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .cs-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cs-footer-bottom-links {
        justify-content: center;
    }

    .cs-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cs-stat-number {
        font-size: 1.8rem;
    }

    .cs-hiw-tabs {
        width: 100%;
    }

    .cs-hiw-tab {
        flex: 1;
        padding: 10px 8px;
        font-size: 0.85rem;
    }

    .cs-search-inner {
        flex-direction: column;
    }

    .cs-search-select,
    .cs-search-input,
    .cs-search-btn {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .cs-brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .cs-brand-card {
        padding: 14px 8px;
    }

    .cs-brand-card img {
        width: 56px;
        height: 44px;
    }

    .cs-hero-title {
        font-size: 1.55rem;
    }

    .cs-hero-actions {
        justify-content: center;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        text-align: center;
    }

    .cs-stats {
        padding: 32px 0;
    }

    .cs-stat-number {
        font-size: 1.6rem;
    }

    .cs-section {
        padding: 44px 0;
    }

    .cs-cta-banner {
        padding: 48px 0;
    }

    .cs-footer-grid {
        gap: 20px;
    }
}

/* ── Auth / Account Page Card ─────────────────────────────────────────────
   Used on Register, Login, ForgotPassword, ResetPassword, VerifyEmail,
   TwoFactor, and any future single-card pages.
   Pages use _Layout (full navbar + footer); this wrapper centers the card.
   ──────────────────────────────────────────────────────────────────────── */
.auth-page-wrapper {
    display: flex;
    justify-content: center;
    padding: 3rem 1rem 4rem;
    background: var(--cs-light-gray);
    min-height: calc(100vh - var(--nav-height) - 260px);
}

.auth-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, .09);
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 440px;
    height: fit-content;
}

.auth-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.25rem;
    color: var(--cs-text-dark);
}

.auth-subtitle {
    font-size: 0.92rem;
    text-align: center;
    color: var(--cs-text-muted);
    margin-bottom: 1.75rem;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.25rem 0;
    color: #adb5bd;
    font-size: 0.85rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #dee2e6;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    width: 100%;
    padding: .55rem 1rem;
    border: 1.5px solid #dee2e6;
    border-radius: 8px;
    background: #fff;
    font-size: .9rem;
    font-weight: 500;
    color: #212529;
    text-decoration: none;
    transition: background .15s, border-color .15s;
}

.btn-social:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
    color: #212529;
}

.btn-social svg {
    width: 20px;
    height: 20px;
}

.auth-footer-link {
    text-align: center;
    font-size: .88rem;
    margin-top: 1.25rem;
    color: var(--cs-text-muted);
}

.auth-footer-link a {
    color: #0d6efd;
    text-decoration: none;
}

.auth-footer-link a:hover {
    text-decoration: underline;
}

/* Auth nav CTA avatar */
.cs-user-menu .btn-nav-avatar {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: none;
    border: 1.5px solid rgba(255, 255, 255, .3);
    border-radius: 50px;
    padding: .3rem .75rem .3rem .3rem;
    color: #fff;
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color .15s, background .15s;
}

.cs-user-menu .btn-nav-avatar:hover {
    border-color: rgba(255, 255, 255, .7);
    background: rgba(255, 255, 255, .1);
}

.cs-avatar-initials {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--cs-gold);
    color: var(--cs-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.cs-avatar-name {
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .auth-card {
        padding: 2rem 1.25rem;
    }

    .cs-avatar-name {
        display: none;
    }
}

/* ══════════════════════════════════════════════════════════════
   Sell Workflow — Hero Split Layout, Sell Card, Vehicle Details
══════════════════════════════════════════════════════════════ */

/* Override overlay gradient for split layout */
.cs-hero-overlay.split {
    background: linear-gradient(to right,
            rgba(20, 31, 43, 0.90) 0%,
            rgba(20, 31, 43, 0.75) 42%,
            rgba(20, 31, 43, 0.32) 100%);
    justify-content: center;
}

.cs-hero-content.split {
    max-width: 1240px;
    width: 100%;
    padding: 0 48px;
    display: flex;
    align-items: center;
    gap: 56px;
}

.cs-hero-left {
    flex: 1;
    min-width: 0;
}

.cs-hero-right {
    flex-shrink: 0;
    width: 420px;
}

/* ── Sell Card ── */
.cs-sell-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 28px 22px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.32);
}

.cs-sell-card-title {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--cs-navy);
    margin: 0 0 16px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.cs-sell-tab-bar {
    display: flex;
    border: 1.5px solid var(--cs-border);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.cs-sell-tab {
    flex: 1;
    padding: 9px 8px;
    background: #f8f9fa;
    border: none;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--cs-text-muted);
    cursor: pointer;
    transition: background .15s, color .15s;
    text-align: center;
    line-height: 1.3;
}

.cs-sell-tab:not(:last-child) {
    border-right: 1.5px solid var(--cs-border);
}

.cs-sell-tab.active {
    background: var(--cs-navy);
    color: #fff;
}

.cs-sell-tab-pane {
    display: none;
}

.cs-sell-tab-pane.active {
    display: block;
}

.cs-sell-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--cs-navy);
    margin-bottom: 5px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.cs-sell-label.mt {
    margin-top: 12px;
}

.cs-sell-input,
.cs-sell-select {
    width: 100%;
    border: 1.5px solid var(--cs-border);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 0.9rem;
    color: var(--cs-navy);
    background: #fff;
    outline: none;
    transition: border-color .15s, box-shadow .15s;
}

.cs-sell-input:focus,
.cs-sell-select:focus {
    border-color: var(--cs-navy);
    box-shadow: 0 0 0 3px rgba(30, 45, 61, .08);
}

.cs-sell-or {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--cs-text-muted);
    letter-spacing: .06em;
    margin: 12px 0;
}

.cs-sell-or::before,
.cs-sell-or::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--cs-border);
}

.cs-sell-plate-row {
    display: grid;
    grid-template-columns: 1fr 84px;
    gap: 10px;
}

.btn-sell-estimate {
    display: block;
    width: 100%;
    margin-top: 18px;
    padding: 13px;
    background: var(--cs-navy);
    color: var(--cs-gold);
    border: none;
    border-radius: 8px;
    font-family: 'Barlow', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .15s;
}

.btn-sell-estimate:hover {
    background: var(--cs-navy-dark);
}

.cs-sell-privacy {
    text-align: center;
    font-size: 0.7rem;
    color: var(--cs-text-muted);
    margin-top: 10px;
    line-height: 1.5;
}

/* ── Standalone Sell Page ── */
.cs-sell-page-hero {
    min-height: 480px;
    background: var(--cs-navy) center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
}

.cs-sell-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(20, 31, 43, 0.70);
}

.cs-sell-page-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.cs-sell-page-content .cs-hero-title {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.cs-sell-page-content .cs-hero-subtitle {
    font-size: 1rem;
    margin-bottom: 28px;
}

.cs-sell-page-card {
    max-width: 520px;
    margin: 0 auto;
}

/* ── Vehicle Details Card ── */
.cs-vehicle-detail-card {
    border: 1.5px solid var(--cs-border);
    border-radius: 16px;
    overflow: hidden;
}

.cs-vehicle-detail-header {
    background: var(--cs-navy);
    color: #fff;
    padding: 24px 28px;
}

.cs-vehicle-detail-header .cs-vin-label {
    font-size: 0.72rem;
    letter-spacing: .12em;
    color: rgba(255, 255, 255, .55);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.cs-vehicle-detail-header h2 {
    font-size: 1.65rem;
    margin: 0 0 6px;
    font-weight: 800;
}

.cs-trim-badge {
    display: inline-block;
    background: var(--cs-gold);
    color: var(--cs-navy);
    font-size: 0.73rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
    letter-spacing: .04em;
}

.cs-vehicle-spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
}

.cs-vehicle-spec-item {
    padding: 15px 20px;
    border-bottom: 1px solid var(--cs-border);
    border-right: 1px solid var(--cs-border);
}

.cs-vehicle-spec-item:nth-child(even) {
    background: #fafbfc;
}

.cs-vehicle-spec-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--cs-text-muted);
    margin-bottom: 4px;
}

.cs-vehicle-spec-value {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--cs-navy);
}

/* ── Responsive: Split Hero ── */
@media (max-width: 1100px) {
    .cs-hero-content.split {
        padding: 0 32px;
        gap: 36px;
    }

    .cs-hero-right {
        width: 380px;
    }
}

@media (max-width: 900px) {
    .cs-hero {
        min-height: 680px;
    }

    .cs-hero-overlay.split {
        background: rgba(20, 31, 43, 0.82);
        align-items: flex-end;
    }

    .cs-hero-content.split {
        flex-direction: column;
        align-items: center;
        padding: 0 16px 40px;
        gap: 20px;
    }

    .cs-hero-left {
        text-align: center;
        width: 100%;
    }

    .cs-hero-right {
        width: 100%;
        max-width: 480px;
    }
}

@media (max-width: 480px) {
    .cs-hero-content.split {
        padding: 0 10px 20px;
    }

    .cs-sell-card {
        padding: 20px 14px 18px;
    }
}

/* Unified sell intake page */
.cs-intake-page {
    background:
        radial-gradient(circle at 10% 5%, rgba(245, 200, 66, 0.18), transparent 36%),
        radial-gradient(circle at 90% 2%, rgba(30, 45, 61, 0.18), transparent 33%),
        linear-gradient(180deg, #f7f9fc 0%, #ffffff 42%);
    min-height: calc(100vh - var(--nav-height));
}

.cs-intake-header h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 0.25rem;
}

.cs-intake-header p {
    max-width: 920px;
    color: #4b5868;
}

.cs-intake-kicker {
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--cs-navy);
    font-weight: 700;
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
}

.cs-intake-shell {
    animation: csFadeIn 0.36s ease-out;
}

.cs-intake-lookup-tabs {
    display: inline-flex;
    border-radius: 999px;
    background: #eef1f7;
    padding: 4px;
}

.cs-intake-lookup-tab {
    border: 0;
    background: transparent;
    color: #4c5a6d;
    font-weight: 700;
    padding: 0.55rem 1rem;
    border-radius: 999px;
}

.cs-intake-lookup-tab.active {
    background: var(--cs-navy);
    color: #fff;
}

.lookup-pane {
    display: none;
}

.lookup-pane.active {
    display: flex;
}

.cs-price-pill {
    background: #101820;
    color: #f7c74f;
    border-radius: 999px;
    padding: 0.4rem 0.95rem;
    font-size: 0.88rem;
    font-weight: 700;
}

.cs-spec-grid {
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.cs-spec-grid div {
    border: 1px solid #e3e8f0;
    border-radius: 12px;
    padding: 0.65rem 0.7rem;
    background: #fcfdff;
}

.cs-spec-grid span {
    display: block;
    font-size: 0.72rem;
    color: #67758a;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.cs-spec-grid strong {
    font-size: 0.93rem;
    color: #1d2a3a;
}

.cs-value-card {
    display: grid;
    width: 100%;
    border: 1px solid #d5dce7;
    border-radius: 12px;
    padding: 0.55rem 0.7rem;
    text-align: left;
    background: #fff;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cs-value-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(28, 46, 66, 0.08);
}

.cs-value-card .label {
    font-size: 0.78rem;
    color: #536173;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cs-value-card strong {
    font-size: 1.15rem;
    color: #101820;
    margin-top: 0.25rem;
}

.cs-value-card small {
    color: #6b7a8f;
    font-size: 0.76rem;
}

.cs-value-card.active {
    border-color: #f1b82f;
    background: #fff8e5;
}

.cs-intake-accordion .accordion-button {
    font-weight: 700;
}

.cs-check-grid {
    display: grid;
    gap: 0.4rem;
}

.cs-check-grid label {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.95rem;
}

@keyframes csFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .cs-intake-lookup-tabs {
        width: 100%;
    }

    .cs-intake-lookup-tab {
        flex: 1;
    }
}

/* Browse + listing pages + header favorites */
.cs-header-fav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    padding: 6px 10px;
}

.cs-header-fav-icon {
    color: #ff6b81;
    font-size: 0.95rem;
    line-height: 1;
}

.cs-header-fav-count {
    font-weight: 700;
    color: #fff;
    min-width: 18px;
    text-align: center;
}

.cs-browse-page {
    background:
        radial-gradient(circle at 5% 8%, rgba(245, 200, 66, 0.15), transparent 34%),
        linear-gradient(180deg, #f7f9fc 0%, #ffffff 46%);
}

.cs-browse-kicker {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--cs-navy);
}

.cs-browse-card {
    background: #fff;
    border: 1px solid #e3e8f0;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.cs-browse-image-wrap {
    height: 210px;
    display: block;
    overflow: hidden;
    background: #eef2f8;
}

.cs-browse-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .2s ease;
}

.cs-browse-card:hover .cs-browse-image {
    transform: scale(1.03);
}

.cs-browse-card-body {
    padding: 14px;
}

.cs-grid-toolbar {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.cs-sort-pills,
.cs-active-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.cs-sort-pills {
    justify-content: flex-end;
}

.cs-active-chips {
    justify-content: flex-start;
}

.cs-sort-pill,
.cs-active-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.82rem;
    transition: all 0.15s ease;
}

.cs-sort-pill {
    border: 1px solid #d7dce5;
    color: #122036;
    background: #fff;
    font-weight: 600;
}

.cs-sort-pill:hover,
.cs-sort-pill.is-active {
    border-color: #122036;
    background: #122036;
    color: #fff;
}

.cs-active-chip {
    border: 1px solid #dbe3ee;
    color: #415062;
    background: #f8fbff;
}

.cs-active-chip:hover {
    border-color: #122036;
    color: #122036;
}

.cs-active-chip.is-clear {
    background: transparent;
}

@media (max-width: 767.98px) {
    .cs-sort-pills {
        justify-content: flex-start;
    }
}

.cs-browse-price,
.cs-listing-price {
    color: #122036;
    font-size: 1.22rem;
    font-weight: 800;
}

.cs-monthly-payment {
    color: #607086;
    font-size: 0.82rem;
    font-weight: 600;
}

.cs-condition-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 700;
}

.cs-condition-badge.is-outstanding {
    background: #dcfce7;
    color: #166534;
}

.cs-condition-badge.is-clean {
    background: #ecfccb;
    color: #3f6212;
}

.cs-condition-badge.is-average {
    background: #fef3c7;
    color: #92400e;
}

.cs-condition-badge.is-rough {
    background: #fee2e2;
    color: #991b1b;
}

.cs-fav-btn {
    border: 0;
    background: #f3f5fa;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    color: #d1495b;
    font-size: 1.05rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cs-fav-btn.lg {
    width: 42px;
    height: 42px;
    font-size: 1.25rem;
}

.cs-listing-page {
    background: linear-gradient(180deg, #f8fafc, #ffffff 44%);
}

.cs-listing-gallery {
    overflow: hidden;
}

.cs-listing-hero-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    background: #eef2f8;
}

.cs-listing-thumbs {
    display: flex;
    gap: 6px;
    padding: 8px 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #ccc #f0f0f0;
}

.cs-listing-thumbs::-webkit-scrollbar {
    height: 4px;
}

.cs-listing-thumbs::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.cs-listing-thumbs::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 2px;
}

.cs-listing-thumbs img {
    flex: 0 0 80px;
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    scroll-snap-align: start;
    cursor: pointer;
}

.cs-listing-spec-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.cs-listing-spec-grid div {
    border: 1px solid #e4e9f2;
    border-radius: 10px;
    padding: 8px;
}

.cs-listing-spec-grid span {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: .66rem;
    color: #5f6f84;
}

.cs-listing-spec-grid strong {
    font-size: .92rem;
    color: #1b2a3f;
}

@media (max-width: 992px) {
    .cs-header-fav {
        padding: 5px 8px;
    }

    .cs-listing-hero-img {
        height: 290px;
    }
}

/* ── Validation ── */
.input-validation-error {
    border-color: #dc3545 !important;
}

.input-validation-error:focus {
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25) !important;
}

.field-validation-error {
    color: #dc3545;
    font-size: 0.875em;
    margin-top: 0.25rem;
    display: block;
}