/* Free Delivery Badge animation */
.hfpd-moving-border {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 10px;
    background: #ecfdf5; /* emerald-50 */
    color: #065f46;      /* emerald-900 */
    border: 1px solid #a7f3d0; /* emerald-200 */
    position: relative;
    line-height: 1.1;
    animation: hfpd-pulse-green 1.8s ease-in-out infinite;
    will-change: box-shadow, transform;
}

@keyframes hfpd-pulse-green {
    0%   { box-shadow: rgba(16,185,129,0.22) 0 0 0 0; }
    70%  { box-shadow: rgba(16,185,129,0.00) 0 0 0 12px; }
    100% { box-shadow: rgba(16,185,129,0.00) 0 0 0 0; }
}

/* Ensure spacing inside WooCommerce shipping label */
.woocommerce ul#shipping_method li label .hfpd-moving-border {
    margin-left: 6px;
}
