/**
 * Laboprint Omnibus Price Styles
 */

.omnibus-price-container {
    margin: 15px 0;
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.omnibus-current-price,
.omnibus-regular-price,
.omnibus-lowest-price {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.omnibus-lowest-price {
    margin-bottom: 0;
}

.omnibus-label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.omnibus-info-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    background: #2196F3;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    cursor: help;
    font-weight: bold;
}

.price-strikethrough .price {
    text-decoration: line-through;
    color: #999;
    font-size: 16px;
}

.omnibus-current-price .price {
    color: #e74c3c;
    font-weight: 700;
    font-size: 24px;
}

.omnibus-regular-price .price {
    font-size: 18px;
}

.omnibus-lowest-price .price {
    color: #666;
    font-weight: 600;
    font-size: 16px;
}

.omnibus-price-highlight {
    background: #fff3cd;
    padding: 2px 8px;
    border-radius: 3px;
}

.omnibus-better-deal {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e0e0e0;
}

.omnibus-badge {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* List/Grid view styles */
.product-item .omnibus-price-info {
    margin-top: 8px;
    font-size: 12px;
    color: #666;
}

.product-item .omnibus-lowest-price-small {
    display: block;
    font-size: 11px;
    color: #888;
    margin-top: 4px;
}

.product-item .price-strikethrough .price {
    text-decoration: line-through;
    color: #999;
}

/* On Sale Badge for product listing */
.product-item .omnibus-sale-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    color: white;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
}

/* Responsive styles */
@media (max-width: 768px) {
    .omnibus-price-container {
        padding: 12px;
    }

    .omnibus-current-price .price {
        font-size: 20px;
    }

    .omnibus-regular-price .price {
        font-size: 16px;
    }

    .omnibus-lowest-price .price {
        font-size: 14px;
    }

    .omnibus-label {
        font-size: 13px;
    }
}
