/* ============================================================
   HEADER MEGA-MENU LINKS
   Compact property-type × neighborhood grid for nav dropdowns.
   ============================================================ */

.atikia-header-links {
    width: 100%;
    padding: 16px 0 8px;
}

/* --- City Pills --- */
.atikia-header-links__cities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0 0 16px;
    border-bottom: 1px solid var(--border-primary, #E4E7EC);
    margin-bottom: 16px;
}

.atikia-header-links__city-btn {
    background: transparent;
    border: 1px solid var(--border-primary, #E4E7EC);
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary, #475467);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.atikia-header-links__city-btn:hover {
    border-color: var(--border-brand-solid, #8a05ff);
    color: var(--text-brand-primary, #6500BD);
}

.atikia-header-links__city-btn.active {
    background: var(--bg-brand-primary, #F3E8FF);
    border-color: var(--border-brand-solid, #8a05ff);
    color: var(--text-brand-primary, #6500BD);
    font-weight: 600;
}

/* --- Panels --- */
.atikia-header-links__panel {
    display: none;
}

.atikia-header-links__panel.active {
    display: block;
}

/* --- Grid: 4 columns --- */
.atikia-header-links__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 20px;
}

/* --- Column --- */
.atikia-header-links__column-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-secondary, #F2F4F7);
}

.atikia-header-links__column-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary, #101828);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.atikia-header-links__column-icon {
    width: 16px;
    height: 16px;
    color: var(--text-tertiary, #98A2B3);
    transition: color 0.15s ease;
    flex-shrink: 0;
}

.atikia-header-links__column-icon svg {
    width: 100%;
    height: 100%;
}

.atikia-header-links__column-header:hover .atikia-header-links__column-icon {
    color: var(--text-brand-primary, #6500BD);
}

.atikia-header-links__column-header:hover .atikia-header-links__column-title {
    color: var(--text-brand-primary, #6500BD);
}

/* --- Link Items --- */
.atikia-header-links__list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.atikia-header-links__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    font-size: 13px;
    color: var(--text-secondary, #475467);
    text-decoration: none;
    transition: color 0.15s ease;
    line-height: 1.4;
}

.atikia-header-links__item:hover {
    color: var(--text-brand-primary, #6500BD);
}

.atikia-header-links__item-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--text-quaternary, #D0D5DD);
    flex-shrink: 0;
    transition: background 0.15s ease;
}

.atikia-header-links__item:hover .atikia-header-links__item-dot {
    background: var(--text-brand-primary, #6500BD);
}
