/* ========================================
   CARTA ASTRAL - DISEÑO NEBULA V2
   Nuevo diseño moderno, centrado, sin fondo
   ======================================== */

:root {
	/* Colores principales */
	--color-primary: #7c3aed;
	--color-primary-light: #a855f7;
	--color-primary-dark: #6d28d9;
	--color-accent: #ec4899;
	--color-success: #10b981;

	/* Fondos - Transparente */
	--bg-main: transparent;
	--bg-secondary: rgba(255, 255, 255, 0.02);
	--bg-light: rgba(255, 255, 255, 0.05);

	/* Textos */
	--text-primary: #ffffff;
	--text-secondary: rgba(255, 255, 255, 0.8);
	--text-light: rgba(255, 255, 255, 0.6);

	/* Bordes */
	--border-color: rgba(255, 255, 255, 0.1);
	--border-light: rgba(255, 255, 255, 0.05);

	/* Sombras sutiles */
	--shadow-light: 0 4px 15px rgba(0, 0, 0, 0.1);
	--shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
	--shadow-large: 0 15px 40px rgba(0, 0, 0, 0.2);

	/* Transiciones */
	--transition-fast: 0.2s ease-out;
	--transition-normal: 0.4s ease-out;
	--transition-slow: 0.6s ease-out;
}

/* Reset y base */
* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

body.ac-nebula-page {
	background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
	color: var(--text-primary);
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	line-height: 1.6;
	min-height: 100vh;
	overflow-x: hidden;
}

/* Contenedor Nebula */
.ac-nebula-wizard {
	position: relative;
	width: 100%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
}

.ac-nebula-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 40% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
	pointer-events: none;
	z-index: 1;
	animation: float 20s ease-in-out infinite;
}

@keyframes float {

	0%,
	100% {
		opacity: 0.8;
	}

	50% {
		opacity: 1;
	}
}

.ac-nebula-container {
	position: relative;
	width: 100%;
	max-width: 650px;
	background: rgba(15, 23, 42, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 32px;
	padding: 60px 40px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(10px);
	z-index: 10;
	animation: containerSlideIn 0.6s ease-out;
}

@keyframes containerSlideIn {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Steps */
.ac-nebula-step {
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--transition-normal), visibility var(--transition-normal);
	pointer-events: none;
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
}

.ac-nebula-step.active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	position: relative;
	animation: stepFadeIn var(--transition-normal) ease-out;
}

@keyframes stepFadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Header de progreso */
.ac-nebula-header {
	text-align: center;
	margin-bottom: 40px;
}

.ac-nebula-progress {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--text-light);
}

.ac-progress-count {
	color: var(--color-primary-light);
	font-weight: 600;
	font-size: 12px;
}

.ac-progress-bar {
	width: 100%;
	height: 2px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 1px;
	overflow: hidden;
	margin-bottom: 20px;
}

.ac-progress-fill {
	height: 100%;
	background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
	border-radius: 1px;
	transition: width var(--transition-slow) ease-out;
	box-shadow: 0 0 15px var(--color-primary);
}

/* Contenido de pasos */
.ac-nebula-content {
	text-align: center;
	min-height: 300px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.ac-nebula-title {
	font-size: 36px;
	font-weight: 800;
	background: linear-gradient(135deg, #ffffff 0%, var(--color-primary-light) 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin: 0 0 16px 0;
	line-height: 1.2;
	letter-spacing: -0.5px;
}

.ac-nebula-subtitle {
	font-size: 16px;
	font-weight: 500;
	color: var(--text-secondary);
	margin: 0 0 32px 0;
	line-height: 1.5;
}

/* Opciones de género */
.ac-gender-options {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-bottom: 40px;
}

.ac-gender-item {
	padding: 28px 20px;
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	cursor: pointer;
	transition: all var(--transition-fast);
	background: rgba(255, 255, 255, 0.02);
	user-select: none;
	position: relative;
	overflow: hidden;
}

.ac-gender-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
	opacity: 0;
	transition: opacity var(--transition-fast);
	pointer-events: none;
}

.ac-gender-item:hover {
	border-color: rgba(124, 58, 237, 0.5);
	background: rgba(255, 255, 255, 0.03);
	transform: translateY(-4px);
	box-shadow: 0 8px 25px rgba(124, 58, 237, 0.2);
}

.ac-gender-item.active {
	border-color: var(--color-primary);
	background: rgba(124, 58, 237, 0.08);
	box-shadow: 0 8px 30px rgba(124, 58, 237, 0.3), inset 0 0 20px rgba(124, 58, 237, 0.05);
	transform: scale(1.02);
}

.ac-gender-item.active::before {
	opacity: 1;
}

.ac-gender-icon {
	font-size: 52px;
	margin-bottom: 14px;
	display: block;
	animation: iconPulse 0.6s ease-out;
}

@keyframes iconPulse {
	0% {
		transform: scale(0.8);
		opacity: 0;
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.ac-gender-label {
	font-size: 16px;
	font-weight: 700;
	color: var(--text-primary);
	letter-spacing: 0.3px;
}

/* Inputs */
.ac-input,
.ac-select,
.ac-date-inputs select {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 14px;
	font-size: 16px;
	font-family: inherit;
	transition: all var(--transition-fast);
	background: rgba(255, 255, 255, 0.03);
	color: var(--text-primary);
}

.ac-input::placeholder,
.ac-select::placeholder {
	color: var(--text-light);
}

.ac-input:hover,
.ac-select:hover,
.ac-date-inputs select:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.2);
}

.ac-input:focus,
.ac-select:focus,
.ac-date-inputs select:focus {
	outline: none;
	border-color: var(--color-primary);
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

/* Opciones Radio Personalizadas */
.ac-question-options {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 28px 0;
}

.ac-option-radio {
	display: flex;
	align-items: center;
	padding: 16px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 12px;
	cursor: pointer;
	transition: all var(--transition-fast);
	background: rgba(255, 255, 255, 0.02);
	user-select: none;
}

.ac-option-radio:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.25);
}

.ac-option-radio.active {
	background: rgba(124, 58, 237, 0.15);
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.ac-option-radio input[type="radio"],
.ac-option-radio input[type="checkbox"] {
	width: 20px;
	height: 20px;
	margin-right: 14px;
	cursor: pointer;
	accent-color: var(--color-primary);
}

.ac-option-radio span {
	font-size: 15px;
	color: var(--text-secondary);
	font-weight: 500;
	flex: 1;
}

.ac-option-radio input[type="radio"]:checked~span,
.ac-option-radio input[type="checkbox"]:checked~span {
	color: var(--color-primary-light);
	font-weight: 600;
}

.ac-date-inputs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-bottom: 32px;
}

/* Botones */
.ac-nebula-btn {
	width: 100%;
	padding: 16px 28px;
	border: none;
	border-radius: 14px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: all var(--transition-fast);
	text-transform: uppercase;
	letter-spacing: 0.8px;
	position: relative;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: #ffffff;
}

.ac-nebula-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.1);
	transition: left var(--transition-fast);
}

.ac-nebula-btn-primary {
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
	color: white !important;
	box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
	z-index: 1;
}

.ac-nebula-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(124, 58, 237, 0.5);
}

.ac-nebula-btn-primary:active {
	transform: translateY(-1px);
}

.ac-nebula-btn-primary:hover::before {
	left: 100%;
}

.ac-payment-btn,
.ac-payment-btn:disabled,
.ac-payment-btn:hover,
.ac-payment-btn:focus {
	color: #ffffff;
}

.ac-nebula-btn-secondary {
	background: rgba(255, 255, 255, 0.05);
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.1);
	z-index: 1;
}

.ac-nebula-btn-secondary:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(124, 58, 237, 0.5);
	transform: translateY(-2px);
}

/* ========================================
   BOTONES DE NAVEGACIÓN
   ======================================== */
.ac-nebula-buttons {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	margin-top: 32px;
}

.ac-nebula-btn-prev,
.ac-nebula-btn-next {
	flex: 1;
	min-width: 140px;
}

.ac-nebula-btn-prev {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #ffffff;
}

.ac-nebula-btn-prev:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.2);
}

/* ========================================
   SELECTORES DE FECHA Y HORA
   ======================================== */
.ac-date-selectors,
.ac-time-selectors {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 16px;
	margin: 24px 0;
}

.ac-date-group,
.ac-time-group,
.ac-input-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.ac-date-group label,
.ac-time-group label {
	font-size: 14px;
	color: var(--text-secondary);
	font-weight: 600;
}

/* ========================================
   TEXTO MOTIVACIONAL
   ======================================== */
.ac-motivational-text {
	text-align: center;
	margin: 24px 0;
	padding: 20px;
	background: rgba(124, 58, 237, 0.08);
	border-radius: 16px;
	border: 1px solid rgba(124, 58, 237, 0.15);
}

.ac-motivational-text p {
	font-size: 15px;
	color: var(--text-secondary);
	margin: 0;
	line-height: 1.6;
	font-style: italic;
}

.ac-nebula-description {
	font-size: 14px;
	color: var(--text-light);
	text-align: center;
	margin: 16px 0 24px;
	line-height: 1.6;
}

/* Aviso de privacidad */
.ac-privacy-notice {
	margin-top: 32px;
	padding: 16px;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 14px;
	border-left: 4px solid var(--color-primary);
	border: 1px solid rgba(124, 58, 237, 0.2);
}

.ac-privacy-notice p {
	font-size: 12px;
	color: var(--text-light);
	margin: 0;
	line-height: 1.6;
}

.ac-privacy-notice a {
	color: var(--color-primary-light);
	text-decoration: none;
	font-weight: 700;
	transition: all var(--transition-fast);
	border-bottom: 1px solid rgba(124, 58, 237, 0.3);
}

.ac-privacy-notice a:hover {
	color: #ffffff;
	border-bottom-color: var(--color-primary-light);
}

/* Sección motivadora intermedia */
.ac-motivational-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 60px 32px;
	text-align: center;
	min-height: 400px;
}

.ac-motivational-icon {
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: rgba(124, 58, 237, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 32px;
	font-size: 64px;
}

.ac-motivational-title {
	font-size: 28px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 16px;
	line-height: 1.3;
}

.ac-motivational-text {
	font-size: 16px;
	color: var(--text-secondary);
	margin-bottom: 32px;
	line-height: 1.6;
	max-width: 400px;
}

/* Sección de progreso circular */
.ac-progress-circle-section {
	padding: 40px 32px;
	text-align: center;
}

.ac-progress-circle {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: conic-gradient(var(--color-primary) 0deg, var(--color-primary) 158.4deg, rgba(255, 255, 255, 0.1) 158.4deg);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 32px;
	position: relative;
}

.ac-progress-circle::after {
	content: '44%';
	position: absolute;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: rgba(15, 23, 42, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	font-weight: 700;
	color: var(--color-primary);
}

/* Checkpoints */
.ac-checkpoints {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 24px;
}

.ac-checkpoint {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 12px;
	font-size: 14px;
	color: var(--text-secondary);
	transition: all var(--transition-fast);
}

.ac-checkpoint.completed {
	background: rgba(124, 58, 237, 0.1);
	color: var(--color-primary-light);
	font-weight: 600;
}

.ac-checkpoint::before {
	content: '○';
	font-size: 20px;
	color: var(--text-light);
	flex-shrink: 0;
}

.ac-checkpoint.completed::before {
	content: '✓';
	color: var(--color-success);
	font-weight: 700;
}

/* Sección de email */
.ac-email-section {
	padding: 40px 32px;
}

.ac-email-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 8px;
}

.ac-email-subtitle {
	font-size: 16px;
	color: var(--text-secondary);
	margin-bottom: 28px;
}

.ac-email-input {
	width: 100%;
	padding: 14px 16px;
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	font-size: 16px;
	margin-bottom: 16px;
	transition: all var(--transition-fast);
	background: rgba(255, 255, 255, 0.03);
	color: var(--text-primary);
}

.ac-email-input::placeholder {
	color: var(--text-light);
}

.ac-email-input:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
	background: rgba(255, 255, 255, 0.05);
}

/* Sección de oferta */
.ac-offer-section {
	padding: 40px 32px;
}

.ac-timer-banner {
	background: rgba(124, 58, 237, 0.1);
	padding: 20px;
	border-radius: 14px;
	margin-bottom: 32px;
	border: 1px solid rgba(124, 58, 237, 0.3);
	text-align: center;
}

.ac-timer-label {
	font-size: 12px;
	color: var(--text-secondary);
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.ac-timer-value {
	font-size: 36px;
	font-weight: 700;
	color: var(--color-primary-light);
	font-family: 'Monaco', 'Courier New', monospace;
	letter-spacing: 2px;
}

.ac-timer-units {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin-top: 8px;
	font-size: 11px;
	color: var(--text-light);
}

.ac-offer-title {
	font-size: 22px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 8px;
}

.ac-offer-subtitle {
	font-size: 14px;
	color: var(--text-secondary);
	margin-bottom: 20px;
}

.ac-offer-items {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 24px;
}

.ac-offer-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 14px;
	color: var(--text-secondary);
}

.ac-offer-item::before {
	content: '✓';
	color: var(--color-success);
	font-weight: 700;
	font-size: 16px;
	flex-shrink: 0;
}

.ac-offer-pricing {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 14px;
	margin-bottom: 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.ac-offer-label {
	font-size: 14px;
	color: var(--text-secondary);
}

.ac-offer-price {
	font-size: 28px;
	font-weight: 700;
	color: var(--color-accent);
}

.ac-offer-terms {
	font-size: 11px;
	color: var(--text-light);
	margin-top: 16px;
	line-height: 1.5;
}

.ac-offer-terms a {
	color: var(--color-primary-light);
	text-decoration: none;
	font-weight: 600;
}

.ac-security-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 12px;
	color: var(--text-secondary);
	margin-top: 16px;
}

.ac-security-badge::before {
	content: '🔒';
	font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
	.ac-nebula-container {
		max-width: 100%;
		border-radius: 20px;
		padding: 50px 30px;
	}

	.ac-nebula-title {
		font-size: 32px;
	}

	.ac-nebula-subtitle {
		font-size: 15px;
	}

	.ac-gender-options {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.ac-date-inputs {
		grid-template-columns: repeat(2, 1fr);
	}

	.ac-motivational-section {
		padding: 40px 30px;
	}

	.ac-motivational-icon {
		width: 140px;
		height: 140px;
		font-size: 56px;
	}

	.ac-progress-circle {
		width: 180px;
		height: 180px;
	}

	.ac-progress-circle::after {
		width: 160px;
		height: 160px;
	}

	.ac-nebula-btn {
		padding: 14px 24px;
		font-size: 15px;
	}
}

@media (max-width: 600px) {
	body.ac-nebula-page {
		padding: 0;
	}

	.ac-nebula-wizard {
		padding: 20px 0;
		min-height: auto;
	}

	.ac-nebula-container {
		max-width: 100%;
		width: 100%;
		border-radius: 24px 24px 0 0;
		padding: 40px 24px;
		box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
		margin: 20px 0 0 0;
	}

	.ac-nebula-content {
		min-height: auto;
	}

	.ac-nebula-title {
		font-size: 26px;
	}

	.ac-nebula-subtitle {
		font-size: 14px;
	}

	.ac-gender-options {
		grid-template-columns: 1fr;
		gap: 14px;
		margin-bottom: 32px;
	}

	.ac-gender-item {
		padding: 24px 18px;
	}

	.ac-gender-icon {
		font-size: 44px;
	}

	.ac-gender-label {
		font-size: 15px;
	}

	.ac-date-inputs {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.ac-input,
	.ac-select {
		padding: 12px 14px;
		font-size: 15px;
	}

	.ac-nebula-btn {
		padding: 14px 20px;
		font-size: 14px;
		letter-spacing: 0.5px;
	}

	.ac-motivational-section {
		padding: 40px 24px;
		min-height: 300px;
	}

	.ac-motivational-icon {
		width: 120px;
		height: 120px;
		font-size: 48px;
	}

	.ac-motivational-title {
		font-size: 24px;
	}

	.ac-motivational-text {
		font-size: 14px;
	}

	.ac-progress-circle {
		width: 160px;
		height: 160px;
	}

	.ac-progress-circle::after {
		width: 140px;
		height: 140px;
		font-size: 28px;
	}

	.ac-offer-section {
		padding: 32px 24px;
	}

	.ac-timer-banner {
		padding: 16px;
	}

	.ac-timer-value {
		font-size: 32px;
	}

	.ac-offer-title {
		font-size: 20px;
	}

	.ac-offer-items {
		margin-bottom: 20px;
	}

	.ac-offer-item {
		font-size: 13px;
	}

	.ac-offer-pricing {
		padding: 16px;
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.ac-offer-price {
		font-size: 24px;
	}

	.ac-privacy-notice {
		padding: 12px;
		font-size: 11px;
		margin-top: 24px;
	}
}

@media (max-width: 400px) {
	.ac-nebula-container {
		padding: 30px 18px;
	}

	.ac-nebula-title {
		font-size: 22px;
	}

	.ac-nebula-subtitle {
		font-size: 13px;
	}

	.ac-gender-item {
		padding: 20px 14px;
	}

	.ac-gender-icon {
		font-size: 40px;
		margin-bottom: 8px;
	}

	.ac-gender-label {
		font-size: 14px;
	}

	.ac-nebula-btn {
		padding: 12px 16px;
		font-size: 13px;
	}
}

/* ============================================
   CUSTOM SELECT — Compatible con Windows
   Reemplaza el <select> nativo cuya lista
   nativa aparece en blanco en Windows/Chrome.
   ============================================ */

/* Ocultar el <select> nativo pero mantenerlo en el DOM */
.ac-custom-select-native {
	position: absolute !important;
	left: -9999px !important;
	top: auto !important;
	width: 1px !important;
	height: 1px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	opacity: 0 !important;
	pointer-events: none !important;
	appearance: none !important;
}

.ac-date-selectors,
.ac-time-selectors,
.ac-date-group,
.ac-time-group {
	position: relative;
	z-index: 9000;
}

/* Contenedor principal */
.ac-custom-select {
	position: relative;
	width: 100%;
	z-index: 9100;
}

.ac-custom-select.open {
	z-index: 9500;
}

/* Botón disparador visible */
.ac-custom-select-trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 14px 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 14px;
	font-size: 16px;
	font-family: inherit;
	background: rgba(255, 255, 255, 0.03);
	color: var(--text-primary, #e2e8f0);
	cursor: pointer;
	transition: all 0.2s ease;
	user-select: none;
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}

.ac-custom-select-trigger:hover {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.2);
}

.ac-custom-select.open .ac-custom-select-trigger {
	border-color: var(--color-primary, #7c3aed);
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

.ac-custom-select-label {
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* Flecha SVG */
.ac-custom-select-arrow {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	margin-left: 8px;
	opacity: 0.7;
	transition: transform 0.2s ease;
}

.ac-custom-select.open .ac-custom-select-arrow {
	transform: rotate(180deg);
}

/* Lista desplegable — totalmente custom, sin renderizado nativo */
.ac-custom-select-dropdown {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	right: 0;
	background: #1a1034;
	border: 1px solid rgba(124, 58, 237, 0.45);
	border-radius: 12px;
	max-height: 220px;
	overflow-y: auto;
	z-index: 9900;
	display: none;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
	scrollbar-width: thin;
	scrollbar-color: rgba(124, 58, 237, 0.4) transparent;
}

.ac-custom-select-dropdown::-webkit-scrollbar {
	width: 6px;
}

.ac-custom-select-dropdown::-webkit-scrollbar-track {
	background: transparent;
}

.ac-custom-select-dropdown::-webkit-scrollbar-thumb {
	background: rgba(124, 58, 237, 0.4);
	border-radius: 3px;
}

.ac-custom-select.open .ac-custom-select-dropdown {
	display: block;
	animation: acDropIn 0.15s ease;
}

@keyframes acDropIn {
	from {
		opacity: 0;
		transform: translateY(-6px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Opciones individuales */
.ac-custom-select-option {
	padding: 11px 16px;
	color: #e2e8f0;
	cursor: pointer;
	font-size: 15px;
	transition: background 0.12s;
	line-height: 1.4;
}

.ac-custom-select-option:first-child {
	border-radius: 12px 12px 0 0;
}

.ac-custom-select-option:last-child {
	border-radius: 0 0 12px 12px;
}

.ac-custom-select-option:hover,
.ac-custom-select-option.focused {
	background: rgba(124, 58, 237, 0.28);
	color: #fff;
}

.ac-custom-select-option.selected {
	background: rgba(124, 58, 237, 0.4);
	color: #fff;
	font-weight: 600;
}

.ac-custom-select-option.placeholder-opt {
	color: rgba(255, 255, 255, 0.38);
}

/* Responsive — mantener tamaño mínimo táctil */
@media (max-width: 480px) {
	.ac-custom-select-option {
		padding: 13px 16px;
		font-size: 16px;
	}
}