/* =============================================================
   STROBLE — Topbar
   Sesja 21 (2026-04-27): reorganizacja
   - Lewa: ikonki social (Instagram, Facebook, TikTok) — szare, hover brown
   - Prawa: telefon + email — KOLOR SZARY (mniej eyecatching), hover brown
   - KONTO usunięte z topbar
   ============================================================= */

.stroble-topbar {
	background: var(--stroble-color-bg-topbar);
	color: #000;
	font-family: var(--stroble-font-body);
	font-size: 16px;
	font-weight: var(--stroble-fw-light);
	line-height: 24px;
	height: var(--stroble-topbar-height);
	padding: 0 20px;
}

.stroble-topbar__inner {
	max-width: var(--stroble-container-max);
	margin: 0 auto;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

/* Lewa strona — ikonki social */
.stroble-topbar__socials {
	display: flex;
	align-items: center;
	gap: 16px;
}

.stroble-topbar__social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #5E6573;
	text-decoration: none;
	transition: color var(--stroble-transition-fast);
	line-height: 1;
}

.stroble-topbar__social:hover,
.stroble-topbar__social:focus-visible {
	color: var(--stroble-color-brown, #B38271);
}

.stroble-topbar__social svg {
	width: 18px;
	height: 18px;
	display: block;
}

/* Prawa strona — kontakt (szary, mniej eyecatching) */
.stroble-topbar__contact {
	display: flex;
	gap: 24px;
	align-items: center;
}

.stroble-topbar__phone,
.stroble-topbar__email {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 13px;
	font-weight: var(--stroble-fw-semibold);
	line-height: 19.5px;
	color: #7B8290;
	text-decoration: none;
	transition: color var(--stroble-transition-fast);
}

.stroble-topbar__phone:hover,
.stroble-topbar__email:hover,
.stroble-topbar__phone:focus-visible,
.stroble-topbar__email:focus-visible {
	color: var(--stroble-color-brown, #B38271);
}

.stroble-topbar__phone svg,
.stroble-topbar__email svg {
	width: 14px;
	height: 14px;
	fill: currentColor;
}

/* Mobile */
@media (max-width: 768px) {
	.stroble-topbar {
		font-size: 12px;
		height: 40px;
		padding: 0 16px;
	}
	.stroble-topbar__inner {
		flex-direction: row;
		gap: 16px;
		align-items: center;
		justify-content: space-between;
	}
	.stroble-topbar__contact {
		gap: 16px;
		margin-left: auto;
	}
	.stroble-topbar__socials {
		gap: 14px;
	}
	.stroble-topbar__social svg {
		width: 16px;
		height: 16px;
	}
	.stroble-topbar__email {
		display: none;
	}
}
