/* Tickelsa — Modal de límite de tickets */
.tcsc-cl-overlay{
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.65);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 2147483647; /* siempre encima del modal de Tickera */
	padding: 16px;
}
.tcsc-cl-overlay.is-open{ display: flex; }
body.tcsc-cl-modal-open{ overflow: hidden; }

.tcsc-cl-box{
	background: #fff;
	border-radius: 10px;
	max-width: 460px;
	width: 100%;
	padding: 28px 24px 24px;
	box-shadow: 0 12px 40px rgba(0,0,0,0.35);
	text-align: center;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	animation: tcscClPop .18s ease-out;
}
@keyframes tcscClPop {
	from { transform: scale(.92); opacity: 0; }
	to   { transform: scale(1); opacity: 1; }
}

.tcsc-cl-icon{
	font-size: 42px;
	line-height: 1;
	margin-bottom: 8px;
}
.tcsc-cl-title{
	margin: 0 0 8px;
	font-size: 20px;
	color: #b32d2e;
	font-weight: 700;
}
.tcsc-cl-msg{
	margin: 0 0 14px;
	color: #1f1f1f;
	font-size: 14px;
	line-height: 1.5;
}
.tcsc-cl-counts{
	margin: 8px 0 18px;
	font-size: 28px;
	font-weight: 700;
	color: #3c1d1d;
	letter-spacing: .02em;
}
.tcsc-cl-counts .tcsc-cl-current{ color: #b32d2e; }
.tcsc-cl-counts .tcsc-cl-max{ color: #646970; }

.tcsc-cl-actions{
	display: flex;
	gap: 10px;
	justify-content: center;
	flex-wrap: wrap;
}
.tcsc-cl-btn{
	display: inline-block;
	padding: 11px 20px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: opacity .15s ease;
	font-family: inherit;
}
.tcsc-cl-btn:hover{ opacity: .9; text-decoration: none; }
.tcsc-cl-btn-primary{
	background: #ff9800;
	color: #fff;
}
.tcsc-cl-btn-ghost{
	background: #f0f0f0;
	color: #1f1f1f;
}

/* Estado visual de botones bloqueados */
.tcsc-blocked-by-limit{
	opacity: .55 !important;
	cursor: not-allowed !important;
	filter: grayscale(.4);
}
