/**
 * Nekommerce Toolkit - Cf7 PopUps Styles (Estilo Motta)
 */

 .nt-modal-window {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 90%;
	max-width: 420px;
	transform: translate(-50%, -50%);
	background-color: #fff;
	margin: 0;
	padding: 32px !important;
	border-radius: var(--mt-border__radius);
	box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, .15);
	box-sizing: border-box;
}

.nt-modal-overlay {
	backdrop-filter: blur(1px);
}

.nt-modal-body {
	text-align: center;
}

.nt-modal-btn-submit {
	width: 100%;
}

/* Silencio Nuclear de avisos nativos de Contact Form 7 */
.wpcf7-response-output, 
.wpcf7-not-valid-tip, 
.wpcf7-spinner { 
	display: none !important; 
	visibility: hidden !important; 
}

/* Iconos de estado redondos e independientes */
.nt-icon { 
	width: 60px; 
	height: 60px; 
	margin: 10px auto 20px; 
	border-radius: 50%; 
	display: flex; 
	align-items: center; 
	justify-content: center; 
	font-size: 30px; 
}
.nt-icon-success { 
	background: #e8f5e9; 
	color: #2e7d32; 
}
.nt-icon-error { 
	background: #ffebee; 
	color: #c62828; 
}

/* ==========================================================================
   ANIMACIONES DE ENTRADA Y SALIDA UNIVERSALES (Estilo Motta)
   ========================================================================== */

/* 1. ESTADO DE SALIDA (Por defecto cuando el modal se cierra) */
.nt-modal-overlay:not(.modal--open) .nt-modal-window {
	animation: ZoomOut 0.15s forwards;
	transition: opacity 0.15s linear;
}

/* 2. ESTADO DE ENTRADA (Cuando el modal se abre activando la clase de Motta) */
.nt-modal-overlay.modal--open .nt-modal-window {
	animation: ZoomIn 0.15s forwards;
	transition: opacity 0.15s linear;
}

/* --- FOTOGRAMAS DE ENTRADA (De pequeño a tamaño real) --- */
@keyframes ZoomIn {
	0% {
		transform: translate(-50%, -50%) scale(0.5, 0.5);
		opacity: 0;
	}
	100% {
		transform: translate(-50%, -50%) scale(1, 1);
		opacity: 1;
	}
}

/* --- FOTOGRAMAS DE SALIDA (De tamaño real a encogerse) --- */
@keyframes ZoomOut {
	0% {
		transform: translate(-50%, -50%) scale(1, 1);
		opacity: 1;
	}
	100% {
		transform: translate(-50%, -50%) scale(0.5, 0.5);
		opacity: 0;
	}
}




/* Ajustes tipográficos específicos del Popup del Toolkit */
#nt-popup-title { 
	font-size: 22px; 
	text-transform: uppercase; 
	margin-bottom: 8px;
}
#nt-popup-msg { 
	margin-bottom: 24px; 
	font-size: 14px;
	line-height: 1.5;
}
#nt-popup-btn:active { 
	transform: scale(0.96); 
}


/**
 * Nekommerce Toolkit - Sticky Core Styles
 */
.neko-sticky.is-sticky {
	position: fixed !important;
	z-index: 999;
}

/* Margen superior dinámico si existe la barra de admin */
body.admin-bar .neko-sticky.is-sticky {
	top: 42px; 
}

/**
 * NT COUPONS UI
 * @since 1.0.7
 */
/* .nt-coupont-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 20px;
	margin-top: 25px;
}

.nt-coupon-card {
	background: #fff;
	border: 2px dashed #dadfe3;
	border-radius: 8px;
	padding: 20px;
	position: relative;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.nt-coupon-card:hover {
	border-color: #000;
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.nt-coupon-value {
	font-size: 24px;
	font-weight: 800;
	display: block;
	color: var(--mt-color__heading);
}

.nt-coupon-code {
	background: #f4f4f4;
	padding: 5px 12px;
	border-radius: var(--mt-border__radius);
	font-weight: 600;
	margin: 10px 0;
	display: inline-block;
	color: #555;
	border: 1px solid #eee;
	width: 100%;
}

.nt-coupon-expiry {
	font-size: 11px;
	text-transform: uppercase;
}

.nt-coupon-action {
	margin-top: 15px;
	letter-spacing: 1px;
	line-height: 40px !important;
}

.nt-coupon-description {
	font-size: 13px;
	color: #666;
	margin: 10px 0;
	line-height: 1.4;
	font-style: italic;
	max-width: 200px;
	text-align: center;
} */
