/*
 Theme Name:   Eventicity Child Theme
 Theme URI:    https://eventicity.themerex.net
 Description:  Eventicity Child Theme
 Author:       ThemeREX
 Author URI:   https://themerex.net/
 Template:     eventicity
 Version:      1.0.0    
 Tags:         celebration, event, event planner, event theme, invitation, venue, wedding, wedding planner, party, events calendar, catering, conference, birthday party, event agency, party planning
 Text Domain:  eventicity
*/


/* =Theme customization starts here
------------------------------------------------------------ */

/* Popup Código Postal */
.popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(8px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
}
.popup-overlay.active {
	opacity: 1;
	visibility: visible;
}
.popup-content {
	background: #fff;
	padding: 36px 32px 28px;
	border-radius: 12px;
	text-align: center;
	width: 90%;
	max-width: 360px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}
.popup-content::before {
	content: '📍';
	display: block;
	font-size: 28px;
	margin-bottom: 10px;
}
.popup-content h2 {
	margin: 0 0 6px;
	font-size: 15px;
	font-weight: 600;
	color: #333;
	letter-spacing: 0.3px;
}
.popup-content .popup-subtitle {
	font-size: 12.5px;
	color: #888;
	margin-bottom: 20px;
	line-height: 1.4;
}
.popup-content input {
	width: 100%;
	padding: 11px 14px;
	margin-bottom: 14px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 14px;
	text-align: center;
	letter-spacing: 1.5px;
	transition: border-color 0.2s;
	box-sizing: border-box;
}
.popup-content input:focus {
	border-color: #F6B255;
	outline: none;
	box-shadow: 0 0 0 3px rgba(246, 178, 85, 0.15);
}
#btn-enviar-codigo-postal {
	background-color: #F6B255;
	color: #333;
	border: none;
	padding: 11px 20px;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	border-radius: 6px;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: background 0.3s ease;
}
#btn-enviar-codigo-postal:hover {
	background-color: #e5a145;
}
#btn-enviar-codigo-postal .spinner {
	display: none;
	width: 16px;
	height: 16px;
	border: 2px solid #333;
	border-top: 2px solid transparent;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin-left: 8px;
}
@keyframes spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}