/* Alore Marketing — reassurance product badges (pills) */

.alore-badges {
	position: absolute;
	/* 10px gutter on top / left / right so pills never touch the image edge */
	top: 10px;
	left: 10px;
	right: 10px;
	z-index: 6; /* above thumbnail, below quick-view controls */
	display: flex;
	flex-direction: column;
	gap: 6px;
	pointer-events: none;
}

.alore-badges--top-left {
	align-items: flex-start;
}

.alore-badges--top-center {
	align-items: center;
	text-align: center;
}

.alore-badges--top-right {
	align-items: flex-end;
}

.alore-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: var(--alore-badge-bg, #ffffff);
	color: var(--alore-badge-color, #e9572a);
	font-weight: 600;
	font-size: 10px;
	line-height: 1.2;
	letter-spacing: 0.02em;
	text-transform: var(--alore-badge-transform, uppercase);
	padding: 7px 14px;
	border-radius: 999px;
	white-space: nowrap;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Green check before the text */
.alore-badge::before {
	content: "\2713"; /* ✓ */
	color: #2e9c4f;
	font-weight: 700;
	font-size: 11px;
	line-height: 1;
	flex: 0 0 auto;
}

/* Single product: gallery is the positioning anchor. The pills start inside the
   first slide (server-rendered fallback) and JS lifts them to the gallery root
   so they stay pinned while swiping. Both need a relative ancestor. */
.woocommerce-product-gallery {
	position: relative;
}

.woocommerce-product-gallery__image {
	position: relative;
}

/* The theme's tiny "in other colours" thumbnails are too narrow for pills */
.linked-colors .alore-badges,
.linked-colors-model .alore-badges {
	display: none;
}

/* Suppress the theme's legacy mobile category pill (gallery :before) — these
   plugin badges replace it. Reverts automatically if the plugin is disabled. */
.loop-cat-damski-chanti-estestvena-kozha .woocommerce-product-gallery:before,
.loop-cat-mazhki-chanti-estestvena-kozha .woocommerce-product-gallery:before,
.loop-cat-portmoneta .woocommerce-product-gallery:before,
.loop-cat-damski-ranitsi-estestvena-kozha .woocommerce-product-gallery:before,
.loop-cat-damski-chanti-eko-kozha .woocommerce-product-gallery:before,
.loop-cat-biznes-chanti .woocommerce-product-gallery:before {
	display: none !important;
}

@media (max-width: 480px) {
	.alore-badge {
		font-size: 10px;
		padding: 6px 12px;
	}
}
