/* ===== MOBILE HEADER ===== */
.mobile-header {
    display: none;
    background: white;
    padding: 12px 16px;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1200;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.icon-btn {
    background: #F3F4F6;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-primary);
    cursor: pointer;
    transition: background 0.2s;
}

.icon-btn:hover { background: #E5E7EB; }

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-link {
    color: var(--text-primary);
    font-size: 18px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== DESKTOP TOP HEADER / NAVBAR ===== */
.main-content {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow-y: auto;
    padding: 0 32px 32px 32px;
}

.top-header {
    background: rgba(243, 244, 246, 0.9);
    backdrop-filter: blur(8px);
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 16px;
    position: sticky;
    top: 0;
    z-index: var(--header-zIndex);
}

.search-bar {
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 0;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    height: 44px;
    overflow: hidden;
}

.location-select {
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 8px;
    color: var(--text-secondary);
    position: relative;
    background: #F9FAFB;
    height: 100%;
    border-right: 1px solid var(--border-color);
}

.location-select select {
    border: none;
    outline: none;
    background: none;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 13px;
}

.search-icon {
    margin-left: 16px;
    color: var(--text-secondary);
    font-size: 14px;
}

.search-bar input {
    border: none;
    outline: none;
    font-family: inherit;
    flex: 1;
    font-size: 14px;
    padding: 0 12px;
}

.search-btn {
    background: var(--brand-blue);
    color: white;
    border: none;
    height: 100%;
    padding: 0 20px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.content-tabs {
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.tab-btn {
    background: none;
    border: none;
    padding: 12px 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-right: 24px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.tab-btn.active {
    color: var(--primary-black);
    border-bottom-color: var(--primary-black);
}