/* Agma Promo Bundle — frontend */

.agma-bundle-wrap:empty { display: none; }

.agma-bundle-notice {
	margin: 0 0 1.25em;
	padding: 14px 18px;
	border-radius: 8px;
	font-size: 15px;
	line-height: 1.45;
	border: 1px solid transparent;
	animation: agma-bundle-fade 0.25s ease-out;
}
.agma-bundle-notice.agma-bundle-info {
	background: #f3eefc;
	border-color: #d6c2f0;
	color: #4a2a75;
}
.agma-bundle-notice.agma-bundle-success {
	background: #eafaf0;
	border-color: #a9e6c1;
	color: #14663a;
	font-weight: 600;
}
.agma-bundle-notice a {
	color: inherit;
	font-weight: 700;
	text-decoration: underline;
}
.agma-bundle-notice.agma-bundle-mini {
	margin: 12px 0;
	padding: 10px 12px;
	font-size: 13px;
	border-radius: 6px;
}

/* Regular total (strikethrough) row */
.agma-bundle-regular-total del {
	opacity: 0.65;
}

/* Category banner */
.agma-bundle-cat-banner {
	display: block;
	width: 100%;
	box-sizing: border-box;
	margin: 0 0 20px;
	padding: 12px 18px;
	background: linear-gradient(90deg, #f7f0ff 0%, #fdf3ec 100%);
	border: 1px solid #e2cdf0;
	border-radius: 8px;
	text-align: center;
}
.agma-bundle-cat-banner--reposition { display: none; }
.agma-bundle-cat-banner--reposition.agma-bundle-cat-banner--ready { display: block; }

.agma-bundle-cat-title {
	display: block;
	font-size: 17px;
	font-weight: 700;
	color: #4a2a75;
	margin-bottom: 2px;
}
.agma-bundle-cat-text {
	display: block;
	font-size: 14px;
	color: #6b4a8a;
}
.agma-bundle-cat-valid {
	display: block;
	font-size: 12px;
	color: #9a5410;
	margin-top: 4px;
	font-weight: 600;
}

@keyframes agma-bundle-fade {
	from { opacity: 0; transform: translateY(-4px); }
	to   { opacity: 1; transform: translateY(0); }
}
@media ( prefers-reduced-motion: reduce ) {
	.agma-bundle-notice { animation: none; }
}

@media (max-width: 768px) {
	.agma-bundle-cat-banner { padding: 10px 12px; margin-bottom: 14px; }
	.agma-bundle-cat-title { font-size: 15px; }
	.agma-bundle-cat-text { font-size: 12px; }
}

/* Mini cart discount + final rows */
.woocommerce-mini-cart__promo.agma-bundle-mini-discount,
.woocommerce-mini-cart__final.agma-bundle-mini-final {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 8px;
	margin: 6px 0;
	font-size: 14px;
}
.woocommerce-mini-cart__promo.agma-bundle-mini-discount {
	color: #14663a;
}
.woocommerce-mini-cart__final.agma-bundle-mini-final {
	font-weight: 700;
	font-size: 15px;
	padding-top: 6px;
	border-top: 1px solid #eee;
}
.agma-bundle-mini-discount .agma-bundle-amount,
.agma-bundle-mini-final .agma-bundle-amount {
	white-space: nowrap;
}
