.ln-top-bar {
	position: relative;
	background-color: #FFFFFF;
	border-bottom: 1px solid #EDE6DC;
	font-family: "Plus Jakarta Sans", sans-serif;
}

.ln-top-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px 24px;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 10px 56px;
}

.ln-top-bar__group {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.ln-top-bar__group--left {
	justify-content: flex-start;
}

.ln-top-bar__group--right {
	justify-content: flex-end;
}

/* ── Info items (phone / location / hours) ── */

.ln-top-bar__item {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	padding-right: 20px;
}

.ln-top-bar__item::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 1px;
	height: 14px;
	background-color: #DEDAD4;
	transform: translateY(-50%);
}

.ln-top-bar__item:last-child {
	padding-right: 0;
}

.ln-top-bar__item:last-child::after {
	display: none;
}

.ln-top-bar__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 14px;
	line-height: 1;
	color: #205247;
}

.ln-top-bar__icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.ln-top-bar__text {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	color: #5C5450;
	text-decoration: none;
	white-space: nowrap;
}

a.ln-top-bar__text:hover {
	color: #205247;
}

/* ── Social icons ── */

.ln-top-bar__social {
	display: flex;
	align-items: center;
	gap: 8px;
}

.ln-top-bar__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	border: 1px solid #2C1A0A;
	color: #2C1A0A;
	font-size: 12px;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.ln-top-bar__social-link:hover {
	background-color: #205247;
	border-color: #205247;
	color: #FFFFFF;
}

.ln-top-bar__social-link svg {
	width: 12px;
	height: 12px;
	fill: currentColor;
}

/* ── Responsive ── */

@media (max-width: 1280px) {
	.ln-top-bar__inner {
		padding: 10px 40px;
	}
}

@media (max-width: 1024px) {
	.ln-top-bar__inner {
		padding: 10px 32px;
	}

	.ln-top-bar__group {
		gap: 14px;
	}

	.ln-top-bar__item {
		padding-right: 14px;
	}
}

@media (max-width: 767px) {
	.ln-top-bar__inner {
		justify-content: center;
		padding: 10px 20px;
	}

	.ln-top-bar__group {
		justify-content: center;
		width: 100%;
	}

	.ln-top-bar__group--left {
		justify-content: center;
	}

	.ln-top-bar__group--right {
		justify-content: center;
	}

	.ln-top-bar--hide-mobile {
		display: none;
	}
}

@media (max-width: 480px) {
	.ln-top-bar__text {
		font-size: 13px;
		white-space: normal;
	}

	.ln-top-bar__item {
		padding-right: 12px;
	}
}
