/**
 * Custom checkout — product-page term boxes (feature flag
 * vvs_checkout_product_boxes). BEM, prefix vvs-.
 *
 * Vzhled dle předlohy zadani/Kurz_novy_vzhled2.jpg: bílá karta se zeleným
 * proužkem nahoře, řádky label/hodnota oddělené linkami, spodní zelený
 * CTA panel s tlačítkem do pokladny.
 */

.vvs-course-boxes {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin: 24px 0;
}

.vvs-course-box {
	background: #fff;
	border: 1px solid #e6e8ea;
	border-top: 3px solid #8bc53f;
	border-radius: 12px;
	padding: 6px 24px 24px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

/* --- řádky ---------------------------------------------------------------- */

.vvs-course-box__rows {
	display: flex;
	flex-direction: column;
}

.vvs-course-box__row {
	display: grid;
	grid-template-columns: minmax(140px, 34%) 1fr;
	gap: 8px 24px;
	align-items: baseline;
	padding: 14px 0;
	border-bottom: 1px solid #eef0f1;
}

.vvs-course-box__row:last-child {
	border-bottom: 0;
}

.vvs-course-box__label {
	color: #6b7280;
	font-size: 0.95rem;
	line-height: 1.4;
}

.vvs-course-box__value {
	font-weight: 700;
	line-height: 1.4;
	color: #1d2327;
}

.vvs-course-box__value--accent {
	color: #6ba32a;
}

.vvs-course-box__value a {
	color: inherit;
	text-decoration: underline;
}

/* --- spodní CTA panel ----------------------------------------------------- */

.vvs-course-box__cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px 24px;
	margin-top: 20px;
	padding: 16px 20px;
	background: #f4f8ee;
	border-left: 4px solid #8bc53f;
	border-radius: 6px;
}

.vvs-course-box__cta-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
	flex: 1 1 260px;
	min-width: 0;
}

.vvs-course-box__cta-title {
	font-weight: 700;
	color: #1d2327;
}

.vvs-course-box__cta-note {
	font-size: 0.9rem;
	line-height: 1.45;
	color: #5b6470;
}

.vvs-course-box__button {
	display: inline-block;
	flex: 0 0 auto;
	padding: 12px 26px;
	border: 1px solid #1d2327;
	border-radius: 6px;
	background: #fff;
	color: #1d2327;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.vvs-course-box__button:hover,
.vvs-course-box__button:focus {
	background: #1d2327;
	color: #fff;
	text-decoration: none;
}

.vvs-course-boxes__empty {
	font-style: italic;
	opacity: 0.8;
}

/* --- mobil ---------------------------------------------------------------- */

@media (max-width: 600px) {
	.vvs-course-box {
		padding: 6px 16px 16px;
	}

	.vvs-course-box__row {
		grid-template-columns: 1fr;
		gap: 2px;
	}

	.vvs-course-box__cta {
		align-items: stretch;
	}

	.vvs-course-box__button {
		width: 100%;
	}
}
