/* Loyalty Program Styles */

.loyalty-program-info {
	background-color: #f8f9fa;
	padding: 15px 20px;
	margin-bottom: 20px;
	border-left: 5px solid #A17C5C;
	border-radius: 4px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.loyalty-program-info h3 {
	margin-top: 0;
	margin-bottom: 12px;
	font-weight: 600;
	font-size: 16px;
}

.loyalty-program-info p {
	margin-bottom: 8px;
	font-size: 14px;
	line-height: 1.5;
}

.loyalty-program-info p:last-child {
	margin-bottom: 0;
}

.loyalty-program-info strong {
	font-weight: 600;
}

.loyalty-program-discount-badge {
	display: inline-block;
	background-color: #28a745;
	color: white;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	margin-left: 8px;
}

.loyalty-program-discount-percentage {
	color: #28a745;
	font-size: 18px;
	font-weight: 700;
}

/* Cart page - Loyalty discount row */
.woocommerce-cart-form table tr.loyalty-discount-row th,
.woocommerce-cart-form table tr.loyalty-discount-row td {
	border-top: 2px solid #28a745;
	background-color: #f8f9fa;
}

/* Checkout page - Loyalty discount row */
.woocommerce-checkout-review-order-table tr.loyalty-discount-row th,
.woocommerce-checkout-review-order-table tr.loyalty-discount-row td {
	background-color: #f8f9fa;
	border-top: 1px solid #ddd;
}

.woocommerce-checkout-review-order-table tr.loyalty-discount-row th {
	font-weight: 600;
	color: #28a745;
}

.woocommerce-checkout-review-order-table tr.loyalty-discount-row td {
	color: #28a745;
	font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
	.loyalty-program-info {
		padding: 12px 15px;
	}

	.loyalty-program-info h3 {
		font-size: 14px;
		margin-bottom: 10px;
	}

	.loyalty-program-info p {
		font-size: 13px;
	}

	.loyalty-program-discount-percentage {
		font-size: 16px;
	}
}
