/* חלק עליון – משמאל: לוגו | מימין: שלום אורח + התחבר/הרשמה (LTR) */
.home-header {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.18) 20%, rgba(255, 255, 255, 0.22) 50%, rgba(255, 255, 255, 0.18) 80%, transparent 100%);
    pointer-events: none;
}

.header-guest {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    direction: ltr;
}

.header-guest-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    white-space: nowrap;
}

.header-auth-btns {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.header-auth-sep {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
}

.header-btn {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    padding: 0;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    background: transparent;
    border: none;
    text-decoration: none;
    direction: rtl;
    unicode-bidi: isolate;
    transition: color 0.2s, opacity 0.2s;
}

.header-btn:hover {
    color: rgba(255, 255, 255, 0.98);
    opacity: 0.95;
}

.header-btn-icon {
    display: inline-flex;
    width: 14px;
    height: 14px;
    color: inherit;
    flex-shrink: 0;
}

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

.header-btn-text {
    white-space: nowrap;
}

.home-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.home-logo {
    width: 88px;
    height: 88px;
    object-fit: contain;
}
