/**
 * Product Volume Discounts Block Styles
 *
 * @package IMS_by_Soul_Country
 */

.ims-volume-discounts {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 1.5rem;
    background: #ffffff;
    margin: 1.5rem 0 0;
    scroll-margin-top: 100px;
}

.ims-volume-discounts__title {
    color: var(--color-dark);
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 1rem 0 !important;
}

.ims-volume-discounts__table {
    width: 100%;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    overflow: hidden;
    border-collapse: collapse;
}

.ims-volume-discounts__table thead {
    background: var(--color-dark-charcoal);
    color: #ffffff;
}

.ims-volume-discounts__table thead th {
    padding: 0.75rem 1rem;
    font-weight: 600;
    text-align: left;
    border: none;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.ims-volume-discounts__table tbody tr {
    background: #ffffff;
    border-bottom: 1px solid var(--color-border);
}

.ims-volume-discounts__table tbody tr:last-child {
    border-bottom: none;
}

.ims-volume-discounts__table tbody tr:hover {
    background: var(--color-bg-light);
}

.ims-volume-discounts__table tbody td {
    padding: 0.75rem 1rem;
    border: none;
    font-size: 0.875rem;
    color: var(--color-dark);
}

@media (max-width: 768px) {
    .ims-volume-discounts {
        padding: 1rem;
    }

    .ims-volume-discounts__table thead th,
    .ims-volume-discounts__table tbody td {
        padding: 0.625rem 0.75rem;
        font-size: 0.8125rem;
    }
}
