/* =========================================================
 * Footer Wellpro — negro con acentos naranja.
 * Bloque superior: gráfica W + marca + menú + información.
 * Product Tags (nube de categorías) + barra de copyright.
 * ========================================================= */

.oz-footer {
	--oz-f-bg:        #0a0a0a;
	--oz-f-bottom:    #161616;
	--oz-f-text:      #cfcfcf;
	--oz-f-text-soft: #9a9a9a;
	--oz-f-white:     #ffffff;
	--oz-f-orange:    #f15a00;
	--oz-f-border:    rgba(255, 255, 255, .08);

	position: relative;
	overflow: hidden;
	background: var(--oz-f-bg);
	color: var(--oz-f-text);
	font-family: var(--OZ-Font-Base, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif);
	font-size: 14px;
	line-height: 1.6;
}

.oz-footer * { box-sizing: border-box; }
.oz-footer ul { list-style: none; margin: 0; padding: 0; }
.oz-footer a { color: inherit; text-decoration: none; transition: color .2s ease; }
.oz-footer a:hover { color: var(--oz-f-orange); }

.oz-footer__container {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 56px 24px 40px;
}

/* ---- Gráfica decorativa "W" (izquierda) ---- */
.oz-footer__deco {
	position: absolute;
	top: 50%;
	left: -40px;
	transform: translateY(-50%);
	width: 620px;
	max-width: 45%;
	height: 88%;
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
	opacity: .85;
	pointer-events: none;
	z-index: 0;
}

/* =========================================================
 *  Bloque superior
 * ========================================================= */
.oz-footer__top {
	display: grid;
	grid-template-columns: 1.5fr 0.8fr 1.1fr;
	gap: 40px;
	align-items: start;
	/* deja espacio a la gráfica W de la izquierda */
	padding-left: clamp(0px, 18vw, 300px);
}

/* ---- Marca ---- */
.oz-footer__logo { margin-bottom: 18px; }
.oz-footer__logo img {
	height: 54px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
}
.oz-footer__logo-text {
	font-size: 1.6rem;
	font-weight: 800;
	color: var(--oz-f-white);
}
.oz-footer__about {
	margin: 0;
	max-width: 420px;
	color: var(--oz-f-text);
	font-size: 13.5px;
	line-height: 1.75;
	text-align: justify;
}

/* ---- Títulos de columna ---- */
.oz-footer__title {
	margin: 0 0 18px;
	color: var(--oz-f-white);
	font-size: 18px;
	font-weight: 800;
	letter-spacing: .02em;
}

/* ---- Menú (viñetas naranjas con chevron) ---- */
.oz-footer__menu-list { display: flex; flex-direction: column; gap: 12px; }
.oz-footer__menu-list li { margin: 0; }
.oz-footer__menu-list a {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--oz-f-text);
	font-size: 14.5px;
}
.oz-footer__menu-list a::before {
	content: "";
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: var(--oz-f-orange);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 6 15 12 9 18'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 11px 11px;
	transition: transform .2s ease;
}
.oz-footer__menu-list a:hover { color: var(--oz-f-white); }
.oz-footer__menu-list a:hover::before { transform: translateX(2px); }

/* ---- Información ---- */
.oz-footer__info { display: flex; flex-direction: column; gap: 16px; }
.oz-footer__info-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}
.oz-footer__info-icon {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	margin-top: 2px;
	color: var(--oz-f-orange);
}
.oz-footer__info-icon svg { width: 18px; height: 18px; display: block; }
.oz-footer__info-text {
	color: var(--oz-f-text);
	font-size: 14px;
	line-height: 1.55;
	word-break: break-word;
}
.oz-footer__info-text a { color: var(--oz-f-text); }
.oz-footer__info-text a:hover { color: var(--oz-f-orange); }

/* =========================================================
 *  Product Tags (nube de categorías)
 * =========================================================  */
.oz-footer__tags {
	position: relative;
	z-index: 1;
	margin-top: 48px;
	padding-top: 8px;
	display: flex;
	align-items: baseline;
	gap: 16px;
	flex-wrap: wrap;
}
.oz-footer__tags-label {
	flex: 0 0 auto;
	color: var(--oz-f-white);
	font-weight: 800;
	font-size: 16px;
	line-height: 1.3;
}
.oz-footer__tags-cloud {
	flex: 1 1 320px;
	min-width: 0;
	line-height: 1.9;
}
.oz-footer__tags-cloud a {
	color: var(--oz-f-text-soft);
	text-decoration: none;
	transition: color .2s ease;
	white-space: normal;
}
.oz-footer__tags-cloud a:hover { color: var(--oz-f-orange); }

/* =========================================================
 *  Barra inferior (copyright)
 * ========================================================= */
.oz-footer__bottom {
	position: relative;
	z-index: 1;
	background: var(--oz-f-bottom);
	border-top: 1px solid var(--oz-f-border);
}
.oz-footer__bottom .oz-footer__container {
	padding: 16px 24px;
}
.oz-footer__copy {
	margin: 0;
	text-align: center;
	color: #2e2e2e;        /* gris muy oscuro, casi se funde con el fondo */
	font-size: 11px;
	opacity: .6;
}

/* =========================================================
 *  Responsive
 * ========================================================= */
@media (max-width: 1024px) {
	.oz-footer__top {
		grid-template-columns: 1.4fr 0.8fr 1fr;
		gap: 32px;
		padding-left: 0;
	}
	.oz-footer__deco { opacity: .22; max-width: 60%; }
}

@media (max-width: 760px) {
	.oz-footer__container { padding: 40px 18px 32px; }
	.oz-footer__top {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.oz-footer__deco { display: none; }
	.oz-footer__about { max-width: none; }
	.oz-footer__tags { margin-top: 36px; }
}

/* =========================================================
 *  Barra inferior fija (solo móvil): accesos rápidos
 * ========================================================= */
.oz-mobilebar { display: none; }

@media (max-width: 767px) {
	.oz-mobilebar {
		display: grid;
		grid-template-columns: repeat(5, 1fr);
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 900;
		background: var(--oz-orange, #f15a00);
		box-shadow: 0 -2px 12px rgba(0, 0, 0, .25);
		padding-bottom: env(safe-area-inset-bottom, 0);
	}
	.oz-mobilebar__item {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 58px;
		color: #fff;
		text-decoration: none;
		transition: background-color .15s ease;
	}
	.oz-mobilebar__item + .oz-mobilebar__item { border-left: 1px solid rgba(255, 255, 255, .18); }
	.oz-mobilebar__item:active { background: rgba(0, 0, 0, .12); }
	.oz-mobilebar__item svg { width: 24px; height: 24px; display: block; }
	.oz-mobilebar__item--cart { background: #0d0d0d; }
	.oz-mobilebar__count {
		position: absolute;
		top: 8px;
		left: 50%;
		margin-left: 3px;
		min-width: 18px;
		height: 18px;
		padding: 0 5px;
		border-radius: 999px;
		background: #e11d2a;
		color: #fff;
		font-size: 11px;
		font-weight: 800;
		line-height: 18px;
		text-align: center;
	}
	.oz-mobilebar__count[hidden] { display: none; }
	/* Evita que la barra tape el contenido al final de la página */
	body { padding-bottom: 58px; }
}
