/*DiscountKit Frontend Styles */

.discountkit-bulk-discount-table {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f9f9f9;
}

.discountkit-bulk-discount-table h4 {
    margin: 0 0 15px 0;
    color: #333;
}

.discountkit-discount-table {
    width: 100%;
    border-collapse: collapse;
}

.discountkit-discount-table th,
.discountkit-discount-table td {
    padding: 8px 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.discountkit-discount-table th {
    background: #f0f0f0;
    font-weight: bold;
}

.discountkit-sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e74c3c;
    color: white;
    padding: 5px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
    z-index: 10;
}

.discountkit-savings-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 10px 15px;
    border-radius: 5px;
    margin: 15px 0;
}

.discountkit-savings-message strong {
    font-size: 16px;
}

.discountkit-you-saved {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
    padding: 12px 15px;
    margin: 15px 0;
    border-radius: 4px;
}

.discountkit-savings-text {
    color: #2e7d32;
    font-size: 15px;
}

.discountkit-savings-text strong {
    color: #1b5e20;
    font-size: 17px;
}

/* Bulk Pricing Table */
.discountkit-bulk-pricing-table {
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border: 2px solid #667eea;
    border-radius: 8px;
}

.discountkit-bulk-pricing-table h4 {
    margin: 0 0 15px 0;
    color: #667eea;
    font-size: 18px;
    font-weight: 700;
}

.discountkit-bulk-pricing-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
}

.discountkit-bulk-pricing-table thead th {
    background: #667eea;
    color: #fff;
    padding: 12px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.discountkit-bulk-pricing-table tbody td {
    padding: 12px;
    border-bottom: 1px solid #e1e5e9;
    font-size: 14px;
}

.discountkit-bulk-pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.discountkit-bulk-pricing-table tbody tr:hover {
    background: #f0f6fc;
}