/* ===================================================
   WC Quantity Discount – Frontend Pricing Table
=================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');

.wcqd-discount-table-wrap {
    font-family: 'DM Sans', sans-serif;
    margin: 24px 0 28px;
    border-radius: 14px;
    overflow: hidden;
    border: 1.5px solid #e8eaf0;
    box-shadow: 0 4px 24px rgba(30, 40, 80, .07);
    background: #fff;
}

/* Title bar */
.wcqd-table-title {
    margin: 0;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .3px;
    color: #1a1d2e;
    background: linear-gradient(135deg, #f4f6ff 0%, #eef0fa 100%);
    border-bottom: 1.5px solid #e8eaf0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wcqd-icon {
    font-size: 16px;
}

/* Table */
.wcqd-frontend-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
}

.wcqd-frontend-table thead tr {
    background: #1a1d2e;
    color: #fff;
}

.wcqd-frontend-table thead th {
    padding: 11px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 11.5px;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
}

.wcqd-frontend-table tbody tr {
    border-bottom: 1px solid #eef0f6;
    transition: background .18s ease, transform .15s ease;
    cursor: default;
}

.wcqd-frontend-table tbody tr:last-child {
    border-bottom: none;
}

.wcqd-frontend-table tbody tr:hover {
    background: #f4f7ff;
}

/* Active / highlighted row when qty matches */
.wcqd-frontend-table tbody tr.wcqd-active-tier {
    background: linear-gradient(90deg, #eefbf0 0%, #f4fff6 100%);
    border-left: 3px solid #22c55e;
}

.wcqd-frontend-table tbody tr.wcqd-active-tier .wcqd-price {
    color: #16a34a;
    font-weight: 700;
}

.wcqd-frontend-table td {
    padding: 12px 16px;
    vertical-align: middle;
    color: #2a2d3e;
}

/* Quantity column */
.wcqd-qty {
    font-weight: 600;
    white-space: nowrap;
}

/* Price column */
.wcqd-price {
    font-weight: 600;
    font-size: 14.5px;
    color: #1a1d2e;
}

/* Savings pill */
.wcqd-savings-pill {
    display: inline-block;
    background: #dcfce7;
    color: #15803d;
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .2px;
}

/* Badge (label) */
.wcqd-badge {
    display: inline-block;
    margin-left: 7px;
    background: #fef3c7;
    color: #92400e;
    border-radius: 5px;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .3px;
    vertical-align: middle;
}

/* Discount column */
.wcqd-discount-val {
    color: #6b7280;
    font-size: 13px;
}

/* Footer note */
.wcqd-note {
    margin: 0;
    padding: 10px 18px;
    font-size: 12.5px;
    color: #6b7280;
    background: #f9fafc;
    border-top: 1px solid #eef0f6;
}

/* Responsive */
@media (max-width: 480px) {
    .wcqd-frontend-table thead th:nth-child(4),
    .wcqd-frontend-table tbody td:nth-child(4) {
        display: none;
    }
    .wcqd-discount-table-wrap {
        font-size: 13px;
    }
}
