/*
 * plg_content_xcartbundle
 * Zobrazení balíčku produktů (shortcode {xcartbundle ...}).
 * Typy: carousel (vodorovný pás), list (pod sebou), grid (mřížka).
 *
 * Barvy převzaty z palety webu (xart_frontend/less/config.less):
 *   @blue      #003579   – tmavě modrá (nadpisy, badge, cena)
 *   @lightblue #0077be   – světle modrá (tlačítka, odkazy = @color-link)
 */

.xcartbundle {
	margin: 1.5em 0;
	font-size: 15px;
	color: #6b6b6b;
}

.xcartbundle__title {
	font-size: 1.3em;
	font-weight: 700;
	text-transform: uppercase;
	color: #003579;
	margin: 0 0 .75em;
}

/* Rozložení: položky vlevo, CTA (cena + tlačítko) vpravo */
.xcartbundle__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 1.2em;
}

.xcartbundle__items {
	position: relative;
	flex: 1 1 320px;
	min-width: 0;
}

/* ---------- Karta produktu ---------- */
.xcartbundle__card {
	background: #fff;
	border: 1px solid #e1e8f0;
	border-radius: 8px;
	overflow: hidden;
	transition: box-shadow .2s ease, border-color .2s ease;
}

.xcartbundle__card:hover {
	border-color: #0077be;
	box-shadow: 0 4px 14px rgba(0, 53, 121, .12);
}

.xcartbundle__card-img {
	position: relative;
	display: block;
	padding: 16px 16px 6px;
	text-align: center;
}

.xcartbundle__card-img img {
	display: block;
	width: 100%;
	height: auto;
	margin: auto;
}

.xcartbundle__card-qty {
	position: absolute;
	top: 10px;
	left: 10px;
	background: #003579;
	color: #fff;
	font-weight: 700;
	font-size: 13px;
	line-height: 1;
	padding: .35em .6em;
	border-radius: 20px;
}

.xcartbundle__card-body {
	padding: .4em .9em 1em;
}

.xcartbundle__card-name {
	display: block;
	color: #003579 !important;
	text-decoration: none !important;
	font-weight: 600;
	font-size: 15px;
	line-height: 1.25;
	text-transform: uppercase;
	/* max 2 řádky */
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.xcartbundle__card-name:hover {
	color: #0077be !important;
}

/* ---------- CTA (cena balíčku + tlačítko) ---------- */
.xcartbundle__cta {
	flex: 0 0 230px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1em;
	padding: 1.3em 1.1em;
	background: #eef5fb;
	border: 1px solid #d4e3f1;
	border-radius: 8px;
	text-align: center;
}

.xcartbundle__total {
	display: flex;
	flex-direction: column;
	gap: .2em;
}

.xcartbundle__total-label {
	font-size: 12px;
	color: #6b6b6b;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.xcartbundle__total-price {
	font-size: 1.7em;
	font-weight: 700;
	line-height: 1.1;
	color: #003579;
}

.xcartbundle__form {
	margin: 0;
}

/* Tlačítko ve stylu webu: světle modrá pilulka, uppercase, bílý text */
.xcartbundle__btn {
	display: inline-block;
	width: 100%;
	padding: 0 22px;
	height: 46px;
	line-height: 46px;
	border: 0;
	background: #0077be;
	color: #fff !important;
	font-family: inherit;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	text-decoration: none !important;
	border-radius: 30px;
	cursor: pointer;
	transition: background .2s ease;
}

.xcartbundle__btn:hover {
	background: #005e96;
	color: #fff !important;
}

.xcartbundle__btn .icon-shopping-cart {
	margin-right: 6px;
}

/* ---------- TYP: carousel ---------- */
.xcartbundle--carousel .xcartbundle__track {
	display: flex;
	gap: 1em;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scroll-behavior: smooth;
	padding: 4px 4px 10px;
}

.xcartbundle--carousel .xcartbundle__card {
	flex: 0 0 190px;
	scroll-snap-align: start;
}

.xcartbundle__nav {
	position: absolute;
	top: 40%;
	transform: translateY(-50%);
	z-index: 3;
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 50%;
	background: #003579;
	color: #fff;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
	transition: background .2s ease;
}

.xcartbundle__nav:hover { background: #0077be; }
.xcartbundle__nav--prev { left: -12px; }
.xcartbundle__nav--next { right: -12px; }
.xcartbundle__nav[hidden] { display: none; }

.xcartbundle--list .xcartbundle__nav,
.xcartbundle--grid .xcartbundle__nav { display: none; }

/* ---------- TYP: list (pod sebou) ---------- */
.xcartbundle--list .xcartbundle__track {
	display: flex;
	flex-direction: column;
	gap: .7em;
}

.xcartbundle--list .xcartbundle__card {
	display: flex;
	align-items: center;
}

.xcartbundle--list .xcartbundle__card-img {
	flex: 0 0 110px;
	width: 110px;
	padding: 10px;
}

.xcartbundle--list .xcartbundle__card-body {
	flex: 1 1 auto;
	padding: .6em 1em;
}

.xcartbundle--list .xcartbundle__card-name {
	-webkit-line-clamp: 3;
}

/* ---------- TYP: grid (mřížka) ---------- */
.xcartbundle--grid .xcartbundle__track {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
	gap: 1em;
}

/* ---------- Chybová hláška (bootstrap selhání) ---------- */
.xcartbundle-error {
	padding: .6em 1em;
	background: #fff3cd;
	border: 1px solid #ffc107;
	border-radius: 4px;
	color: #856404;
	font-size: 14px;
}

/* ---------- Responzivita ---------- */
@media (max-width: 640px) {
	.xcartbundle__inner {
		flex-direction: column;
	}
	.xcartbundle__cta {
		flex: 1 1 auto;
	}
}
