/* Mini-cart discount notice */
.andi-mini-cart-discount-notice {
    margin: 10px 0 15px;
    padding: 8px 12px;
    background: #f1f5ff;
    color: #111827;
    border-radius: 6px;
    font-size: 13px;
    text-align: center;
    line-height: 1.4;
}

.andi-mini-cart-discount-notice strong {
    font-weight: 600;
}

.andi-mini-cart-discount-icon {
    margin-right: 6px;
    font-size: 16px;
}

/* Hide classic WooCommerce message wrapper on checkout.
 * NOTE: This hides all .message-wrapper notices on the checkout page.
 * Use only if your theme/checkout already shows modern block notices/snackbars.
 */
.message-wrapper {
    display: none !important;
}

/* Product page discount notice */
.andi-discount-notice {
    display: none;
    padding: 12px 20px;
    background: var(--fs-sliding-bg);
    color: #ffffff;
    border-radius: 5px 5px 0 0;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    animation: andi-slideDown 0.3s ease-out;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.andi-discount-notice.active {
    display: block;
}

.andi-discount-icon {
    display: inline-block;
    margin-right: 8px;
    font-size: 18px;
}

@keyframes andi-slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}