/* WooCommerce Promo Manager Public Styles */

/* Discount notifications */
.wpm-discount-notice {
    background: #e7f3ff;
    border: 1px solid #b3d9ff;
    border-radius: 4px;
    padding: 12px 16px;
    margin: 10px 0;
    color: #0073aa;
    font-size: 14px;
}

.wpm-discount-notice.success {
    background: #e8f5e8;
    border-color: #4caf50;
    color: #2e7d32;
}

.wpm-discount-notice.error {
    background: #ffebee;
    border-color: #f44336;
    color: #c62828;
}

/* Cart discount display */
.wpm-cart-discount {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 15px;
    margin: 15px 0;
}

.wpm-cart-discount-title {
    font-weight: 600;
    color: #2e7d32;
    margin-bottom: 5px;
}

.wpm-cart-discount-amount {
    font-size: 16px;
    font-weight: 500;
    color: #d32f2f;
}

/* BOGO product highlights */
.wpm-bogo-highlight {
    position: relative;
    border: 2px solid #4caf50 !important;
    border-radius: 6px;
}

.wpm-bogo-highlight::after {
    content: 'BOGO';
    position: absolute;
    top: -1px;
    right: -1px;
    background: #4caf50;
    color: white;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: bold;
    border-radius: 0 4px 0 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .wpm-discount-notice {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .wpm-cart-discount {
        padding: 12px;
        margin: 10px 0;
    }
}

