/* ============================================================================
   CertaPeptides Pricing Strategy Styles
   ============================================================================ */

/* Most Popular Badge */
.certapeptides-popular-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	background: linear-gradient(135deg, #FF6B35, #F7931E);
	color: white;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: flex;
	align-items: center;
	gap: 4px;
	z-index: 10;
	box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
	animation: badgePulse 2s ease-in-out infinite;
}

.badge-icon {
	font-size: 13px;
}

.badge-text {
	font-size: 10px;
}

@keyframes badgePulse {
	0%, 100% {
		transform: scale(1);
		box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
	}
	50% {
		transform: scale(1.05);
		box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
	}
}

/* Quantity Discount Table Styling */
.certapeptides-quantity-discount-table {
	background-color: #F0FDFA !important;
	border: 1px solid #0D9488 !important;
	border-radius: 8px !important;
	padding: 16px !important;
	margin: 20px 0 !important;
}

.certapeptides-quantity-discount-table h3 {
	margin: 0 0 12px 0 !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	color: #0F172A !important;
}

.certapeptides-quantity-discount-table table {
	width: 100%;
	font-size: 13px;
	border-collapse: collapse;
}

.certapeptides-quantity-discount-table th {
	text-align: left;
	padding: 8px;
	border-bottom: 1px solid #0D9488;
	font-weight: 600;
	color: #0F172A;
	background-color: rgba(13, 148, 136, 0.1);
}

.certapeptides-quantity-discount-table th:last-child {
	text-align: right;
}

.certapeptides-quantity-discount-table td {
	padding: 8px;
	border-bottom: 1px solid #E2E8F0;
	color: #1E293B;
}

.certapeptides-quantity-discount-table td:last-child {
	text-align: right;
}

.certapeptides-quantity-discount-table tr:last-child td {
	border-bottom: none;
}

.certapeptides-quantity-discount-table .discount-badge {
	display: inline-block;
	background-color: #10B981;
	color: white;
	padding: 2px 8px;
	border-radius: 4px;
	font-weight: 600;
	font-size: 12px;
}

/* Bundle Savings Text */
.bundle-savings-label {
	display: block;
	margin-top: 8px;
	color: #10B981;
	font-weight: 600;
	font-size: 13px;
}

@media (max-width: 768px) {
	.certapeptides-popular-badge {
		top: 8px;
		right: 8px;
		font-size: 10px;
		padding: 5px 10px;
	}

	.certapeptides-quantity-discount-table {
		padding: 12px !important;
		margin: 16px 0 !important;
	}

	.certapeptides-quantity-discount-table h3 {
		font-size: 12px !important;
	}

	.certapeptides-quantity-discount-table {
		font-size: 12px;
	}
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
	.certapeptides-popular-badge {
		animation: none;
	}
}
