/* Brand Fee Manager - Frontend Checkout Styles */

.bfm-checkout-fields {
    margin: 20px 0;
}

/* Notices */
.bfm-notice {
    padding: 14px 18px;
    margin: 12px 0;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
    border-left: 4px solid;
}

.bfm-notice-info {
    background: #e8f4fd;
    border-color: #2196f3;
    color: #1565c0;
}

.bfm-notice-warning {
    background: #fff8e1;
    border-color: #ff9800;
    color: #e65100;
}

.bfm-notice-error {
    background: #fce4ec;
    border-color: #f44336;
    color: #c62828;
}

.bfm-notice-success {
    background: #e8f5e9;
    border-color: #4caf50;
    color: #2e7d32;
}

/* Checkbox */
.bfm-checkbox-field {
    margin: 15px 0;
    padding: 14px 18px;
    background: #fffdf0;
    border: 2px solid #f0c36d;
    border-radius: 6px;
}

.bfm-checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 !important;
}

.bfm-checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    accent-color: #2271b1;
}

.bfm-checkbox-label span {
    flex: 1;
}

/* Validation error highlight */
.bfm-checkbox-field.bfm-error {
    border-color: #d63638;
    background: #fce4ec;
    animation: bfm-shake 0.4s ease;
}

@keyframes bfm-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Cart page notices */
.woocommerce-cart .bfm-notice {
    margin: 0 0 15px;
}
