/* =============================================================
   Arman_BrandDropdown - brand-dropdown.css
   Huisstijl: Banden-Kopen.nl (navy + oranje)
   ============================================================= */

.bk-brand-dropdown {
    padding: 40px 0;
    font-family: 'Barlow', 'Segoe UI', sans-serif;
}

/* ---------- Header ---------- */
.bk-brand-dropdown__header {
    text-align: center;
    margin-bottom: 32px;
}

.bk-brand-dropdown__title {
    font-family: 'Barlow Condensed', 'Arial Narrow', Impact, sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #1a2740;
    line-height: 1;
    letter-spacing: -0.5px;
    margin: 8px 0 16px;
}

/* ---------- Body ---------- */
.bk-brand-dropdown__body {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Select wrapper ---------- */
.bk-brand-dropdown__select-wrap {
    position: relative;
    margin-bottom: 28px;
}

.bk-brand-dropdown__select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 14px 48px 14px 18px;
    font-family: 'Barlow', 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a2740;
    cursor: pointer;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.bk-brand-dropdown__select:focus {
    outline: none;
    border-color: #e8552a;
    box-shadow: 0 0 0 3px rgba(232, 85, 42, 0.15);
}

.bk-brand-dropdown__select:hover {
    border-color: #1a2740;
}

.bk-brand-dropdown__select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9aa5b4;
    pointer-events: none;
    display: flex;
    align-items: center;
}

/* ---------- Model kaarten grid ---------- */
.bk-brand-dropdown__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

@media (max-width: 768px) {
    .bk-brand-dropdown__cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .bk-brand-dropdown__cards {
        grid-template-columns: 1fr;
    }
}

/* ---------- Model kaart ---------- */
.bk-brand-model-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    color: #1a2740;
    transition: all 0.2s;
    cursor: pointer;
}

.bk-brand-model-card:hover {
    border-color: #e8552a;
    color: #e8552a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 85, 42, 0.15);
}

.bk-brand-model-card__name {
    flex: 1;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.2;
}

.bk-brand-model-card__count {
    font-size: 1.1rem;
    color: #9aa5b4;
    white-space: nowrap;
    flex-shrink: 0;
}

.bk-brand-model-card__arrow {
    color: #9aa5b4;
    flex-shrink: 0;
    transition: color 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
}

.bk-brand-model-card:hover .bk-brand-model-card__arrow {
    color: #e8552a;
    transform: translateX(3px);
}

/* ---------- Actie knop (dropdown) ---------- */
.bk-brand-dropdown__actions {
    justify-content: center;
    margin-top: 20px;
}

.bk-brand-dropdown__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #e8552a;
    color: #ffffff;
    border: 2px solid #e8552a;
    border-radius: 4px;
    font-family: 'Barlow', 'Segoe UI', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.bk-brand-dropdown__btn:hover {
    background: #c94220;
    border-color: #c94220;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(232, 85, 42, 0.4);
}

/* ---------- Eyebrow (gedeeld met BK huisstijl) ---------- */
.bk-brand-dropdown .bk-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #e8552a;
    margin-bottom: 8px;
}

.bk-brand-dropdown .bk-section-line {
    width: 48px;
    height: 3px;
    background: #e8552a;
    border-radius: 2px;
    margin: 0 auto;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .bk-brand-dropdown__body {
        padding: 0 12px;
    }
    .bk-brand-dropdown__select {
        font-size: 1.3rem;
        padding: 12px 44px 12px 14px;
    }
    .bk-brand-dropdown__title {
        font-size: 1.8rem;
    }
}
