/* Bulk Discount — frontend tier cards
   Uses currentColor-friendly gold so it sits well on light or dark backgrounds. */
.cnbd-tiers {
	--cnbd-accent: #d8a13a;
	margin: 1.25rem 0;
}

.cnbd-heading {
	font-weight: 700;
	margin-bottom: .75rem;
	color: var(--cnbd-accent);
}

.cnbd-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.cnbd-tier {
	flex: 1 1 0;
	min-width: 150px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: .35rem;
	text-align: center;
	padding: 1.1rem 1rem;
	border: 1px solid var(--cnbd-accent);
	border-radius: 10px;
	line-height: 1.35;
	transition: background .15s ease, transform .15s ease;
}

.cnbd-tier:hover {
	background: rgba(216, 161, 58, .08);
	transform: translateY(-2px);
}

/* Clickable tier (adds qty to cart + goes to checkout) */
a.cnbd-tier,
a.cnbd-tier:hover,
a.cnbd-tier:focus {
	text-decoration: none;
	color: inherit;
}

a.cnbd-tier.cnbd-clickable {
	cursor: pointer;
}

a.cnbd-tier.cnbd-clickable:hover {
	background: rgba(216, 161, 58, .14);
	box-shadow: 0 8px 20px rgba(216, 161, 58, .18);
}

.cnbd-buy {
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--cnbd-accent);
}

.cnbd-get {
	font-size: .95rem;
	color: var(--cnbd-accent);
}

/* Small call-to-action shown only on clickable cards */
.cnbd-cta {
	margin-top: .25rem;
	font-size: .78rem;
	font-weight: 600;
	letter-spacing: .02em;
	opacity: .85;
	color: var(--cnbd-accent);
	transition: opacity .15s ease;
}

a.cnbd-tier.cnbd-clickable:hover .cnbd-cta {
	opacity: 1;
}

@media (max-width: 600px) {
	.cnbd-grid {
		flex-direction: column;
	}
	.cnbd-tier {
		min-width: 0;
	}
}
