/* Estilos para el contador */
.sps-counter {
	text-align: center;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 10px;
	margin: 20px 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sps-countdown {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 15px;
}

.sps-time-unit {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 15px;
	background: #ffffff;
	border-radius: 8px;
	min-width: 80px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.sps-time-unit span {
	font-size: 2em;
	font-weight: bold;
	color: #333;
	line-height: 1;
}

.sps-time-unit label {
	font-size: 0.9em;
	color: #666;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 5px;
}

.sps-step-info {
	font-size: 1.1em;
	color: #555;
	font-weight: 500;
}

.sps-current-step {
	color: #007cba;
	font-weight: bold;
}

/* Estilos para la caja de precios */
.sps-price-box {
	text-align: center;
	padding: 30px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border-radius: 15px;
	margin: 20px 0;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.sps-price {
	font-size: 3em;
	font-weight: bold;
	margin-bottom: 15px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.sps-price-amount {
	color: #FFD700;
}

.sps-text {
	font-size: 1.3em;
	margin-bottom: 25px;
	line-height: 1.4;
}

.sps-button {
	display: inline-block;
	padding: 15px 30px;
	background: #FF6B6B;
	color: white;
	text-decoration: none;
	border-radius: 25px;
	font-weight: bold;
	font-size: 1.1em;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.sps-button:hover {
	background: #FF5252;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	color: white;
	text-decoration: none;
}

/* Estilos de error */
.sps-error {
	background: #ffebee;
	color: #c62828;
	padding: 15px;
	border-radius: 5px;
	border-left: 4px solid #c62828;
	margin: 10px 0;
}

/* Responsivo */
@media (max-width: 768px) {
	.sps-countdown {
		flex-wrap: wrap;
		gap: 10px;
	}
	
	.sps-time-unit {
		min-width: 70px;
		padding: 10px;
	}
	
	.sps-time-unit span {
		font-size: 1.5em;
	}
	
	.sps-price {
		font-size: 2.5em;
	}
	
	.sps-price-box {
		padding: 20px;
	}
}

@media (max-width: 480px) {
	.sps-countdown {
		flex-direction: column;
		align-items: center;
	}
	
	.sps-time-unit {
		width: 100%;
		max-width: 200px;
	}
}