/**
 * KB Group Based Pricing - Frontend Styles
 *
 * @author    Starter
 * @copyright 2024
 * @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */

/* Discount Badge */
.kbgp-discount-badge {
    display: inline-block;
    padding: 3px 8px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    background-color: #f39c12;
    border-radius: 3px;
    margin-right: 5px;
    vertical-align: middle;
}

/* Product Listing Discount Badge */
.product-miniature .kbgp-discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}

/* Product Page Discount Badge */
.product-prices .kbgp-discount-badge {
    margin-bottom: 5px;
}

/* Price Display */
.kbgp-price-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.kbgp-original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9em;
}

.kbgp-discounted-price {
    color: #c0392b;
    font-weight: 700;
}

/* Discount Info on Product Page */
.kbgp-discount-info {
    margin: 10px 0;
    padding: 10px 15px;
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 4px;
    font-size: 14px;
}

.kbgp-discount-info .discount-label {
    font-weight: 600;
    color: #856404;
}

.kbgp-discount-info .discount-value {
    font-weight: 700;
    color: #c0392b;
}

/* Responsive */
@media (max-width: 767px) {
    .kbgp-discount-badge {
        font-size: 11px;
        padding: 2px 6px;
    }
}
