.tvb {
	font-family: 'Inter', sans-serif;
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #ededed;
	border-radius: 16px;
	padding: 1.75rem;
	width: 100%;
	margin-inline: auto;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.tvb__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #f0f0f0;
}

.tvb__header-left {
	display: flex;
	flex-direction: column;
	gap: 1px;
}

.tvb__label {
	display: block;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--tv-cyan);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 0;
}

.tvb__min-price {
	font-family: 'Archivo Black', sans-serif;
	font-size: 1.35rem;
	color: #bf7839;
}

.tvb__badge {
	background: rgba(191, 120, 57, 0.1);
	color: #bf7839;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 6px 12px;
	border-radius: 20px;
	white-space: nowrap;
}

.tvb__section {
	margin-bottom: 1.25rem;
}

.tvb__section-title {
	display: block;
	font-size: 0.8rem;
	font-weight: 700;
	color: #333;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 0.6rem;
}

.tvb__dates,
.tvb__hours {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.tvb__hour-btn {
	gap: 6px;
}

.tvb__date-pill,
.tvb__hour-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #f5f5f5;
	border: 2px solid transparent;
	border-radius: 10px;
	padding: 10px 16px;
	min-height: 44px;
	line-height: 1;
	font-size: 0.82rem;
	font-weight: 600;
	color: #444;
	cursor: pointer;
	transition: all 0.2s ease;
}

.tvb__date-pill:hover,
.tvb__hour-btn:hover {
	background: #ede7d9;
	border-color: #d4b896;
}

.tvb__date-pill--active,
.tvb__hour-btn--active {
	background: #d6d98f;
	color: #111;
	border-color: #d6d98f;
}

.tvb__hour-btn::before {
	content: '';
	width: 14px;
	height: 14px;
	border: 2px solid currentColor;
	border-radius: 50%;
	flex-shrink: 0;
	opacity: 0.65;
}

.tvb__hour-btn--active::before {
	background: currentColor;
	box-shadow: inset 0 0 0 2px #fff;
	opacity: 1;
}

.tvb__tickets {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 1.25rem;
}

.tvb__ticket {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fcfcf9;
	border: 1px solid #ededed;
	border-radius: 12px;
	padding: 1rem 1.25rem;
	transition: border-color 0.2s;
}

.tvb__ticket:hover {
	border-color: #d4b896;
}

.tvb__ticket-info {
	flex: 1;
}

.tvb__ticket-name {
	display: block;
	font-weight: 800;
	font-size: 0.9rem;
	color: #111;
	text-transform: uppercase;
	margin-bottom: 2px;
}

.tvb__ticket-price {
	display: block;
	color: #bf7839;
	font-weight: 700;
	font-size: 0.85rem;
}

.tvb__qty {
	display: flex;
	align-items: center;
	background: #d6d98f;
	border-radius: 8px;
	padding: 4px 6px;
	gap: 6px;
}

.tvb__qty-btn {
	background: transparent;
	border: none;
	font-size: 1.15rem;
	color: #555;
	cursor: pointer;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	transition: background 0.15s;
}

.tvb__qty-btn:hover {
	background: rgba(0, 0, 0, 0.08);
	color: #111;
}

.tvb__qty-val {
	width: 28px;
	text-align: center;
	background: transparent;
	border: none;
	font-weight: 700;
	font-size: 0.95rem;
	color: #111;
	-moz-appearance: textfield;
	appearance: textfield;
}

.tvb__qty-val::-webkit-outer-spin-button,
.tvb__qty-val::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

.tvb__buy {
	width: auto !important;
	display: inline-flex !important;
	margin-inline: auto !important;
	align-self: center;
	justify-content: center !important;
	text-align: center;
	min-width: 190px;
}

.tvb__buy-icon {
	font-size: 20px;
	line-height: 1;
}

.tvb__buy:disabled {
	opacity: 0.45;
	cursor: not-allowed;
	box-shadow: none;
}

.tvb__buy--loading {
	display: inline-flex !important;
	justify-content: center !important;
	opacity: 0.7;
	cursor: wait;
}

.tvb__buy--success {
	display: inline-flex !important;
	justify-content: center !important;
	background: #4caf50 !important;
	color: #fff !important;
	opacity: 1 !important;
}

.tvb__feedback {
	text-align: center;
	font-size: 0.8rem;
	margin-top: 0.5rem;
	min-height: 1.2em;
}

.tvb__feedback--error {
	color: #d32f2f;
}

.tvb__feedback--ok {
	color: #4caf50;
}

@media (max-width: 640px) {
	.tvb {
		padding: 1.25rem;
	}

	.tvb__date-pill,
	.tvb__hour-btn {
		min-height: 42px;
		padding-inline: 12px;
	}

	.tvb__ticket {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
	}

	.tvb__qty {
		align-self: flex-end;
	}
}
