/* ============================================
   NOMAGRI KURUMSAL — BAYİLER SAYFASI
   ============================================ */

/* Harita Placeholder */
.dealers-map {
    margin-bottom: var(--space-12);
}

.dealers-map__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    min-height: 400px;
    background: var(--color-cream);
    border: 2px dashed var(--color-stone);
    border-radius: var(--radius-card);
    color: var(--color-text-muted);
}

.dealers-map__placeholder svg {
    color: var(--color-primary);
}

.dealers-map__placeholder p {
    font-size: var(--text-lg);
    font-weight: var(--fw-medium);
}

.dealers-map__placeholder small {
    font-size: var(--text-sm);
}

/* Bayi Bölge Kartları */
.dealers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
}

.dealer-region {
    background: var(--color-pure-white);
    border: 1px solid var(--color-ivory);
    border-radius: var(--radius-card);
    padding: var(--space-8);
    box-shadow: var(--shadow-card);
}

.dealer-region__title {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-secondary);
    font-size: var(--text-xl);
    color: var(--color-text-primary);
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-4);
    border-bottom: 2px solid var(--color-cream);
}

.dealer-region__title svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.dealer-region__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.dealer-item {
    padding: var(--space-4);
    background: var(--color-cream);
    border-radius: var(--radius-btn);
}

.dealer-item__name {
    font-weight: var(--fw-semibold);
    color: var(--color-text-primary);
    margin-bottom: var(--space-1);
}

.dealer-item__address {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.dealer-item__phone {
    font-size: var(--text-sm);
    color: var(--color-primary);
    font-weight: var(--fw-medium);
    margin-top: var(--space-1);
}

/* Bayilik Başvuru Formu */
.dealer-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-pure-white);
    padding: var(--space-10);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
}

.form-actions {
    text-align: center;
    margin-top: var(--space-6);
}

/* Responsive */
@media (max-width: 768px) {
    .dealers-grid {
        grid-template-columns: 1fr;
    }
    .dealer-form {
        padding: var(--space-6);
    }
}
