/**
 * Aromë WooCommerce Suite - Frontend Styles
 */

/* General */
.arome-wc-suite-container {
    margin: 20px 0;
}

/* Loading spinner - AWC prefix to avoid conflicts with arome-express-orders */
.awc-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #eaa2b1;
    border-radius: 50%;
    animation: awc-spin 1s linear infinite;
}

@keyframes awc-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Alerts */
.arome-alert {
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.arome-alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.arome-alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border-left: 4px solid #17a2b8;
}

.arome-alert-warning {
    background: #fff3cd;
    color: #856404;
    border-left: 4px solid #ffc107;
}

.arome-alert-error {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

