/* WebziVende+ — botón flotante y ventana emergente de aviso de cookies.
 * Se carga en TODO el sitio (no solo en páginas del marketplace) y usa
 * position: fixed para quedar siempre visible mientras se navega. */

.wvp-cookie-widget {
	position: fixed;
	bottom: 22px;
	z-index: 999999;
	font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.wvp-cookie-pos-derecha { right: 22px; }
.wvp-cookie-pos-izquierda { left: 22px; }

.wvp-cookie-fab {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	border: 3px solid #E8C97A;
	background: #2FA854;
	background: linear-gradient(145deg, #2FA854 0%, #146B36 100%);
	color: #fff;
	font-size: 26px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 18px rgba(14, 67, 38, .35);
	animation: wvp-cookie-float 2.6s ease-in-out infinite;
	padding: 0;
	line-height: 1;
}
.wvp-cookie-fab:hover { animation-play-state: paused; transform: translateY(-2px); }

@keyframes wvp-cookie-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-6px); }
}

.wvp-cookie-popup {
	display: none;
	position: absolute;
	bottom: 72px;
	width: 320px;
	max-width: calc(100vw - 40px);
	background: #fff;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 12px 32px rgba(0,0,0,.22);
	border-top: 4px solid #2FA854;
}
.wvp-cookie-pos-derecha .wvp-cookie-popup { right: 0; }
.wvp-cookie-pos-izquierda .wvp-cookie-popup { left: 0; }

.wvp-cookie-widget.wvp-cookie-open .wvp-cookie-popup { display: block; }

.wvp-cookie-popup h3 {
	margin: 0 0 10px;
	font-size: 16px;
	color: #16241C;
}
.wvp-cookie-popup p {
	margin: 0 0 12px;
	font-size: 13px;
	line-height: 1.5;
	color: #4B5A50;
}
.wvp-cookie-popup a { color: #146B36; }

.wvp-cookie-close {
	position: absolute;
	top: 10px;
	right: 12px;
	background: none;
	border: none;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	color: #8B9A90;
	padding: 4px;
}
.wvp-cookie-close:hover { color: #16241C; }

.wvp-cookie-actions {
	display: flex;
	gap: 8px;
	justify-content: flex-end;
}

/* Estilos de botón propios (independientes de webzivende.css, ya que
 * este archivo se carga en TODO el sitio y esa hoja no siempre está
 * presente fuera de las páginas del marketplace). */
.wvp-cookie-actions .wvp-btn {
	display: inline-block;
	padding: 8px 16px;
	font-size: 13px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: 600;
	cursor: pointer;
	border: 1px solid transparent;
}
.wvp-cookie-actions .wvp-btn-primary { background: #2FA854; color: #fff; }
.wvp-cookie-actions .wvp-btn-primary:hover { background: #146B36; }
.wvp-cookie-actions .wvp-btn-outline {
	background: #fff;
	color: #146B36;
	border-color: #146B36;
}
.wvp-cookie-actions .wvp-btn-outline:hover { background: #E8F7EC; }

@media (max-width: 480px) {
	.wvp-cookie-widget { bottom: 14px; }
	.wvp-cookie-pos-derecha { right: 14px; }
	.wvp-cookie-pos-izquierda { left: 14px; }
	.wvp-cookie-popup { width: calc(100vw - 28px); }
}
