/* UXD WooCommerce Loyalty & Discounts - Frontend Stylesheet */

.uxd-frontend-perk-box {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 16px 20px;
	margin: 18px 0;
	font-family: inherit;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.uxd-loyalty-card {
	background: linear-gradient(135deg, #fffcf0 0%, #fff7ed 100%);
	border: 1px solid #fde68a;
}

.uxd-bogo-card {
	background: linear-gradient(135deg, #eff6ff 0%, #e0e7ff 100%);
	border: 1px solid #bfdbfe;
	display: flex;
	align-items: center;
	gap: 12px;
}

.uxd-perk-header {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.uxd-perk-icon {
	font-size: 24px;
	line-height: 1;
}

.uxd-frontend-perk-box h4 {
	margin: 0 0 4px 0;
	font-size: 15px;
	font-weight: 700;
	color: #1e293b;
}

.uxd-perk-sub {
	margin: 0;
	font-size: 13px;
	color: #64748b;
	line-height: 1.4;
}

.uxd-success-text {
	color: #047857 !important;
	font-weight: 600;
}

/* Progress Bar */
.uxd-progress-container {
	height: 8px;
	background: #e2e8f0;
	border-radius: 10px;
	overflow: hidden;
	margin-top: 12px;
}

.uxd-progress-bar {
	height: 100%;
	background: linear-gradient(90deg, #f59e0b 0%, #10b981 100%);
	border-radius: 10px;
	transition: width 0.4s ease;
}

.uxd-bogo-bar {
	background: linear-gradient(90deg, #6366f1 0%, #3b82f6 100%);
}

.uxd-bogo-card .uxd-perk-header {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.uxd-progress-labels {
	display: flex;
	justify-content: space-between;
	font-size: 11px;
	font-weight: 600;
	color: #78350f;
	margin-top: 6px;
}

/* Cart Badges */
.uxd-cart-badge {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 4px;
	margin-top: 4px;
}

.uxd-badge-loyalty {
	background: #fef3c7;
	color: #92400e;
	border: 1px solid #fcd34d;
}

.uxd-badge-bogo {
	background: #dbeafe;
	color: #1e40af;
	border: 1px solid #93c5fd;
}

/* Flying BOGO Toast Notification */
#uxd-wcld-toast-container {
	position: fixed;
	bottom: 24px;
	left: 24px;
	z-index: 99999;
	display: flex;
	flex-direction: column;
	gap: 10px;
	pointer-events: none;
}

.uxd-wcld-toast {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #1e293b;
	color: #fff;
	padding: 12px 18px;
	border-radius: 10px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
	font-size: 13px;
	font-weight: 600;
	max-width: 320px;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.3s ease, transform 0.3s ease;
	pointer-events: auto;
}

.uxd-wcld-toast-visible {
	opacity: 1;
	transform: translateY(0);
}

.uxd-wcld-toast-icon {
	font-size: 18px;
	line-height: 1;
	flex-shrink: 0;
}

.uxd-wcld-toast-msg {
	line-height: 1.4;
}

/* Cart Notice */
.uxd-cart-notice-reward {
	background: #ecfdf5 !important;
	border-top-color: #10b981 !important;
	color: #065f46 !important;
	font-weight: 600;
}
