/**
 * VeniDesign Toolkit — Product Showcase ([vdt_showcase])
 * Listy Nowości / Bestsellery / Promocje jedna pod drugą, peek-karuzele.
 */

.vdt-shc { font-family: Inter, system-ui, sans-serif; color: #1d2917; }

/* ── Nagłówek sekcji ── */
.vdt-shc__head { margin-bottom: 10px; }
.vdt-shc__kicker {
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--theme-palette-color-2, #3FA744);
	margin-bottom: 10px;
}
.vdt-shc__title {
	font-size: clamp(26px, 3vw, 38px);
	font-weight: 600;
	line-height: 1.08;
	margin: 0;
}

/* ── Podsekcje (jedna pod drugą) ── */
.vdt-shc__group { margin-top: 34px; }
.vdt-shc__sub {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 16px;
}
.vdt-shc__sub-title {
	font-size: clamp(19px, 2vw, 24px);
	font-weight: 700;
	line-height: 1.1;
	margin: 0;
}
.vdt-shc__more-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 44px;
	font: 700 13.5px Inter, sans-serif;
	color: #16361b;
	text-decoration: none;
	transition: color .2s;
}
.vdt-shc__more-link:hover { color: var(--theme-palette-color-2, #3FA744); }
.vdt-shc__more-link:focus-visible { outline: 2px solid #f98d00; outline-offset: 2px; }

/* ── Peek-karuzela ── */
.vdt-shc__viewport { position: relative; }
.vdt-shc__track {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x proximity;
	scroll-behavior: smooth;
	padding: 4px 4px 10px;
	scrollbar-width: none;
}
.vdt-shc__track::-webkit-scrollbar { display: none; }
.vdt-shc__track:focus-visible { outline: 2px solid #f98d00; outline-offset: -2px; }
@media (prefers-reduced-motion: reduce) {
	.vdt-shc__track { scroll-behavior: auto; }
}

/* Peek: karty ucięte na krawędzi — niecałkowita liczba w kadrze */
.vdt-shc__card {
	flex: 0 0 calc((100% - 58px) / 4.6);
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--theme-palette-color-5, #e6e4d6);
	border-radius: 12px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: transform .3s, box-shadow .3s;
}
@media (max-width: 1023px) {
	.vdt-shc__card { flex-basis: calc((100% - 34px) / 3.2); }
}
@media (max-width: 639px) {
	.vdt-shc__card { flex-basis: calc((100% - 12px) / 1.6); }
}
.vdt-shc__card:hover {
	transform: translateY(-5px);
	box-shadow: 0 26px 44px -24px rgba(29, 41, 23, .5);
}
@media (prefers-reduced-motion: reduce) {
	.vdt-shc__card, .vdt-shc__card:hover { transform: none; transition: none; }
}
.vdt-shc__card:focus-visible { outline: 2px solid #f98d00; outline-offset: 2px; }

.vdt-shc__media {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	background: #f4f3ee;
	overflow: hidden;
}
.vdt-shc__img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Badge'e — łączą się: promocyjny nad badge'em listy */
.vdt-shc__badges {
	position: absolute;
	top: 12px;
	left: 12px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
}
.vdt-shc__badge {
	font: 800 11px Inter, sans-serif;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: #fff;
	padding: 5px 10px;
	border-radius: 5px;
}
.vdt-shc__badge--new  { background: #2e7d33; }
.vdt-shc__badge--best { background: #16361b; }
.vdt-shc__badge--sale { background: #c73826; font-size: 13px; }

.vdt-shc__body {
	display: flex;
	flex-direction: column;
	gap: 3px;
	padding: 14px 16px 16px;
	flex: 1;
}
.vdt-shc__brand { font: 700 12px Inter, sans-serif; letter-spacing: .02em; color: #6b6357; }
.vdt-shc__name {
	font: 700 15.5px Inter, sans-serif;
	line-height: 1.3;
	color: #1d2917;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 40px;
}
.vdt-shc__price {
	display: flex;
	align-items: baseline;
	gap: 7px;
	flex-wrap: wrap;
	margin-top: auto;
	padding-top: 10px;
}
.vdt-shc__now { font: 900 19px Inter, sans-serif; letter-spacing: -.01em; color: #1d2917; }
.vdt-shc__card--sale .vdt-shc__now { color: #c73826; }
.vdt-shc__unit { font: 500 12px Inter, sans-serif; font-style: normal; color: #6b6357; }
.vdt-shc__reg { font: 600 14px Inter, sans-serif; color: #7a715f; }
.vdt-shc__omnibus { font: 500 11.5px Inter, sans-serif; color: #6b6357; }

/* ── Strzałki ── */
.vdt-shc__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--theme-palette-color-5, #e6e4d6);
	border-radius: 999px;
	background: #fff;
	color: #1d2917;
	cursor: pointer;
	box-shadow: 0 10px 22px -12px rgba(29, 41, 23, .45);
	transition: background .2s, opacity .2s;
	z-index: 2;
}
.vdt-shc__arrow--prev { left: -10px; }
.vdt-shc__arrow--next { right: -10px; }
.vdt-shc__arrow:hover { background: var(--theme-palette-color-6, #eef1e6); }
.vdt-shc__arrow:focus-visible { outline: 2px solid #f98d00; outline-offset: 2px; }
.vdt-shc__arrow[disabled] { opacity: 0; pointer-events: none; }
@media (max-width: 639px) {
	.vdt-shc__arrow { display: none; } /* mobile: przewijanie palcem */
}
