/**
 * Department Toggle Styles
 *
 * Women/Men toggle buttons in the desktop navigation.
 */

/* ===========================================
   DEPARTMENT TOGGLE CONTAINER
   =========================================== */
.desktop-nav-department-toggle {
    display: flex;
    align-items: center;
    border-radius: 45px;
    border: 1px solid #e5e5e5;
    padding: 2px;
    gap: 4px;
    flex-shrink: 0;
}

/* ===========================================
   DEPARTMENT LINKS
   =========================================== */
.department-link {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--drawer-text-inactive, #999);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 20px;
    transition: all var(--transition-normal, 0.3s ease);
}

.department-link.active {
    color: var(--dropdown-text, #2D1F1F);
    background: #f5f5f5;
}

.department-link:hover {
    color: var(--dropdown-text, #2D1F1F);
}

/* ===========================================
   RESPONSIVE SIZES
   =========================================== */

/* 1024px-1199px: Compact */
@media (min-width: 1024px) and (max-width: 1199px) {
    .desktop-nav-department-toggle {
        padding: 5px;
    }

    .department-link {
        font-size: 10px;
        padding: 4px 8px;
    }
}
