/* =====================================================
   DYNAMIC PRICING TABLE — FINAL STABLE VERSION
   ===================================================== */

.dynamic-pricing-wrapper {
    width: 100%;
    margin-top: 20px;
}
th.dp-head.price {
    text-align: center;
}
th.dp-head.discount {
    text-align: right;
}

td.dp-discount {
    text-align: right;
}

td.dp-price {
    text-align: center;
}

/* ================= TABLE RESET ================= */

.dynamic-pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 16px;
    border: none;
}

/* ================= HEADER ================= */

.dp-table-head th {
    padding: 16px;
    font-weight: 500;
    font-size: 24px;
    line-height: 34px;
    color: #000000;
    background: #F6F6F6;
    text-align: left;
    border: none;
}

.dp-table-head th:first-child {
    border-radius: 8px 0 0 8px;
}

.dp-table-head th:last-child {
    border-radius: 0 8px 8px 0;
}

/* ================= ROW CARD STYLE ================= */

.dp-row td {
    padding: 16px;
    background: #ffffff;
    border-top: 0.2px solid #1B365D;
    border-bottom: 0.2px solid #1B365D;
    border-right: 0px;
    border-left: 0px;
}

.dp-row td:first-child {
    border-left: 0.2px solid #1B365D;
    border-radius: 8px 0 0 8px;
}

.dp-row td:last-child {
    border-right: 0.2px solid #1B365D;
    border-radius: 0 8px 8px 0;
}

/* ================= COLUMN STYLING ================= */

.dp-qty {
    color: #000000;
    font-weight: 300;
    font-size: 24px;
    line-height: 34px;
}

.dp-price {
    font-weight: 500;
    font-size: 24px;
    line-height: 34px;
    color: #1B365D;
}

.dp-discount {
    font-weight: 300;
    font-size: 24px;
    line-height: 34px;
    color: #000000;
}

/* =====================================================
   RESPONSIVE FIX
   ===================================================== */

/* -------- Tablet -------- */
@media (max-width: 1024px) {
    .dp-table-head th,
    .dp-row td {
        font-size: 20px;
        line-height: 28px;
        padding: 14px;
    }
}

/* -------- Mobile -------- */
@media (max-width: 767px) {
    .dynamic-pricing-table {
        border-spacing: 0 12px;
    }

    .dp-table-head th,
    .dp-row td {
        font-size: 18px;
        line-height: 26px;
        padding: 12px 10px;
    }

    .dp-qty,
    .dp-price,
    .dp-discount {
        font-size: 18px;
        line-height: 26px;
    }
}

/* -------- Small Mobile -------- */
@media (max-width: 480px) {
    .dynamic-pricing-table {
        border-spacing: 0 10px;
    }

    .dp-table-head th,
    .dp-row td {
        font-size: 15px;
        line-height: 22px;
        padding: 10px 8px;
    }

    .dp-qty,
    .dp-price,
    .dp-discount {
        font-size: 15px;
        line-height: 22px;
    }
}