/* =====================================================
   AURA PRODUCT POINTS
   Info o Aura Points pod boxami ilościowymi (single product page).
   Renderowany przez JS - aura-product-points.js.
   1 zł = 1 punkt.
   ===================================================== */

.aura-product-points {
	margin: 10px 0 12px;
	width: 100%;
}

.aura-product-points__divider {
	height: 1px;
	background: rgba(0, 0, 0, 0.08);
	margin: 0 0 10px;
	width: 100%;
}

.aura-product-points__row {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	padding: 8px 12px;
	background: linear-gradient(90deg, rgba(63, 136, 11, 0.05) 0%, rgba(63, 136, 11, 0.02) 100%);
	border: 1px solid rgba(63, 136, 11, 0.15);
	border-radius: 8px;
}

.aura-product-points__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	background: #ffffff;
	border-radius: 50%;
	color: #3f880b;
	flex-shrink: 0;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.aura-product-points__icon svg {
	width: 14px;
	height: 14px;
	display: block;
}

.aura-product-points__text {
	flex: 1 1 auto;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 13px;
	line-height: 1.3;
	color: #1a1a1a;
	min-width: 0;
}

.aura-product-points__value {
	font-family: 'Sora', sans-serif;
	font-size: 14.5px;
	font-weight: 700;
	color: #3f880b;
	margin: 0 2px;
}

.aura-product-points__label {
	font-weight: 600;
	color: #1a1a1a;
}

.aura-product-points__hint {
	font-family: 'Sora', sans-serif;
	font-size: 9.5px;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #888;
	background: #ffffff;
	padding: 3px 8px;
	border-radius: 999px;
	flex-shrink: 0;
}

/* Responsive */
@media (max-width: 600px) {
	.aura-product-points__row {
		padding: 7px 10px;
		gap: 7px;
	}

	.aura-product-points__icon {
		width: 22px;
		height: 22px;
	}

	.aura-product-points__icon svg {
		width: 13px;
		height: 13px;
	}

	.aura-product-points__text {
		font-size: 12.5px;
	}

	.aura-product-points__value {
		font-size: 13.5px;
	}

	.aura-product-points__hint {
		font-size: 9px;
		padding: 2px 7px;
	}
}

@media (max-width: 420px) {
	.aura-product-points__hint {
		flex-basis: 100%;
		text-align: center;
		margin-top: 2px;
	}
}
