/**
 * WPC Gift Cards — Frontend Styles
 *
 * @package WPC_Gift_Cards
 */

/* ─── Gift Card Form (Single Product) ─────────────────────── */

.wpcgc-gift-card-form {
	margin: 20px 0;
	max-width: 540px;
}

/* ─── Live Preview ────────────────────────────────────────── */

.wpcgc-preview-wrap {
	margin-bottom: 24px;
}

.wpcgc-preview-card {
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
	transition: box-shadow 0.3s ease;
}

.wpcgc-preview-card:hover {
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.wpcgc-preview-banner {
	overflow: hidden;
	line-height: 0;
}

.wpcgc-preview-banner-img {
	width: 100%;
	height: auto;
	display: block;
	transition: opacity 0.3s ease;
}

.wpcgc-preview-banner-placeholder {
	padding: 40px 20px;
	text-align: center;
	font-size: 48px;
	background: linear-gradient(135deg, #6366f1, #8b5cf6);
	line-height: 1;
}

.wpcgc-preview-body {
	padding: 20px 24px;
	background: #ffffff;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.wpcgc-preview-header-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
}

.wpcgc-preview-label {
	font-size: 28px;
	font-weight: 700;
	color: #374151;
}

.wpcgc-preview-amount {
	font-size: 28px;
	font-weight: 800;
	color: #111827;
	transition: all 0.2s ease;
}

.wpcgc-preview-details {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 16px 0;
	border-top: 1px solid #e5e7eb;
	border-bottom: 1px solid #e5e7eb;
}

.wpcgc-preview-from-to {
	display: flex;
	justify-content: space-between;
}

.wpcgc-preview-row {
	color: #6b7280;
	line-height: 1.5;
}

.wpcgc-preview-row:empty {
	display: none;
}

.wpcgc-preview-row--msg {
	font-style: italic;
	color: #9ca3af;
}

.wpcgc-preview-code-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.wpcgc-preview-code {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.wpcgc-preview-code-label {
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #9ca3af;
}

.wpcgc-preview-code-value {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 2px;
	color: #374151;
}

.wpcgc-preview-qr {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	color: #9ca3af;
}

/* ─── Design Gallery ──────────────────────────────────────── */

.wpcgc-design-gallery {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.wpcgc-design-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	transition: transform 0.15s ease;
}

.wpcgc-design-item:hover {
	transform: translateY(-2px);
}

.wpcgc-design-swatch {
	width: 72px;
	height: 52px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 3px solid transparent;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	position: relative;
}

.wpcgc-design-swatch img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 7px; /* Account for 3px border */
}

.wpcgc-design-item--active .wpcgc-design-swatch {
	border-color: #6366f1;
	box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.25);
}

.wpcgc-design-swatch::after {
	content: '✓';
	position: absolute;
	top: -6px;
	right: -6px;
	width: 18px;
	height: 18px;
	background: #ffffff;
	color: #6366f1;
	font-size: 10px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	opacity: 0;
	transform: scale(0);
	transition: all 0.2s ease;
	border: 2px solid #6366f1;
}

.wpcgc-design-item--active .wpcgc-design-swatch::after {
	opacity: 1;
	transform: scale(1);
}

.wpcgc-design-name {
	font-size: 11px;
	color: #64748b;
	font-weight: 500;
	text-align: center;
}

.wpcgc-design-item--active .wpcgc-design-name {
	color: #6366f1;
	font-weight: 600;
}

.wpcgc-design-swatch--upload {
	border: 2px dashed #cbd5e1;
	background: #f8fafc;
	flex-direction: column;
	gap: 2px;
}

.wpcgc-design-item--upload:hover .wpcgc-design-swatch--upload {
	border-color: #94a3b8;
}

.wpcgc-upload-hidden {
	display: none !important;
}

.wpcgc-form-section {
	margin-bottom: 24px;
	position: relative;
}

.wpcgc-form-label {
	display: block;
	font-weight: 600;
	font-size: 14px;
	color: #1e293b;
	margin-bottom: 10px;
}

.wpcgc-optional {
	font-weight: 400;
	color: #94a3b8;
	font-size: 12px;
}

/* Amount selector */

.wpcgc-amounts {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.wpcgc-amount-option {
	position: relative;
	cursor: pointer;
}

.wpcgc-amount-radio {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.wpcgc-amount-label {
	display: inline-block;
	padding: 10px 20px;
	border: 2px solid #e2e8f0;
	border-radius: 10px;
	font-weight: 600;
	font-size: 15px;
	color: #475569;
	background: #ffffff;
	transition: all 0.2s ease;
	cursor: pointer;
	position: relative;
}

.wpcgc-amount-label:hover {
	border-color: #6366f1;
	color: #6366f1;
}

.wpcgc-amount-radio:checked + .wpcgc-amount-label {
	border-color: #6366f1;
	background: #6366f1;
	color: #ffffff;
	box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.wpcgc-amount-label::after {
	content: '✓';
	position: absolute;
	top: -6px;
	right: -6px;
	width: 18px;
	height: 18px;
	background: #ffffff;
	color: #6366f1;
	font-size: 10px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	opacity: 0;
	transform: scale(0);
	transition: all 0.2s ease;
	border: 2px solid #6366f1;
}

.wpcgc-amount-radio:checked + .wpcgc-amount-label::after {
	opacity: 1;
	transform: scale(1);
}

/* Custom amount inline */

.wpcgc-custom-inline {
	display: inline-flex;
	align-items: center;
	padding: 10px 20px;
	border: 2px solid #6366f1;
	border-radius: 10px;
	background: #6366f1;
	box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.wpcgc-custom-currency {
	color: #ffffff;
	font-weight: 600;
	font-size: 15px;
	margin-right: 4px;
}

.wpcgc-custom-inline .wpcgc-custom-amount-input {
	width: 80px;
	padding: 0;
	border: none;
	outline: none;
	background: transparent;
	color: #ffffff;
	font-weight: 600;
	font-size: 15px;
	text-align: center;
	-moz-appearance: textfield;
	box-shadow: none !important;
}

.wpcgc-custom-inline .wpcgc-custom-amount-input:focus {
	background: transparent !important;
}

.wpcgc-custom-inline .wpcgc-custom-amount-input::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.wpcgc-custom-inline .wpcgc-custom-amount-input::-webkit-outer-spin-button,
.wpcgc-custom-inline .wpcgc-custom-amount-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.wpcgc-custom-amount-input {
	border: none;
	padding: 10px 14px;
	font-size: 15px;
	flex: 1;
	outline: none;
	min-width: 0;
}

.wpcgc-custom-discount-notice {
	display: block;
	font-size: 12px;
	color: #64748b;
	margin-top: 10px;
	text-align: center;
}

.wpcgc-custom-discount-notice strong {
	color: #1e293b;
	font-weight: 700;
}

.wpcgc-amount-range {
	margin: 6px 0 0;
	font-size: 12px;
	color: #94a3b8;
}

/* Form inputs */

.wpcgc-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.wpcgc-input {
	width: 100% !important;
	height: 44px !important;
	padding: 10px 14px !important;
	border: 2px solid #e2e8f0 !important;
	border-radius: 10px !important;
	font-size: 14px !important;
	color: #1e293b !important;
	background: #ffffff !important;
	transition: border-color 0.2s !important;
	box-sizing: border-box !important;
	box-shadow: none !important;
}

.wpcgc-input:focus {
	outline: none !important;
	border-color: #6366f1 !important;
}

.wpcgc-input::placeholder {
	color: #94a3b8 !important;
}

.wpcgc-textarea {
	width: 100% !important;
	padding: 10px 14px !important;
	border: 2px solid #e2e8f0 !important;
	border-radius: 10px !important;
	font-size: 14px !important;
	color: #1e293b !important;
	background: #ffffff !important;
	resize: vertical !important;
	font-family: inherit !important;
	transition: border-color 0.2s !important;
	box-sizing: border-box !important;
	box-shadow: none !important;
}

.wpcgc-textarea:focus {
	outline: none !important;
	border-color: #6366f1 !important;
}

.wpcgc-char-count {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 11px;
	color: #94a3b8;
	line-height: 20px;
}

.wpcgc-field-hint {
	margin: 6px 0 0;
	font-size: 12px;
	color: #94a3b8;
}

.wpcgc-date-input {
	max-width: 200px;
}

/* Add to cart button disabled state */

.wpcgc-add-to-cart-btn.wpcgc-btn-disabled {
	opacity: 0.5;
	cursor: not-allowed;
	pointer-events: none;
}

/* ─── Cart/Checkout Redeem Field ───────────────────────────── */

.wpcgc-redeem-wrapper {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 20px;
}

.wpcgc-redeem-header {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
}

.wpcgc-redeem-icon {
	color: #6366f1;
}

.wpcgc-redeem-title {
	font-weight: 600;
	font-size: 15px;
	color: #1e293b;
}

.wpcgc-redeem-input-group {
	display: flex;
	gap: 8px;
}

.wpcgc-redeem-input {
	flex: 1;
	height: 44px !important;
	padding: 10px 14px !important;
	border: 2px solid #e2e8f0 !important;
	border-radius: 10px !important;
	font-size: 14px !important;
	color: #1e293b !important;
	background: #ffffff !important;
	font-family: monospace !important;
	text-transform: uppercase !important;
	letter-spacing: 1px !important;
	transition: border-color 0.2s !important;
	box-sizing: border-box !important;
	box-shadow: none !important;
}

.wpcgc-redeem-input:focus {
	outline: none !important;
	border-color: #6366f1 !important;
}

.wpcgc-redeem-btn {
	height: 44px;
	padding: 0 20px;
	background: #6366f1;
	color: #ffffff;
	border: none;
	border-radius: 10px;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: background 0.2s;
	white-space: nowrap;
	box-sizing: border-box;
}

.wpcgc-redeem-btn:hover {
	background: #4f46e5;
}

.wpcgc-redeem-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.wpcgc-redeem-message {
	margin-top: 8px;
	font-size: 13px;
	min-height: 20px;
	display: none;
}

.wpcgc-redeem-message.wpcgc-msg-success {
	color: #16a34a;
	display: block;
}

.wpcgc-redeem-message.wpcgc-msg-error {
	color: #dc2626;
	display: block;
}

/* Applied cards */

.wpcgc-applied-list {
	margin-top: 12px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.wpcgc-applied-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 10px 14px;
}

.wpcgc-applied-info {
	display: flex;
	align-items: center;
	gap: 12px;
}

.wpcgc-applied-code {
	font-family: monospace;
	font-weight: 600;
	font-size: 13px;
	color: #334155;
	letter-spacing: 0.5px;
}

.wpcgc-applied-balance {
	font-size: 13px;
	color: #16a34a;
	font-weight: 600;
}

.wpcgc-remove-card-btn {
	background: none;
	border: none;
	color: #94a3b8;
	cursor: pointer;
	font-size: 18px;
	padding: 0 4px;
	line-height: 1;
	transition: color 0.15s;
}

.wpcgc-remove-card-btn:hover {
	color: #dc2626;
}

/* ─── My Account Gift Cards ────────────────────────────────── */

.wpcgc-account {
	max-width: 800px;
}

.wpcgc-account-tabs {
	display: flex;
	gap: 4px;
	margin-bottom: 20px;
	border-bottom: 2px solid #e2e8f0;
}

.wpcgc-tab-btn {
	padding: 10px 20px;
	background: none;
	border: none;
	border-bottom: 2px solid transparent;
	margin-bottom: -2px;
	font-weight: 500;
	font-size: 14px;
	color: #64748b;
	cursor: pointer;
	transition: all 0.2s;
}

.wpcgc-tab-btn:hover {
	color: #1e293b;
}

.wpcgc-tab-btn--active {
	color: #6366f1;
	border-bottom-color: #6366f1;
	font-weight: 600;
}

.wpcgc-tab-count {
	display: inline-block;
	background: #f1f5f9;
	color: #64748b;
	font-size: 11px;
	padding: 1px 8px;
	border-radius: 10px;
	margin-left: 4px;
	font-weight: 600;
}

.wpcgc-tab-btn--active .wpcgc-tab-count {
	background: #eef2ff;
	color: #6366f1;
}

.wpcgc-tab-content {
	display: none;
}

.wpcgc-tab-content--active {
	display: block;
}

/* Cards grid */

.wpcgc-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 16px;
}

.wpcgc-card-item {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 20px;
	transition: box-shadow 0.2s;
}

.wpcgc-card-item:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.wpcgc-card-item--depleted {
	opacity: 0.6;
}

.wpcgc-card-item--expired {
	opacity: 0.6;
}

.wpcgc-card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
}

.wpcgc-card-code {
	background: #f1f5f9;
	padding: 4px 10px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1px;
	color: #334155;
}

.wpcgc-card-status {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	padding: 2px 8px;
	border-radius: 10px;
}

.wpcgc-card-status--active {
	background: #dcfce7;
	color: #166534;
}

.wpcgc-card-status--disabled {
	background: #fee2e2;
	color: #991b1b;
}

.wpcgc-card-status--expired {
	background: #fef3c7;
	color: #92400e;
}

.wpcgc-card-status--depleted {
	background: #e2e8f0;
	color: #475569;
}

.wpcgc-card-balance {
	margin-bottom: 12px;
}

.wpcgc-balance-label {
	display: block;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #94a3b8;
	margin-bottom: 2px;
}

.wpcgc-balance-value {
	font-size: 24px;
	font-weight: 800;
	color: #1e293b;
}

.wpcgc-balance-initial {
	font-size: 13px;
	font-weight: 400;
	color: #94a3b8;
}

.wpcgc-card-meta {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 12px;
	color: #64748b;
}

.wpcgc-card-message {
	margin-top: 8px;
	padding: 8px 12px;
	background: #f8fafc;
	border-left: 3px solid #e2e8f0;
	border-radius: 4px;
	font-size: 13px;
	color: #475569;
}

.wpcgc-card-actions {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid #f1f5f9;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.wpcgc-btn-action {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 12px;
	background: #f8fafc;
	color: #475569;
	border: 1px solid #e2e8f0;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.2s;
}

.wpcgc-btn-action:hover {
	background: #f1f5f9;
	color: #1e293b;
	border-color: #cbd5e1;
}

/* ─── Check Balance Shortcode ──────────────────────────────── */

.wpcgc-check-balance-wrapper {
	max-width: 480px;
	margin: 0 auto;
}

.wpcgc-check-balance-wrapper .wpcgc-redeem-message {
	padding: 20px;
	background: #f8fafc;
	border-radius: 10px;
	border: 1px solid #e2e8f0;
	text-align: center;
}

.wpcgc-balance-amount {
	font-size: 28px;
	font-weight: 800;
	color: #1e293b;
}

.wpcgc-balance-details {
	font-size: 13px;
	color: #64748b;
	margin-top: 8px;
}

/* ─── Table ────────────────────────────────────────────────── */

.wpcgc-table {
	width: 100%;
	border-collapse: collapse;
}

.wpcgc-table th {
	background: #f8fafc;
	font-weight: 600;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #475569;
	padding: 10px 12px;
	text-align: left;
}

.wpcgc-table td {
	padding: 10px 12px;
	border-bottom: 1px solid #f1f5f9;
	font-size: 13px;
}

/* ─── Empty State ──────────────────────────────────────────── */

.wpcgc-empty-state {
	text-align: center;
	padding: 40px 20px;
	color: #94a3b8;
	font-size: 15px;
}

/* ─── Modal ────────────────────────────────────────────────── */

.wpcgc-modal {
	position: fixed;
	inset: 0;
	z-index: 100100;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wpcgc-modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .45);
}

.wpcgc-modal-content {
	position: relative;
	background: #fff;
	border-radius: 12px;
	width: 560px;
	max-width: 90vw;
	max-height: 85vh;
	display: flex;
	flex-direction: column;
	animation: wpcgc-modal-in .2s ease-out;
}

.wpcgc-modal-content--wide {
	width: 720px;
}

@keyframes wpcgc-modal-in {
	from {
		opacity: 0;
		transform: translateY(16px) scale(.97);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.wpcgc-modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	border-bottom: 1px solid #e5e7eb;
}

.wpcgc-modal-header h2 {
	margin: 0;
	font-size: 17px;
	font-weight: 700;
	color: #1f2937;
}

.wpcgc-modal-close {
	background: none;
	border: none;
	font-size: 22px;
	color: #9ca3af;
	cursor: pointer;
	padding: 0;
	line-height: 1;
	transition: color 0.2s;
}

.wpcgc-modal-close:hover {
	color: #374151;
}

.wpcgc-modal-body {
	padding: 24px;
	overflow-y: auto;
	flex: 1;
}

/* ─── Responsive ───────────────────────────────────────────── */

@media (max-width: 600px) {
	.wpcgc-form-row {
		grid-template-columns: 1fr;
	}

	.wpcgc-amounts {
		gap: 6px;
	}

	.wpcgc-amount-label {
		padding: 8px 14px;
		font-size: 13px;
	}

	.wpcgc-redeem-input-group {
		flex-direction: column;
	}

	.wpcgc-redeem-input-group {
		flex-direction: column;
	}

	.wpcgc-cards-grid {
		grid-template-columns: 1fr;
	}
}

/* --- Inline CSS replacements --- */
.wpcgc-cart-preview-modal-content {
	background: transparent;
	max-width: 540px;
	width: 100%;
	padding: 20px;
	position: relative;
	box-shadow: none;
}

.wpcgc-cart-preview-close {
	position: absolute;
	top: 0px;
	right: 0px;
	background: #fff;
	border: none;
	font-size: 24px;
	cursor: pointer;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0,0,0,0.2);
	z-index: 10;
	color: #64748b;
	padding: 0;
	line-height: 1;
	transition: color 0.2s, box-shadow 0.2s;
}

.wpcgc-cart-preview-close:hover {
	color: #374151;
	box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.wpcgc-cart-item-preview-link {
	display: inline-block;
	font-weight: 600;
	color: #6366f1;
	text-decoration: none;
	border-bottom: 1px dashed #6366f1;
}

.wpcgc-cart-item-preview-link::before {
	content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	margin-right: 4px;
	vertical-align: -2px;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%236366f1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 12s3-7 10-7 10 7 10 7-3 7-10 7-10-7-10-7Z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	transition: background-image 0.2s ease;
}

.wpcgc-cart-item-preview-link:hover {
	color: #4f46e5;
	border-bottom-color: #4f46e5;
}

.wpcgc-cart-item-preview-link:hover::before {
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%234f46e5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 12s3-7 10-7 10 7 10 7-3 7-10 7-10-7-10-7Z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
}

.wpcgc-delivery-date-input {
	width: 100%;
	max-width: none;
}

.wpcgc-delivery-notice {
	margin-top: 15px;
	font-size: 13px;
	color: #64748b;
	line-height: 1.5;
}

.wpcgc-notice-text {
	margin: 0 0 4px 0;
	display: flex;
	align-items: center;
}

.wpcgc-notice-text:last-child {
	margin: 0;
}

.wpcgc-notice-icon {
	width: 14px;
	height: 14px;
	margin-right: 4px;
	flex-shrink: 0;
}

.wpcgc-preview-qr img,
.wpcgc-preview-qr svg {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.wpcgc-cart-preview-modal-content .wpcgc-preview-card {
	pointer-events: none;
}

/* ─── Cart Item Meta Details ────────────────────────────── */

.wpcgc-cart-meta-details {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-top: 4px;
	font-size: 0.9em;
	font-weight: normal;
}

.wpcgc-cart-meta-message {
	font-style: italic;
}
