/* =========================================================
   Nautica Web Shop — Top Bar Frontend Styles
   ========================================================= */

#nws-topbar {
	position: relative;
	width: 100%;
	overflow: hidden;
	height: 55px;
	z-index: 98;
	flex-shrink: 0;
}

/* ── Track ───────────────────────────────────────────────── */
.nws-topbar__track {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

/* ── Slides ──────────────────────────────────────────────── */
.nws-topbar__slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.25px;
	padding: 0 24px;
	opacity: 0;
	transform: translateY(6px);
	transition: opacity 0.45s ease, transform 0.45s ease;
	pointer-events: none;
	line-height: 1.3;
}

.nws-topbar__slide.is-active {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.nws-topbar__slide.is-leaving {
	opacity: 0;
	transform: translateY(-6px);
}

/* ── Text / Link ─────────────────────────────────────────── */
.nws-topbar__text,
.nws-topbar__link {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
	font-family: inherit;
	padding-bottom: 15px;
}

.nws-topbar__link {
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s;
}

.nws-topbar__link:hover {
	border-bottom-color: currentColor;
}

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 600px) {
	#nws-topbar {
		height: 36px;
	}
	.nws-topbar__slide {
		font-size: 12px;
		padding: 0 12px;
	}
}
