/* Mandarina Badges - frontend */

/* El contenedor necesita un ancestro posicionado */
ul.products li.product,
.wc-block-grid__product,
.woocommerce ul.products li.product {
	position: relative;
}

.woocommerce div.product div.images,
.woocommerce-product-gallery {
	position: relative;
}

.mb-badges {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
}

.mb-badge {
	position: absolute;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	line-height: 1.15;
	text-align: center;
	max-width: 90%;
	white-space: nowrap;
	pointer-events: auto;
	text-transform: none;
	letter-spacing: 0.02em;
}

/* Formas */
.mb-badge--rectangle {
	border-radius: 0;
}

.mb-badge--pill {
	border-radius: 999px;
}

.mb-badge--circle {
	border-radius: 50%;
	padding: 0;
}

.mb-badge--ribbon {
	clip-path: polygon(0 0, 100% 0, 88% 50%, 100% 100%, 0 100%);
	padding-right: 1.6em !important;
}

.mb-badge--burst {
	clip-path: polygon(
		50% 0%, 61% 12%, 77% 6%, 79% 23%, 95% 25%, 88% 40%, 100% 50%,
		88% 60%, 95% 75%, 79% 77%, 77% 94%, 61% 88%, 50% 100%, 39% 88%,
		23% 94%, 21% 77%, 5% 75%, 12% 60%, 0% 50%, 12% 40%, 5% 25%,
		21% 23%, 23% 6%, 39% 12%
	);
	padding: 1em !important;
}

/* Imagen */
.mb-badge--image {
	background: none !important;
	padding: 0 !important;
	border-radius: 0;
}

.mb-badge--image img {
	display: block;
	width: 100%;
	height: auto;
}

/* Ocultar el badge nativo de oferta */
body.mb-hide-sale .onsale,
body.mb-hide-sale .wc-block-components-product-sale-badge {
	display: none !important;
}

/* Vista previa en admin */
.mb-badge--preview {
	position: relative !important;
	top: auto !important;
	left: auto !important;
	right: auto !important;
	bottom: auto !important;
}

@media (max-width: 600px) {
	.mb-badge {
		font-size: 0.85em;
	}
}
