/**
 * Purchase Order Field Styles
 *
 * @package FunnelKit_By_Soul_Country
 * @since 1.0.0
 */

/* Wrapper */
.scfk-purchase-order-wrapper {
    margin: 0;
    padding: 0;
}

/* Input wrapper - slides down when checkbox is checked */
.scfk-purchase-order-input-wrapper {
    margin-top: 0;
}

/* Animation for showing/hiding the input */
.scfk-purchase-order-input-wrapper.scfk-visible {
    animation: scfkPOSlideDown 0.2s ease-out;
}

@keyframes scfkPOSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Error state for validation */
.scfk-purchase-order-wrapper .input-text.scfk-error {
    border-color: #dc3545 !important;
}

.scfk-purchase-order-wrapper .input-text.scfk-error:focus {
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.15) !important;
}
