/* NU Wholesale Pricing v2.0.3 */

.nu-wp2-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    font-family: inherit;
}

/* ── Card ── */
.nu-wp2-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
    background: #fff;
}

/* ── Header ── */
.nu-wp2-header {
    background: #1a2e6e;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 18px;
    gap: 10px;
    flex-wrap: nowrap;
}

.nu-wp2-header-title {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.4px;
    white-space: nowrap;
    flex-shrink: 0;
}

.nu-wp2-header-divider {
    width: 1px;
    height: 26px;
    background: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.nu-wp2-header-info {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    flex: 1;
    min-width: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.nu-wp2-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 1.5px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    font-style: italic;
    font-weight: 700;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
    flex-shrink: 0;
    line-height: 1;
}

.nu-wp2-highlight {
    color: #f5c518;
    font-weight: 700;
}

.nu-wp2-size-guide {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
    white-space: nowrap;
    flex-shrink: 0;
}

.nu-wp2-size-guide:hover {
    opacity: 0.8;
}

/* ── Tiers ── */
.nu-wp2-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    background: #f3f6fb;
    padding: 18px 16px 16px;
    gap: 12px;
}

.nu-wp2-tiers--scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    grid-template-columns: repeat(auto-fill, 160px);
    flex-wrap: nowrap;
}

.nu-wp2-tier {
    background: #fff;
    border-radius: 10px;
    border: 1.5px solid #dde4f0;
    padding: 16px 12px 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.nu-wp2-tier-qty {
    background: #dde6f5;
    color: #1a2e6e;
    font-size: 14px;
    font-weight: 700;
    padding: 4px 13px;
    border-radius: 20px;
    margin-bottom: 3px;
    white-space: nowrap;
}

.nu-wp2-tier-per {
    font-size: 14px;
    font-weight: 500;
    color: #888;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 1px;
}

.nu-wp2-tier-price {
    font-size: 34px;
    font-weight: 800;
    color: #e0186c;
    line-height: 1.1;
    white-space: nowrap;
}

.nu-wp2-tier-each {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.nu-wp2-tier-divider {
    width: 75%;
    border: none;
    border-top: 1.5px dashed #dde4f0;
    margin: 3px 0 6px;
}

.nu-wp2-tier-retail {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    white-space: nowrap;
}

.nu-wp2-tier-retail s {
    color: #555;
}

.nu-wp2-tier-badge {
    background: #e0186c;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 24px;
    margin-top: 5px;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

.nu-wp2-tier--best .nu-wp2-tier-badge {
    background: #c9156a;
}

/* ── Examples ── */
.nu-wp2-examples {
    display: grid;
    grid-template-columns: auto repeat(3, 1fr);
    background: #f3f6fb;
    border-top: 1.5px solid #dde4f0;
    padding: 14px 16px;
    gap: 8px 12px;
    align-items: start;
}

.nu-wp2-ex-label {
    color: #1a2e6e;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    line-height: 1.5;
    padding-right: 8px;
    align-self: center;
    white-space: nowrap;
}

.nu-wp2-ex-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.nu-wp2-ex {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

.nu-wp2-ex-icon {
    flex-shrink: 0;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 900;
    margin-top: 2px;
}

.nu-wp2-ex--yes .nu-wp2-ex-icon {
    background: #27ae60;
    color: #fff;
}

.nu-wp2-ex--no .nu-wp2-ex-icon {
    background: #e74c3c;
    color: #fff;
}

.nu-wp2-ex-price {
    color: #e0186c;
    font-weight: 700;
}

/* ── Footer (How it works) ── */
.nu-wp2-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: #eef2fb;
}

.nu-wp2-footer-i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #c5d3ee;
    border-radius: 50%;
    font-style: italic;
    font-size: 15px;
    font-weight: 800;
    color: #1a2e6e;
    flex-shrink: 0;
    line-height: 1;
}

.nu-wp2-footer-text {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.55;
}

.nu-wp2-footer-text strong {
    color: #1a2e6e;
    font-weight: 700;
}

.nu-wp2-footer-cart {
    font-size: 20px;
    opacity: 0.5;
    flex-shrink: 0;
}

/* ── Tablet: stack header only ── */
@media (max-width: 768px) {
    .nu-wp2-header {
        flex-wrap: wrap;
        gap: 6px;
    }

    .nu-wp2-header-title {
        flex: 0 0 100%;
        white-space: normal;
    }

    .nu-wp2-header-divider {
        display: none;
    }

    .nu-wp2-header-info {
        flex: 0 0 100%;
    }

    .nu-wp2-size-guide {
        flex: 0 0 100%;
    }
}

/* ── Mobile: stack tiers + examples ── */
@media (max-width: 600px) {
    .nu-wp2-tiers {
        grid-template-columns: 1fr;
    }

    .nu-wp2-tier-price {
        font-size: 28px;
    }

    .nu-wp2-examples {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .nu-wp2-ex-label {
        white-space: normal;
    }
}
