/**
 * WC COD Deposit Payment for WooCommerce CSS
 */

:root {
	--wc-cod-deposit-primary: #0f172a;
	--wc-cod-deposit-accent: #0284c7;
	--wc-cod-deposit-success: #15803d;
	--wc-cod-deposit-warning: #b45309;
	--wc-cod-deposit-border: #e2e8f0;
	--wc-cod-deposit-bg-light: #f8fafc;
	--wc-cod-deposit-text: #1e293b;
}

/* Checkout Summary Box */
.wc-cod-deposit-summary-box {
	background: var(--wc-cod-deposit-bg-light);
	border: 1px solid var(--wc-cod-deposit-border);
	border-radius: 10px;
	padding: 16px;
	margin: 14px 0;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
	font-family: inherit;
	transition: all 0.3s ease;
}

.wc-cod-deposit-summary-header {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	font-weight: 600;
	font-size: 14px;
	color: var(--wc-cod-deposit-primary);
}

.wc-cod-deposit-badge {
	background: #e0f2fe;
	color: #0369a1;
	font-size: 11px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.wc-cod-deposit-summary-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
}

.wc-cod-deposit-summary-table td {
	padding: 6px 0;
	color: var(--wc-cod-deposit-text);
}

.wc-cod-deposit-summary-table tr.wc-cod-deposit-row-highlight td {
	font-weight: 700;
	color: var(--wc-cod-deposit-success);
	font-size: 14px;
}

.wc-cod-deposit-summary-table tr.wc-cod-deposit-row-remaining td {
	font-weight: 600;
	color: var(--wc-cod-deposit-warning);
}

.wc-cod-deposit-note {
	margin-top: 10px;
	font-size: 12px;
	color: #64748b;
	line-height: 1.4;
}

/* Customer View Order Breakdown Card */
.wc-cod-deposit-order-details-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 20px;
	margin: 20px 0;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.wc-cod-deposit-order-details-card h3 {
	margin-top: 0;
	margin-bottom: 14px;
	font-size: 16px;
	font-weight: 700;
	color: #0f172a;
}

.wc-cod-deposit-detail-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 16px;
	margin-bottom: 14px;
}

.wc-cod-deposit-detail-item {
	background: #f8fafc;
	padding: 12px;
	border-radius: 6px;
	border-left: 4px solid var(--wc-cod-deposit-accent);
}

.wc-cod-deposit-detail-label {
	font-size: 11px;
	text-transform: uppercase;
	color: #64748b;
	font-weight: 600;
	margin-bottom: 4px;
}

.wc-cod-deposit-detail-value {
	font-size: 16px;
	font-weight: 700;
	color: #0f172a;
}

.wc-cod-deposit-notice-alert {
	background: #fef3c7;
	border: 1px solid #fde68a;
	color: #92400e;
	padding: 12px 16px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
}

/* Email styles inline overrides */
.wc-cod-deposit-email-table {
	width: 100%;
	border: 1px solid #e5e7eb;
	margin: 16px 0;
}
.wc-cod-deposit-email-table td, .wc-cod-deposit-email-table th {
	padding: 8px 12px;
	border: 1px solid #e5e7eb;
}
