/* ============================================
   DEALER SECTION
   ============================================ */

.dealer-section {
    position: relative;
    background: var(--bg-dark);
    padding: 5rem 0;
}

.dealer-container {
    margin: 0 7vw;
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    min-height: 500px;
}

.dealer-text {
    width: 42%;
    background: #1a1a1c;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.dealer-text h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.dealer-text p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--text-white);
    color: #000;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 4px;
    transition: background 0.3s;
    width: fit-content;
    text-decoration: none;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.dealer-image {
    width: 58%;
}

.dealer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   DEALER RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .dealer-container {
        flex-direction: column;
    }
    
    .dealer-text {
        width: 100%;
        padding: 2rem;
    }
    
    .dealer-image {
        width: 100%;
        height: 250px;
    }
}
