/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

/* --- Banner de Consentimiento de Cookies --- */
.cookie-banner {
	position: fixed;
	bottom: 24px;
	right: 24px;
	max-width: 420px;
	width: calc(100% - 48px);
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.4);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	border-radius: 12px;
	padding: 20px;
	z-index: 99999;
	font-family: 'Roboto', 'Source Sans Pro', sans-serif;
	transform: translateY(120%);
	opacity: 0;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.cookie-banner.show {
	transform: translateY(0);
	opacity: 1;
}

.cookie-banner h4 {
	font-size: 1.1rem;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 8px;
	color: #1d3557;
}

.cookie-banner p {
	font-size: 0.9rem;
	line-height: 1.5;
	color: #4a5568;
	margin-bottom: 16px;
}

.cookie-banner-buttons {
	display: flex;
	gap: 12px;
	justify-content: flex-end;
}

.cookie-banner-btn {
	padding: 8px 16px;
	font-size: 0.85rem;
	font-weight: 500;
	border-radius: 6px;
	border: none;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

.cookie-banner-btn:active {
	transform: scale(0.97);
}

.cookie-banner-btn-accept {
	background-color: #1d3557;
	color: #ffffff;
}

.cookie-banner-btn-accept:hover {
	background-color: #11223b;
}

.cookie-banner-btn-reject {
	background-color: transparent;
	color: #4a5568;
	border: 1px solid #cbd5e0;
}

.cookie-banner-btn-reject:hover {
	background-color: rgba(0, 0, 0, 0.05);
	border-color: #a0aec0;
}

@media (max-width: 576px) {
	.cookie-banner {
		bottom: 16px;
		right: 16px;
		left: 16px;
		width: auto;
		max-width: none;
	}
	.cookie-banner-buttons {
		flex-direction: column;
	}
	.cookie-banner-btn {
		width: 100%;
		text-align: center;
	}
}

