/* PDS Bulk Discounts — Product Page Tier Cards */

.pds-bd-tiers-wrap {
	margin: 16px 0 20px;
}

.pds-bd-tiers-title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 700;
	color: #0a6670;
	margin-bottom: 10px;
}
.pds-bd-tiers-title svg {
	flex-shrink: 0;
}

.pds-bd-tiers-grid {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.pds-bd-tier-card {
	flex: 1 1 0;
	min-width: 120px;
	background: #f6fbfb;
	border: 1.5px solid #d4e5e8;
	border-radius: 8px;
	padding: 12px 14px;
	text-align: center;
	transition: border-color .2s, box-shadow .2s;
}

.pds-bd-tier-card:hover {
	border-color: #148a94;
	box-shadow: 0 2px 10px rgba(20,138,148,.15);
}

.pds-bd-tier-card--active {
	border-color: #148a94;
	background: #eaf7f8;
	box-shadow: 0 0 0 2px rgba(20,138,148,.25);
	position: relative;
}
.pds-bd-tier-card--active .pds-bd-tier-card__qty {
	color: #0a6670;
}

.pds-bd-tier-badge {
	position: absolute;
	top: -9px;
	left: 50%;
	transform: translateX(-50%);
	background: #148a94;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .5px;
	padding: 2px 10px;
	border-radius: 10px;
	white-space: nowrap;
	line-height: 1.4;
}

.pds-bd-tier-card__qty {
	font-size: 12px;
	font-weight: 600;
	color: #5a6a7a;
	margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: .3px;
}

.pds-bd-tier-card__discount {
	display: inline-block;
	padding: 2px 10px;
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	background: linear-gradient(135deg, #148a94, #0a6670);
	border-radius: 20px;
	margin-bottom: 8px;
}

.pds-bd-tier-card__price {
	font-size: 16px;
	font-weight: 700;
	color: #04102a;
}

.pds-bd-tier-card__price span {
	font-size: 12px;
	font-weight: 400;
	color: #5a6a7a;
}

/* Responsive */
@media (max-width: 480px) {
	.pds-bd-tiers-grid {
		gap: 8px;
	}
	.pds-bd-tier-card {
		min-width: 100px;
		padding: 10px;
	}
	.pds-bd-tier-card__price {
		font-size: 14px;
	}
}
