/* EAN Sticky Prices — pasek cen domyślnego wariantu (mobile) */

.ean-sticky { display: none; }
.ean-sticky.is-ready .prices { margin-bottom: 0; }

.ean-sticky .all-prices-link {
	display: inline-block;
	margin: 0 auto 3px;
	line-height: 1;
	padding: 10px 30px;
	border: 1px solid #0062BD;
	color: #0062BD;
	background: #fff;
	border-radius: 40px;
	font-size: 13px;
}

@media (max-width: 782px) {
	.ean-sticky.is-ready {
		display: block;
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		text-align: center;
		background: #fff;
		z-index: 8400;
		border-top: 1px solid #CDCDCD;
		padding-top: 5px;
	}

	.ean-sticky .prices ul {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		gap: 10px;
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.ean-sticky .prices ul li {
		border: none;
		margin: 0;
	}

	.ean-sticky .prices a.track-button {
		flex-direction: column;
		padding: 5px;
		position: relative;
	}

	.ean-sticky .prices .shop img {
		max-height: 20px;
		max-width: 100%;
		margin-right: 30px;
	}

	.ean-sticky .prices .button-products {
		background: #FED700;
		color: #000;
		position: absolute;
		left: 70px;
		top: 5px;
		font-size: 10px;
		padding: 1px 10px;
	}

	.ean-sticky .prices strong {
		margin: 5px 0 0;
		font-size: 14px;
		display: block;
		line-height: 1;
	}

	.ean-sticky .shop {
		width: auto;
	}

	/* Płynne chowanie paska, gdy sekcja cen jest w widoku */
	.ean-sticky.is-ready {
		transition: transform .25s ease, opacity .25s ease;
	}
	.ean-sticky.is-hidden {
		transform: translateY(100%);
		opacity: 0;
		pointer-events: none;
	}
}

