.voucher-checker {
	max-width: 570px;
	margin: 24px 0;
	width: 100%;
}
.voucher-form {
	display: flex;
	gap: 10px;
}
.voucher-input {
	flex: 1;
	padding: 12px 14px;
	border: 1px solid #d1d5db;
	border-radius: 10px;
	outline: none;
	min-width: 420px;
}
@media (max-width: 576px) {
	.voucher-input {
		min-width: unset;
	}
	.voucher-form {
		display: flex;
		flex-direction: column;
		width: 100%;
	}
}
.voucher-input:focus {
	border-color: #111;
}
.voucher-btn {
	padding: 12px 16px;
	border: 0;
	border-radius: 10px;
	background: #111;
	color: #fff;
	cursor: pointer;

	line-height: 1.6;
	text-transform: uppercase;
	border-radius: 4px;
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	color: #fff;
	background:  var(--global-palette1);
	border: 1px solid var(--global-palette1);
	box-shadow: 0px 0px 0px -7px rgba(0, 0, 0, 0);
}
.voucher-form.loading .voucher-btn {
	opacity: 0.7;
	pointer-events: none;
}

.voucher-result {
	margin-top: 12px;
}
.voucher-alert {
	border: 1px solid transparent;
	border-radius: 10px;
	padding: 14px;
	margin: 8px 0;
	font-size: 18px;
	line-height: 1.8;
}

/* twoje kolory */
.voucher-alert.success {
	border-color: #0ea45a33;
	background: #0ea45a11;
}
.voucher-alert.error {
	border-color: #ef444433;
	background: #ef444411;
}
.voucher-alert.warning {
	border-color: #f59e0b33;
	background: #f59e0b11;
}
.voucher-alert.info {
	border-color: #3b82f633;
	background: #3b82f611;
}
.voucher-alert.neutral {
	border-color: #e5e7eb;
	background: #f9fafb;
}

/* dodatkowe kosmetyki */
.voucher-alert strong {
	font-weight: 700;
}
.voucher-alert.success strong:first-child {
	font-size: 1.15em;
	display: block;
	margin-bottom: 6px;
	color: #0b814a;
}


.animated-text {
    animation: pulsate 3s infinite ease-in-out;
    display: inline-block; /* ważne dla transform */
}
@keyframes pulsate {
    0% {
        color: #ea601a;
        transform: scale(1);
        text-shadow: 0 0 3px rgba(234, 96, 26, 0.8);
    }
    50% {
        color: #fbbf24; /* złoty */
        transform: scale(1.06);
        text-shadow: 0 0 4px rgba(251, 191, 36, 0.7);
    }

    100% {
        color: #ea601a;
        transform: scale(1);
        text-shadow: 0 0 3px rgba(234, 96, 26, 0.8);
    }
}

.loup-icon {
    position: absolute;
    top: 40px;
    right: 0;
    transition: transform 0.4s ease-out; /* Płynne przejście */
    pointer-events: none; /* Żeby nie blokować kliknięć pod spodem */
    transform: translate(0, 0); /* Startowa pozycja */
}

/* JavaScript będzie aktualizował atrybut style */
@media (max-width: 992px) {
	.loup-icon{
		max-width: 96px;
		height: auto;
	}
}

@media (max-width: 768px) {
	.loup-icon{
		display: none;
	
	}
}