/* Casavinoteca Rewards — Frontend Styles */

/* Balance card */
.cv-rewards-balance-card {
	background: linear-gradient(135deg, #6b2c39 0%, #8b3a4e 100%);
	color: #fff;
	border-radius: 12px;
	padding: 24px 32px;
	text-align: center;
	margin-bottom: 20px;
}

.cv-rewards-balance-label {
	display: block;
	font-size: 0.85em;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	opacity: 0.85;
}

.cv-rewards-balance-value {
	display: block;
	font-size: 2.5em;
	font-weight: 700;
	line-height: 1.2;
	margin: 4px 0;
}

.cv-rewards-balance-equiv {
	display: block;
	font-size: 0.95em;
	opacity: 0.8;
}

/* Stats */
.cv-rewards-stats {
	display: flex;
	gap: 16px;
	margin-bottom: 20px;
}

.cv-rewards-stat {
	flex: 1;
	background: #f9f6f2;
	border-radius: 8px;
	padding: 16px;
	text-align: center;
}

.cv-rewards-stat-label {
	display: block;
	font-size: 0.8em;
	text-transform: uppercase;
	color: #666;
	margin-bottom: 4px;
}

.cv-rewards-stat-value {
	display: block;
	font-size: 1.5em;
	font-weight: 700;
	color: #6b2c39;
}

/* Notice for unverified users */
.cv-rewards-notice {
	background: #fff8e5;
	border-left: 4px solid #dba617;
	padding: 12px 16px;
	border-radius: 4px;
	margin-bottom: 20px;
}

/* Cart hint link */
.cv-rewards-cart-hint {
	margin-bottom: 20px;
}

.cv-rewards-use-cart {
	display: inline-block;
	background: #6b2c39;
	color: #fff;
	padding: 8px 20px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
}

.cv-rewards-use-cart:hover {
	background: #8b3a4e;
	color: #fff;
}

/* History table */
.cv-rewards-history-table {
	width: 100%;
	margin-bottom: 24px;
}

.cv-rewards-history-table th {
	text-align: left;
	padding: 8px 12px;
	border-bottom: 2px solid #eee;
}

.cv-rewards-history-table td {
	padding: 8px 12px;
	border-bottom: 1px solid #eee;
}

.cv-rewards-positive {
	color: #2a8c3a;
	font-weight: 600;
}

.cv-rewards-negative {
	color: #c0392b;
	font-weight: 600;
}

.cv-rewards-empty {
	color: #888;
	font-style: italic;
}

/* Redeemable products grid */
.cv-rewards-products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 16px;
	margin-top: 12px;
}

.cv-rewards-product-card {
	border: 1px solid #e5e0d8;
	border-radius: 8px;
	padding: 12px;
	text-align: center;
	background: #fff;
	transition: box-shadow 0.2s;
}

.cv-rewards-product-card:hover {
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.cv-rewards-product-card.is-disabled {
	opacity: 0.55;
}

.cv-rewards-product-image img {
	max-width: 100%;
	height: auto;
	border-radius: 4px;
	margin-bottom: 8px;
}

.cv-rewards-product-info h4 {
	font-size: 0.95em;
	margin: 0 0 4px;
}

.cv-rewards-product-price {
	display: block;
	color: #6b2c39;
	font-weight: 700;
	margin-bottom: 8px;
}

.cv-rewards-redeem-btn {
	background: #6b2c39;
	color: #fff;
	border: none;
	padding: 6px 20px;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 600;
	width: 100%;
}

.cv-rewards-redeem-btn:hover {
	background: #8b3a4e;
}

.cv-rewards-not-enough {
	display: block;
	color: #999;
	font-size: 0.85em;
	padding: 6px 0;
}

/* Checkout / cart checkbox */
.cv-rewards-checkout-row th,
.cv-rewards-cart-row th {
	vertical-align: middle;
}

.cv-rewards-checkout-label {
	display: flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
}

.cv-rewards-checkout-label input[type="checkbox"] {
	width: 18px;
	height: 18px;
	cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
	.cv-rewards-stats {
		flex-direction: column;
	}

	.cv-rewards-products-grid {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	}

	.cv-rewards-balance-value {
		font-size: 2em;
	}
}
