/**
 * Free Shipping Counter Styles
 * 
 * Styles for the free shipping progress counter displayed on cart and checkout pages
 */

.kream-free-shipping-counter {
	background: #f8f9fa;
	border: 2px solid #e9ecef;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 30px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.kream-free-shipping-counter.kream-fsc-success {
	background: #d4edda;
	border-color: #c3e6cb;
}

.kream-fsc-message {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin-bottom: 12px;
	text-align: center;
}

.kream-fsc-success .kream-fsc-message {
	color: #155724;
}

.kream-fsc-progress-bar {
	width: 100%;
	height: 24px;
	background-color: #e9ecef;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
}

.kream-fsc-progress-fill {
	height: 100%;
	background: linear-gradient(90deg, #4CAF50 0%, #66BB6A 100%);
	border-radius: 12px;
	transition: width 0.5s ease-in-out;
	position: relative;
}

.kream-fsc-progress-fill.kream-fsc-complete {
	background: linear-gradient(90deg, #28a745 0%, #34ce57 100%);
}

/* Animated gradient effect for the progress bar */
.kream-fsc-progress-fill::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	animation: shimmer 2s infinite;
}

@keyframes shimmer {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}

/* Loading state */
.kream-free-shipping-counter.kream-fsc-loading {
	opacity: 0.7;
	pointer-events: none;
}

.kream-free-shipping-counter.kream-fsc-loading .kream-fsc-progress-bar {
	position: relative;
}

.kream-free-shipping-counter.kream-fsc-loading .kream-fsc-progress-bar::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
	animation: loading-pulse 1.5s ease-in-out infinite;
}

@keyframes loading-pulse {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}

/* Update animation */
.kream-free-shipping-counter.kream-fsc-updated {
	animation: update-pulse 0.6s ease-out;
}

@keyframes update-pulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.02);
	}
	100% {
		transform: scale(1);
	}
}

/* Responsive styles */
@media (max-width: 768px) {
	.kream-free-shipping-counter {
		padding: 15px;
		margin-bottom: 20px;
	}
	
	.kream-fsc-message {
		font-size: 14px;
	}
	
	.kream-fsc-progress-bar {
		height: 20px;
	}
}

@media (max-width: 480px) {
	.kream-free-shipping-counter {
		padding: 12px;
	}
	
	.kream-fsc-message {
		font-size: 13px;
	}
	
	.kream-fsc-progress-bar {
		height: 18px;
	}
}

