* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    touch-action: manipulation;
    -ms-touch-action: manipulation;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

#app {
    overflow-x: hidden;
    width: 100%;
}

:root {
    --primary: #c9a96e;
    --primary-light: #e2c992;
    --accent: #c9a96e;
    --accent-glow: rgba(201, 169, 110, 0.2);
    --success: #4caf50;
    --danger: #e53935;
    --warning: #f9a825;
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-card-hover: #1c1c1c;
    --bg-glass: rgba(255, 255, 255, 0.02);
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(201, 169, 110, 0.4);
    --text: #f5f5f5;
    --text-muted: #999999;
    --text-dim: #666666;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(201, 169, 110, 0.08);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    letter-spacing: 0.2px;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.gradient-text {
    background: linear-gradient(135deg, #c9a96e 0%, #e2c992 50%, #c9a96e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
}

.brand-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: visible;
}

.brand-icon svg {
    width: 40px;
    height: 40px;
    display: block;
}

.brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
    line-height: 1.2;
}

.brand-tag {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.nav-link:hover {
    color: var(--primary-light);
    background: rgba(201, 169, 110, 0.05);
}

.nav-link.active {
    color: var(--primary);
    background: rgba(201, 169, 110, 0.1);
}

.nav-link i {
    margin-right: 6px;
    font-size: 0.8rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.btn-icon:hover {
    border-color: var(--primary);
    color: var(--primary-light);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.3rem;
    cursor: pointer;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #c9a96e, #a8893e);
    color: #fff;
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.35);
}

.btn-glow {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-glow:hover {
    background: rgba(201, 169, 110, 0.1);
    transform: translateY(-2px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(201, 169, 110, 0.3);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 0.95rem;
    border-radius: 12px;
}

.btn-back {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 12px 20px;
    margin: 16px 0 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
    position: relative;
    z-index: 10;
}

.btn-back:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    color: var(--primary-light);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(201, 169, 110, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 50%, rgba(201, 169, 110, 0.04) 0%, transparent 40%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(1px 1px at 100px 200px, rgba(255,255,255,0.3), transparent),
                      radial-gradient(1px 1px at 400px 100px, rgba(255,255,255,0.2), transparent),
                      radial-gradient(1px 1px at 800px 300px, rgba(255,255,255,0.15), transparent),
                      radial-gradient(1px 1px at 600px 400px, rgba(255,255,255,0.2), transparent);
}

.hero-content {
    position: relative;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 206, 201, 0.1);
    border: 1px solid rgba(0, 206, 201, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 24px;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 48px;
    max-width: 700px;
    margin: 0 auto;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-light);
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ===== SECTIONS ===== */
.section-header {
    text-align: center;
    margin: 80px 0 40px;
}

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* ===== FEATURES ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(0, 206, 201, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.3rem;
    color: var(--primary-light);
}

.feature-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== CTA ===== */
.cta-section {
    margin: 40px 0 80px;
}

.cta-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(108, 92, 231, 0.1) 100%);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-content h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.cta-content p {
    color: var(--text-muted);
}

/* ===== CATALOG ===== */
.catalog-top {
    padding-top: 100px;
    margin-bottom: 32px;
}

.catalog-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.catalog-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
}

.catalog-header i {
    color: var(--danger);
}

.catalog-count {
    background: var(--primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.catalog-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 140px;
}

.filter-tags {
    margin-top: 8px;
}

.filter-group label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.filter-group label i {
    margin-right: 4px;
}

.select-modern {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    min-width: 260px;
    cursor: pointer;
    transition: border-color 0.3s;
    font-family: inherit;
}

.select-modern:focus {
    outline: none;
    border-color: var(--primary);
}

/* ===== VEHICLES GRID ===== */
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--text-dim);
}

.empty-state h3 {
    margin-bottom: 8px;
    color: var(--text);
}

/* ===== VEHICLE CARD ===== */
.vehicle-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.vehicle-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

.vehicle-card-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 5;
}

.vehicle-card-img-wrap:hover .carousel-btn,
.vehicle-gallery:hover .carousel-btn {
    opacity: 1;
}

.carousel-btn.prev { left: 8px; }
.carousel-btn.next { right: 8px; }

.carousel-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    z-index: 5;
}

.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    transition: background 0.3s;
}

.carousel-dot.active {
    background: #fff;
}

.vehicle-gallery .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
}

.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-overlay img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-btn.prev { left: 20px; }
.lightbox-btn.next { right: 20px; }

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.vehicle-gallery img#main-image {
    cursor: pointer;
}

.vehicle-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.vehicle-card:hover .vehicle-card-img {
    transform: scale(1.05);
}

.vehicle-card-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
}

.badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.badge-live {
    background: rgba(255, 118, 117, 0.9);
    color: #fff;
}

.badge-offers {
    background: rgba(108, 92, 231, 0.9);
    color: #fff;
}

.badge-new {
    background: rgba(0, 206, 201, 0.9);
    color: #fff;
}

.vehicle-card-body {
    padding: 20px;
}

.vehicle-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.vehicle-card-subtitle {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 14px;
}

.vehicle-card-specs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.spec-tag {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.spec-tag i {
    margin-right: 4px;
    color: var(--primary-light);
    font-size: 0.65rem;
}

.vehicle-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.price-block .price-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.price-block .price-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--success);
}

.timer-block {
    text-align: right;
}

.timer-block .timer-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.timer-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(255, 118, 117, 0.15);
    color: var(--danger);
}

.timer-badge.active {
    background: rgba(0, 184, 148, 0.15);
    color: var(--success);
}

.timer-badge i {
    font-size: 0.65rem;
}

/* ===== VEHICLE DETAIL ===== */
.vehicle-detail {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 32px;
    padding-top: 20px;
}

.vehicle-gallery img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius);
}

.vehicle-thumbnails {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.vehicle-thumbnails img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.vehicle-thumbnails img:hover,
.vehicle-thumbnails img.active {
    opacity: 1;
    border-color: var(--primary);
}

.vehicle-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    position: sticky;
    top: 100px;
}

.vehicle-sidebar h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.vehicle-sidebar .subtitle {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.bid-section {
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-bottom: 16px;
}

.bid-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.bid-row:last-child {
    margin-bottom: 0;
}

.bid-row .label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.bid-row .value {
    font-weight: 600;
}

.bid-row .value.highlight {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    color: var(--success);
}

.bid-timer {
    text-align: center;
    padding: 16px;
    background: rgba(108, 92, 231, 0.08);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.bid-timer-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.bid-timer-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-light);
    font-variant-numeric: tabular-nums;
}

.bid-input-group {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.bid-input {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 14px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.bid-input:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-increment {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--primary-light);
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.btn-increment:hover {
    border-color: var(--primary);
    background: rgba(108, 92, 231, 0.1);
}

.btn-bid {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--success), #00a884);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-bid:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 184, 148, 0.3);
}

.btn-buynow {
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 1px solid var(--warning);
    color: var(--warning);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 12px;
    transition: all 0.3s;
}

.btn-buynow:hover {
    background: rgba(253, 203, 110, 0.1);
}

.vehicle-specs {
    margin-top: 24px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
}

.spec-row .label {
    color: var(--text-muted);
}

/* ===== STEPS ===== */
.steps-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 40px 0 80px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.step-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.step-num {
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(108, 92, 231, 0.15);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(0, 206, 201, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.4rem;
    color: var(--primary-light);
}

.step-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 60px 0 24px;
    margin-top: 80px;
}

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

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 12px;
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 0.9rem;
    margin-bottom: 16px;
    color: var(--text);
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-links a i {
    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    text-align: center;
    color: var(--text-dim);
    font-size: 0.8rem;
}

/* ===== PAGES ===== */
.page {
    display: none;
}

.page.active {
    display: block;
}

#page-vehicle,
#page-catalog,
#page-how,
#page-dashboard {
    padding-top: 90px;
}

/* ===== CARD BID ===== */
.vehicle-card-bid {
    padding: 12px 16px 16px;
    border-top: 1px solid var(--border);
}

.card-bid-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.card-bid-input {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-family: inherit;
    min-width: 0;
}

.card-bid-input:focus {
    outline: none;
    border-color: var(--primary);
}

.card-bid-btn {
    background: linear-gradient(135deg, #c9a96e, #a8893e);
    border: none;
    color: #fff;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.3s, transform 0.2s;
}

.card-bid-btn:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.card-bid-btn:active {
    transform: scale(0.98);
}

.card-buynow-btn {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding: 10px 16px;
    background: rgba(0, 184, 148, 0.15);
    border: 1px solid rgba(0, 184, 148, 0.4);
    color: #00b894;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.card-buynow-btn:hover {
    background: rgba(0, 184, 148, 0.25);
    border-color: #00b894;
}

.card-laudo-btn {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding: 8px 16px;
    background: rgba(108, 92, 231, 0.1);
    border: 1px solid rgba(108, 92, 231, 0.3);
    color: var(--primary-light);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
}

.card-laudo-btn:hover {
    background: rgba(108, 92, 231, 0.2);
    border-color: var(--primary);
}

/* Laudo Badges */
.badge-laudo-ok {
    background: rgba(0, 184, 148, 0.15);
    color: #00b894;
    border: 1px solid rgba(0, 184, 148, 0.3);
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 700;
    white-space: nowrap;
}

.badge-laudo-fail {
    background: rgba(255, 118, 117, 0.15);
    color: #ff7675;
    border: 1px solid rgba(255, 118, 117, 0.3);
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 700;
    white-space: nowrap;
}

.badge-laudo-none {
    background: rgba(90, 99, 128, 0.15);
    color: var(--text-dim);
    border: 1px solid rgba(90, 99, 128, 0.3);
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 600;
    white-space: nowrap;
}

/* Card Header */
.vehicle-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 4px;
}

/* Comitente */
.vehicle-card-comitente {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 6px;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    display: inline-block;
}

.vehicle-card-comitente i {
    margin-right: 4px;
    color: var(--primary-light);
}

.spec-plate {
    background: rgba(201, 169, 110, 0.15) !important;
    border-color: rgba(201, 169, 110, 0.3) !important;
    color: var(--primary-light) !important;
    font-weight: 700;
}

/* Urgency - last 5 minutes */
.card-urgent {
    border-color: rgba(255, 118, 117, 0.5) !important;
    animation: pulse-urgent 1.5s infinite;
}

@keyframes pulse-urgent {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 118, 117, 0); }
    50% { box-shadow: 0 0 20px rgba(255, 118, 117, 0.2); }
}

/* Auto-Bid Button */
.card-autobid-btn {
    background: rgba(108, 92, 231, 0.15);
    border: 1px solid rgba(108, 92, 231, 0.4);
    color: var(--primary-light);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.card-autobid-btn:hover {
    background: rgba(108, 92, 231, 0.3);
    border-color: var(--primary);
}

/* Auto-Bid Modal */
.modal-autobid-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.modal-autobid-header i {
    font-size: 1.5rem;
    color: var(--primary-light);
}

.modal-autobid-header h3 {
    font-size: 1.2rem;
    color: var(--text);
}

.modal-autobid-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

.autobid-info {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px;
    margin-bottom: 16px;
    font-size: 0.88rem;
    color: var(--text);
}

.autobid-info span {
    color: var(--text-muted);
    font-size: 0.82rem;
}

/* ===== TOAST NOTIFICATIONS ===== */
#toast-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transform: translateX(120%);
    transition: transform 0.3s ease;
    pointer-events: auto;
    max-width: 380px;
}

.toast.show {
    transform: translateX(0);
}

.toast i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.toast-success {
    background: rgba(0, 184, 148, 0.9);
    border: 1px solid rgba(0, 184, 148, 0.5);
}

.toast-error {
    background: rgba(255, 118, 117, 0.9);
    border: 1px solid rgba(255, 118, 117, 0.5);
}

.toast-warning {
    background: rgba(253, 203, 110, 0.9);
    border: 1px solid rgba(253, 203, 110, 0.5);
    color: #2d3436;
}

.toast-info {
    background: rgba(108, 92, 231, 0.9);
    border: 1px solid rgba(108, 92, 231, 0.5);
}

/* ===== SKELETON LOADING ===== */
.skeleton-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    height: 420px;
}

.skeleton-card::before {
    content: '';
    display: block;
    height: 200px;
    background: linear-gradient(90deg, var(--bg-card-hover) 25%, rgba(255,255,255,0.05) 50%, var(--bg-card-hover) 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
}

.skeleton-card::after {
    content: '';
    display: block;
    margin: 16px;
    height: 160px;
    border-radius: 8px;
    background: linear-gradient(90deg, var(--bg-card-hover) 25%, rgba(255,255,255,0.03) 50%, var(--bg-card-hover) 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite 0.3s;
}

@keyframes skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ===== FAVORITE BUTTON ===== */
.card-fav-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    border: none;
    color: rgba(255, 255, 255, 0.6);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 5;
}

.card-fav-btn:hover {
    color: #ff7675;
    transform: scale(1.1);
}

.card-fav-btn.active {
    color: #ff7675;
    background: rgba(255, 118, 117, 0.2);
}

.card-fav-btn.active i {
    animation: heart-pop 0.3s ease;
}

@keyframes heart-pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* ===== DASHBOARD ===== */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.dash-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
}

.dash-stat-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.dash-stat-icon {
    font-size: 1.5rem;
    color: var(--primary-light);
    margin-bottom: 12px;
}

.dash-stat-icon.success { color: #00b894; }
.dash-stat-icon.danger { color: #ff7675; }
.dash-stat-icon.accent { color: var(--accent); }

.dash-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
}

.dash-stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}

.dashboard-sections {
    margin-top: 24px;
}

.dash-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
}

.dash-section h3 {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 16px;
}

.dash-section h3 i {
    color: var(--primary-light);
    margin-right: 8px;
}

.dash-offer-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    background: rgba(0, 0, 0, 0.2);
    margin-bottom: 8px;
    transition: background 0.2s;
}

.dash-offer-item:hover {
    background: rgba(0, 0, 0, 0.3);
}

.dash-offer-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dash-offer-info strong {
    font-size: 0.9rem;
    color: var(--text);
}

.dash-offer-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.dash-status {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
}

.dash-status-winning {
    background: rgba(0, 184, 148, 0.15);
    color: #00b894;
}

.dash-status-losing {
    background: rgba(255, 118, 117, 0.15);
    color: #ff7675;
}

/* ===== CARD ANIMATIONS ===== */
.vehicle-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vehicle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* ===== COST CALCULATOR ===== */
.cost-calculator {
    margin-top: 16px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px;
}

.calc-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
}

.calc-title i {
    margin-right: 6px;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 0.83rem;
    color: var(--text-muted);
}

.calc-row.calc-total {
    padding-top: 10px;
    margin-top: 8px;
    border-top: 1px solid var(--border);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text);
}

.calc-row.calc-margin {
    padding-top: 8px;
    font-weight: 700;
    font-size: 0.88rem;
}

/* Detail page extras */
.detail-laudo-btn {
    display: block;
    margin-top: 12px;
    padding: 12px 16px;
    background: rgba(108, 92, 231, 0.1);
    border: 1px solid rgba(108, 92, 231, 0.3);
    color: var(--primary-light);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
}

.detail-laudo-btn:hover {
    background: rgba(108, 92, 231, 0.2);
    border-color: var(--primary);
}

.detail-comitente {
    margin-top: 10px;
    font-size: 0.82rem;
    color: var(--text-muted);
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
}

.detail-comitente i {
    margin-right: 6px;
    color: var(--primary-light);
}

/* ===== CONFIRM MODAL ===== */
.modal-confirm {
    text-align: center;
    max-width: 360px;
}

.confirm-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #c9a96e, #a8893e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}

.modal-confirm h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text);
}

.modal-confirm p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.confirm-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    margin: 12px 0;
}

.confirm-vehicle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.confirm-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.confirm-btn-cancel {
    flex: 1;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.confirm-btn-cancel:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
}

.confirm-btn-ok {
    flex: 1;
    padding: 14px;
    background: linear-gradient(135deg, #c9a96e, #a8893e);
    border: none;
    color: #fff;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.confirm-btn-ok:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* Card image transition */
.vehicle-card-img {
    transition: opacity 0.15s ease;
}

/* ===== LOADING ===== */
.loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px;
    color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-timeline { grid-template-columns: repeat(2, 1fr); }
    .vehicle-detail { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; position: fixed; top: 70px; left: 0; right: 0; background: var(--bg-card); border-bottom: 1px solid var(--border); flex-direction: column; padding: 16px 24px; gap: 8px; z-index: 999; }
    .nav-links.open { display: flex; }
    .nav-actions { display: none; }
    .mobile-toggle { display: block; }
    .hero { padding: 120px 0 50px; }
    .hero-title { font-size: 1.6rem; word-break: break-word; line-height: 1.2; }
    .hero-subtitle { font-size: 0.9rem; margin-bottom: 24px; }
    .hero-badge { font-size: 0.7rem; padding: 6px 12px; }
    .hero-stats { flex-direction: column; gap: 12px; padding: 16px; }
    .hero-stat-value { font-size: 1.4rem; }
    .hero-stat-divider { width: 40px; height: 1px; }
    .hero-actions { flex-direction: column; align-items: stretch; width: 100%; gap: 10px; margin-bottom: 30px; }
    .hero-actions .btn { width: 100%; justify-content: center; text-align: center; }
    .btn-lg { padding: 12px 20px; font-size: 0.88rem; }
    .features-grid { grid-template-columns: 1fr; gap: 12px; }
    .feature-card { padding: 20px 16px; }
    .feature-card h3 { font-size: 0.9rem; }
    .feature-card p { font-size: 0.78rem; }
    .vehicles-grid { grid-template-columns: 1fr; }
    .catalog-filters { flex-direction: column; gap: 10px; }
    .filter-group { width: 100%; min-width: unset; }
    .select-modern { min-width: 100%; width: 100%; }
    .cta-card { flex-direction: column; text-align: center; gap: 20px; padding: 24px 16px; }
    .cta-content h2 { font-size: 1.1rem; }
    .cta-content p { font-size: 0.82rem; }
    .steps-timeline { grid-template-columns: 1fr; }
    .catalog-top { padding-top: 90px; }
    .catalog-header { flex-direction: column; align-items: flex-start; gap: 8px; }
    .catalog-header h2 { font-size: 1.2rem; }
    .vehicle-gallery { max-height: 250px; }
    .vehicle-gallery img#main-image { max-height: 250px; }
    .container { padding: 0 14px; }
    .page { overflow-x: hidden; }
    .vehicle-card { max-width: 100%; }
    .vehicle-card-body { padding: 14px; }
    .vehicle-card-title { font-size: 0.9rem; }
    .vehicle-card-specs { gap: 6px; flex-wrap: wrap; }
    .spec-tag { font-size: 0.68rem; padding: 4px 8px; }
    .card-bid-row { flex-direction: column; gap: 8px; }
    .card-bid-input { width: 100%; }
    .card-bid-btn { width: 100%; text-align: center; justify-content: center; }
    .card-autobid-btn { width: 100%; }
    .card-buynow-btn { font-size: 0.78rem; }
    .bid-input-group { flex-wrap: wrap; }
    .vehicle-card-bid { padding: 12px 14px 16px; }
    .section-header { margin: 40px 0 24px; }
    .section-header h2 { font-size: 1.3rem; }
    .section-header p { font-size: 0.82rem; }
    .section-tag { font-size: 0.7rem; }
    .dashboard-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .dash-stat-card { padding: 14px; }
    .dash-stat-value { font-size: 1.3rem; }
    .navbar { padding: 10px 0; }
    .brand-name { font-size: 1.1rem; }
    .brand-tag { font-size: 0.6rem; }
    .modal { padding: 24px 16px; margin: 16px; max-width: calc(100% - 32px); }
    .vehicle-detail-sidebar { position: static; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer { padding: 40px 0 20px; }
    .price-value { font-size: 1rem; }
    .vehicle-card-footer { flex-direction: column; gap: 8px; align-items: flex-start; }
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    width: 100%;
    max-width: 420px;
    position: relative;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--text);
}

.modal-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 4px;
}

.modal-tab {
    flex: 1;
    padding: 10px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-tab.active {
    background: var(--primary);
    color: #fff;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.form-input {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
}

.form-error {
    color: var(--danger);
    font-size: 0.8rem;
    text-align: center;
    margin-top: 8px;
}

.btn-terms-alert {
    display: block;
    text-align: center;
    padding: 10px 16px;
    background: rgba(255, 118, 117, 0.1);
    border: 1px solid rgba(255, 118, 117, 0.3);
    border-radius: 8px;
    color: #ff7675;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    animation: pulse-alert 2s infinite;
}

.btn-terms-alert:hover {
    background: rgba(255, 118, 117, 0.2);
    border-color: #ff7675;
}

@keyframes pulse-alert {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* FIPE Badge - Cards */
.fipe-badge-wrap {
    padding: 8px 16px 12px;
    text-align: center;
}

.fipe-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.fipe-badge.fipe-good {
    background: rgba(0, 184, 148, 0.15);
    color: #00b894;
    border: 1px solid rgba(0, 184, 148, 0.3);
}

.fipe-badge.fipe-great {
    background: rgba(0, 184, 148, 0.25);
    color: #00b894;
    border: 1px solid rgba(0, 184, 148, 0.5);
    font-weight: 800;
    animation: pulse-fipe 2s infinite;
}

@keyframes pulse-fipe {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 184, 148, 0); }
    50% { box-shadow: 0 0 10px rgba(0, 184, 148, 0.3); }
}

.fipe-badge.fipe-bad {
    background: rgba(255, 118, 117, 0.15);
    color: #ff7675;
    border: 1px solid rgba(255, 118, 117, 0.3);
}

.fipe-badge.fipe-na {
    background: rgba(90, 99, 128, 0.15);
    color: var(--text-dim);
    border: 1px solid rgba(90, 99, 128, 0.3);
    font-weight: 500;
}

/* FIPE Detail Card */
.fipe-detail-wrap {
    margin-top: 12px;
}

.fipe-detail-card {
    background: rgba(0, 184, 148, 0.05);
    border: 1px solid rgba(0, 184, 148, 0.2);
    border-radius: var(--radius-sm);
    padding: 16px;
}

.fipe-detail-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
}

.fipe-detail-title i {
    margin-right: 6px;
}

.fipe-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.fipe-detail-row.highlight {
    padding-top: 10px;
    margin-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-weight: 700;
    color: var(--text);
}

.fipe-value {
    color: var(--text);
    font-weight: 600;
}

.fipe-good-text {
    color: #00b894;
    font-weight: 700;
}

.fipe-bad-text {
    color: #ff7675;
    font-weight: 700;
}
