/* Animace pro progress bar */
@keyframes wpfsb-animate-stripes {
	0% {
		background-position: 0 0;
	}
	100% {
		background-position: 60px 0;
	}
}

/* Animace pro truck icon */
@keyframes moveTruck {
	0% {
		left: 0px;
		opacity: 1;
	}
	90% {
		left: calc(33.33% - 32px);
		opacity: 1;
	}
	100% {
		left: calc(33.33% - 32px);
		opacity: 0;
	}
}

/* Hlavní wrapper */
.wpfsb-wrap {
	padding: 15px;
	position: relative;
	background-color: transparent;
	border: none;
	/* VIDITELNÝ při initial renderu - PHP už počítá s kupony */
	visibility: visible !important;
	opacity: 1 !important;
	transition: none;
}

.wpfsb-wrap.wpfsb-wrap-empty {
	display: none;
}

/* Nadpis */
.wpfsb-title {
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 10px;
	color: #333;
	visibility: visible !important;
	opacity: 1 !important;
}

/* Částka v nadpisu - zelená barva, mírně tučně (500) */
.wpfsb-title strong,
.wpfsb-title b {
	font-weight: 500 !important;
	color: #7cb844 !important;
}

/* Progress bar */
.wpfsb-progress-bar {
	position: relative;
	display: block;
	width: 100%;
	height: 10px;
	border: none;
	margin: 10px 0;
	margin-top: 2em !important;
	padding: 0;
	overflow: visible !important;
	visibility: visible !important;
	opacity: 1 !important;
}

/* Progress bar - před-element (truck icon) */
.wpfsb-progress-bar::before {
	content: "";
	background: url('https://nakladatelstvi.audiolibrix.cz/wp-content/uploads/2024/10/delivery-truck-icon.png') no-repeat;
	background-size: contain;
	width: 32px;
	height: 32px;
	position: absolute;
	top: -30px;
	left: 0;
	opacity: 0;
	animation: moveTruck 8s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
	animation-delay: 1.5s;
	animation-fill-mode: both;
	z-index: 10;
}

/* Truck icon jako samostatný element (backup) */
.truck-icon {
	content: url('https://nakladatelstvi.audiolibrix.cz/wp-content/uploads/2024/10/delivery-truck-icon.png');
	position: absolute;
	top: -30px;
	left: 0;
	width: 32px;
	height: 32px;
	opacity: 0;
	animation: moveTruck 8s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
	animation-delay: 1.5s;
	animation-fill-mode: both;
	z-index: 10;
}

/* Progress amount (vyplněná část) */
.wpfsb-progress-amount {
	position: absolute;
	left: 0;
	top: 0;
	display: inline-block;
	height: 10px;
	border: none;
	margin: 0;
	padding: 0;
	transition: width 0.5s ease-in-out;
	visibility: visible !important;
	opacity: 1 !important;
}

/* Hláška - DŮLEŽITÉ: bez opacity na začátku! */
.wpfsb-message {
	margin-top: 10px;
	font-size: 16px;
	font-weight: 400;
	color: #333;
	visibility: visible !important;
	opacity: 1 !important;
	display: block !important;
	transition: none;
}

/* Bold v hlášce (částka) */
.wpfsb-message strong,
.wpfsb-message b {
	font-weight: 700 !important;
	color: #333;
}

/* Mini-cart specifické styly */
.widget_shopping_cart_content .wpfsb-wrap {
	padding-left: 30px;
	padding-right: 30px;
}

/* Zaoblené styly */
.wpfsb-style-rounded .wpfsb-progress-bar,
.wpfsb-style-rounded .wpfsb-progress-amount {
	border-radius: 5px;
}

/* Animovaný progress bar */
.wpfsb-progress-animated .wpfsb-progress-amount {
	background-size: 30px 30px;
	background-image: linear-gradient(
		135deg,
		rgba(255, 255, 255, .15) 25%,
		transparent 25%,
		transparent 50%,
		rgba(255, 255, 255, .15) 50%,
		rgba(255, 255, 255, .15) 75%,
		transparent 75%,
		transparent
	);
	animation: wpfsb-animate-stripes 1.25s linear infinite;
}

/* Qualified message styles - zelené pozadí pro "A máte dopravu zdarma" */
.wpfsb-qualified-message {
	background-color: #d4edda;
	border: 1px solid #c3e6cb;
	border-radius: 0;
	padding: 15px;
	margin-bottom: 0.5em;
}

.wpfsb-qualified-message .wpfsb-message {
	color: #155724;
	font-size: 18px;
	font-weight: 600;
	margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
	.wpfsb-wrap {
		padding: 10px;
	}
	
	.wpfsb-title {
		font-size: 16px;
	}
	
	.wpfsb-message {
		font-size: 14px;
	}
	
	.wpfsb-qualified-message .wpfsb-message {
		font-size: 16px;
	}
}

/* Žádné další CSS overrides - vše je již správně nastaveno výše */

