/**
 * CC Campaña Albiceleste — capa visual global
 */

:root {
	--cc-alb-celeste-light: #a8d4ff;
	--cc-alb-celeste: #6bb5ff;
	--cc-alb-celeste-deep: #74acdf;
	--cc-alb-white: #ffffff;
	--cc-alb-gold: #d4af37;
	--cc-alb-navy: #0b1f3a;
}

/* Franja + barra superior */
.cc-albiceleste-top-chrome {
	left: 0;
	position: sticky;
	top: 0;
	width: 100%;
	z-index: 999;
}

.cc-albiceleste-stripe {
	background: linear-gradient(
		90deg,
		var(--cc-alb-celeste) 0%,
		var(--cc-alb-white) 50%,
		var(--cc-alb-celeste) 100%
	);
	height: 6px;
	left: 0;
	position: relative;
	width: 100%;
}

body.cc-albiceleste-active .header-wrapper,
body.cc-albiceleste-active #header {
	position: relative;
}

body.cc-albiceleste-active .header-wrapper::before,
body.cc-albiceleste-active #header::before {
	background: linear-gradient(
		90deg,
		var(--cc-alb-celeste) 0%,
		var(--cc-alb-white) 50%,
		var(--cc-alb-celeste) 100%
	);
	content: "";
	display: block;
	height: 6px;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 20;
}

/* Top bar */
.cc-albiceleste-topbar {
	background: linear-gradient(90deg, #e8f4ff 0%, #fff 50%, #e8f4ff 100%);
	border-bottom: 1px solid rgba(116, 172, 223, 0.35);
	box-shadow: 0 1px 4px rgba(11, 31, 58, 0.06);
	font-size: 13px;
	line-height: 1.35;
	padding: 8px 0;
	text-align: center;
}

.cc-albiceleste-topbar__inner {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
}

.cc-albiceleste-topbar__stars {
	color: var(--cc-alb-gold);
	font-size: 12px;
	letter-spacing: 2px;
}

.cc-albiceleste-topbar__text {
	color: var(--cc-alb-navy);
	font-weight: 600;
}

/* Banners */
.cc-albiceleste-banner {
	display: block;
	margin: 0 auto 16px;
	max-width: 100%;
	width: 100%;
}

.cc-albiceleste-banner__link {
	display: block;
	line-height: 0;
}

.cc-albiceleste-banner__picture,
.cc-albiceleste-banner__img {
	display: block;
	height: auto;
	max-width: 100%;
	width: 100%;
}

/* Product badge */
.product-small .box-image,
.products .product .box-image,
.woocommerce .product .box-image {
	position: relative;
}

.cc-albiceleste-badge {
	display: block;
	pointer-events: none;
	z-index: 5;
}

.cc-albiceleste-badge img {
	display: block;
	filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
	height: auto;
	max-height: 68px;
	max-width: 68px;
	object-fit: contain;
	width: auto;
}

/* Product badge — loop/grid/carousel: overlay bottom-right on image */
body.cc-albiceleste-active .box-image .cc-albiceleste-badge--loop {
	bottom: 8px;
	left: auto;
	position: absolute;
	right: 8px;
	top: auto;
	transform: none;
	z-index: 6;
}

.cc-albiceleste-badge--single {
	display: inline-block;
	margin-bottom: 8px;
	position: static;
}

.cc-albiceleste-badge--single img {
	max-height: 88px;
	max-width: 88px;
}

.product-images,
.product-gallery-default,
.woocommerce-product-gallery {
	position: relative;
}

/* Single product: inside .product-images (Flatsome) — bottom-right over gallery */
.cc-albiceleste-badge--gallery {
	bottom: 12px;
	left: auto;
	position: absolute;
	right: 12px;
	top: auto;
	z-index: 10;
}

.cc-albiceleste-badge--gallery img {
	max-height: 88px;
	max-width: 88px;
}

/* Card hover (sutil, sin tocar precios) */
body.cc-albiceleste-active .products .product:hover .box,
body.cc-albiceleste-active .products .product:hover .box-image {
	box-shadow: 0 0 15px rgba(212, 175, 55, 0.22);
}

body.cc-albiceleste-active .products .product .box {
	transition: box-shadow 0.2s ease;
}

@media (max-width: 767px) {
	.cc-albiceleste-topbar {
		font-size: 12px;
		padding: 6px 12px;
	}

	.cc-albiceleste-badge img {
		max-height: 54px;
		max-width: 54px;
	}

	.cc-albiceleste-badge--single img,
	.cc-albiceleste-badge--gallery img {
		max-height: 64px;
		max-width: 64px;
	}
}
