/* Pido Account & Rewards — cart and checkout points preview. */
.woocommerce-cart-form + .cart-collaterals .pido-purchase-points-row > *,
.woocommerce-checkout-review-order-table .pido-purchase-points-row > *,
.cart_totals .pido-purchase-points-row > * {
    padding: 13px 14px !important;
    vertical-align: middle !important;
    border: 1px solid color-mix(in srgb, var(--pido-primary, #2f78ea) 22%, transparent) !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, color-mix(in srgb, var(--pido-primary, #2f78ea) 10%, #fff), color-mix(in srgb, #f59e0b 9%, #fff)) !important;
    text-align: right !important;
}
.pido-purchase-points-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    min-width: 0;
    white-space: nowrap;
}
.pido-purchase-points-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    color: var(--pido-text, #122033);
    font-size: 12px;
    font-weight: 900;
}
.pido-purchase-points-icon {
    display: inline-grid;
    flex: 0 0 auto;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 7px 16px rgba(217, 119, 6, .18);
    font-size: 12px;
}
.pido-purchase-points-value {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: baseline;
    gap: 4px;
    color: var(--pido-primary, #2f78ea);
    font-size: 17px;
    font-weight: 950;
    line-height: 1.35;
    white-space: nowrap;
}
.pido-purchase-points-value small {
    font-size: 10px;
    font-weight: 800;
}
.pido-purchase-points-note {
    display: block;
    margin-top: 4px;
    color: var(--pido-muted, #718096);
    font-size: 10px;
    line-height: 1.75;
}
html[data-pido-theme="dark"] .pido-purchase-points-row > * {
    border-color: rgba(126, 176, 255, .22) !important;
    background: linear-gradient(135deg, rgba(47, 120, 234, .16), rgba(245, 158, 11, .10)) !important;
}
html[data-pido-theme="dark"] .pido-purchase-points-title { color: #f8fafc; }
html[data-pido-theme="dark"] .pido-purchase-points-value { color: #8ab8ff; }
html[data-pido-theme="dark"] .pido-purchase-points-note { color: #a9b7ca; }

@media (max-width: 560px) {
    .pido-purchase-points-row > * {
        padding: 11px 10px !important;
    }
    .pido-purchase-points-main { gap: 8px; }
    .pido-purchase-points-title { font-size: 10.5px; }
    .pido-purchase-points-icon { width: 24px; height: 24px; border-radius: 8px; font-size: 10px; }
    .pido-purchase-points-value { font-size: 14px; }
    .pido-purchase-points-value small { font-size: 9px; }
    .pido-purchase-points-note { font-size: 9px; }
}

/* Order-level fixed discount summary. Product prices remain unchanged. */
.pido-fixed-discount-summary-amount {
    display: inline-flex;
    align-items: center;
    direction: rtl;
    color: #0f8a47;
    font-weight: 950;
    white-space: nowrap;
}

html[data-pido-theme="dark"] .pido-fixed-discount-summary-amount {
    color: #65e89b;
}
