/**
 * Customer Free Shipping Progress Banner Styles
 *
 * @package WCSAS
 */

.wcsas-notice-banner {
	margin: 15px 0 25px 0;
	padding: 16px 20px;
	border-radius: 10px;
	font-family: inherit;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	transition: all 0.3s ease;
	box-sizing: border-box;
}

.wcsas-notice-banner.wcsas-progressing {
	background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
	border: 1px solid #cbd5e1;
	color: #1e293b;
}

.wcsas-notice-banner.wcsas-qualified {
	background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
	border: 1px solid #86efac;
	color: #166534;
}

.wcsas-banner-inner {
	display: flex;
	align-items: center;
	gap: 14px;
}

.wcsas-banner-icon {
	font-size: 24px;
	line-height: 1;
	flex-shrink: 0;
}

.wcsas-banner-content {
	flex: 1;
}

.wcsas-banner-text {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 8px;
}

.wcsas-progress-bar-wrap {
	width: 100%;
	height: 8px;
	background: #e2e8f0;
	border-radius: 999px;
	overflow: hidden;
	position: relative;
}

.wcsas-qualified .wcsas-progress-bar-wrap {
	background: #bbf7d0;
}

.wcsas-progress-bar-fill {
	height: 100%;
	background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
	border-radius: 999px;
	transition: width 0.5s ease-in-out;
}

.wcsas-qualified .wcsas-progress-bar-fill {
	background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
}

@media (max-width: 600px) {
	.wcsas-notice-banner {
		padding: 12px 14px;
	}
	.wcsas-banner-text {
		font-size: 13px;
	}
}
