/* CEP Auto Fill — feedback visual no campo postcode */

input[name="postcode"].cepautofill-loading {
    background-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.06) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: cepautofill-pulse 1s linear infinite;
    border-color: #f39c12 !important;
}

input[name="postcode"].cepautofill-error {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 1px rgba(231, 76, 60, 0.35);
}

@keyframes cepautofill-pulse {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
