/* PrimeNeu Advertisements — storefront */

.pn-ad-strip-wrap {
	position: relative;
	z-index: 99990;
	width: 100%;
}

.pn-ad-strip {
	display: block;
	position: relative;
	overflow: hidden;
	color: #fff;
	text-decoration: none;
	min-height: 41px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.pn-ad-strip:hover {
	opacity: 0.95;
	color: #fff;
}

.pn-ad-strip__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.pn-ad-strip--continuous_random .pn-ad-strip__bg-layer {
	opacity: 0;
	transition: opacity 1.4s ease-in-out;
}

.pn-ad-strip--continuous_random .pn-ad-strip__bg-layer.is-active {
	opacity: 1;
}

.pn-ad-strip__bg--zinc {
	background: linear-gradient(to right, #18181b, #27272a, #18181b);
}

.pn-ad-strip__bg--teal {
	background: linear-gradient(to right, #0d9488, #10b981, #0d9488);
}

.pn-ad-strip__bg--purple {
	background: linear-gradient(to right, #7c3aed, #d946ef, #7c3aed);
}

.pn-ad-strip__bg--amber {
	background: linear-gradient(to right, #d97706, #f43f5e, #d97706);
}

.pn-ad-strip__bg--blue {
	background: linear-gradient(to right, #2563eb, #0ea5e9, #2563eb);
}

.pn-ad-strip--zinc .pn-ad-strip__bg {
	background: linear-gradient(to right, #18181b, #27272a, #18181b);
}

.pn-ad-strip--teal .pn-ad-strip__bg {
	background: linear-gradient(to right, #0d9488, #10b981, #0d9488);
}

.pn-ad-strip--purple .pn-ad-strip__bg {
	background: linear-gradient(to right, #7c3aed, #d946ef, #7c3aed);
}

.pn-ad-strip--amber .pn-ad-strip__bg {
	background: linear-gradient(to right, #d97706, #f43f5e, #d97706);
}

.pn-ad-strip--blue .pn-ad-strip__bg {
	background: linear-gradient(to right, #2563eb, #0ea5e9, #2563eb);
}

.pn-ad-strip__content {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 10px 16px;
}

.pn-ad-strip__message {
	margin: 0;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-align: center;
}

.pn-ad-strip__arrow {
	font-size: 14px;
	opacity: 0.8;
	transition: transform 0.2s ease;
}

.pn-ad-strip:hover .pn-ad-strip__arrow {
	transform: translateX(3px);
}

.pn-ad-strip--shimmer .pn-ad-strip__shimmer {
	position: absolute;
	inset: 0;
	z-index: 3;
	pointer-events: none;
	background: linear-gradient(45deg, transparent 25%, rgba(255, 255, 255, 0.05) 50%, transparent 75%);
	background-size: 250px 250px;
	animation: pn-ad-shimmer 3s linear infinite;
}

@keyframes pn-ad-shimmer {
	0% { background-position: 0 0; }
	100% { background-position: 250px 0; }
}

.pn-ad-sponsored {
	font-size: 9px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	opacity: 0.65;
	margin-left: 8px;
}

.pn-ad-banner img {
	max-width: 100%;
	height: auto;
	display: block;
}

.pn-ad-products {
	overflow: hidden;
	margin: 1rem 0;
}

.pn-ad-products__track {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 4px;
}

.pn-ad-product-card {
	flex: 0 0 180px;
	scroll-snap-align: start;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 10px;
	text-decoration: none;
	color: inherit;
	position: relative;
}

.pn-ad-product-card img {
	width: 100%;
	height: auto;
}

.pn-ad-label {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 2px 6px;
	border-radius: 4px;
	margin-right: 4px;
	background: #ef4444;
	color: #fff;
}

.pn-ad-content {
	margin: 1rem 0;
	padding: 12px;
	border: 1px dashed #d1d5db;
	border-radius: 8px;
}
