/**
 * Quick Buy Badge Styles
 */

.mante-erp-quick-buy-badge {
    display: inline-block;
    margin: 8px 0;
    direction: rtl;
}

.mante-erp-quick-buy-badge-text {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(76, 175, 80, 0.3);
    transition: all 0.2s ease;
}

.mante-erp-quick-buy-badge-text:hover {
    box-shadow: 0 3px 8px rgba(76, 175, 80, 0.4);
    transform: translateY(-1px);
}

/* For single product page - under price */
.woocommerce .mante-erp-quick-buy-badge {
    margin-bottom: 12px;
    margin-top: 0;
}

/* For archive/shop pages */
.woocommerce ul.products li.product .mante-erp-quick-buy-badge {
    margin-top: 8px;
    margin-bottom: 0;
    text-align: right;
}

/* Loading state */
.mante-erp-quick-buy-loading {
    display: inline-block;
    color: #666;
    font-size: 12px;
    font-style: italic;
}

/* Badge container */
.mante-erp-quick-buy-badge-container {
    min-height: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .mante-erp-quick-buy-badge-text {
        font-size: 11px;
        padding: 5px 10px;
    }
}

