/* ==========================================================================
   Quick Order Top-Right Block
   Scoped under .nu-quick-order-top to avoid collisions
   ========================================================================== */

.nu-quick-order-top {
    border: none;
    border-radius: 6px;
    padding: 0;
    /* margin-top: 20px; */
    margin-bottom: 20px;
    background: #fff;
}

/* ---------- Trust Badges (below gallery) ---------- */
.nu-trust-badges {
    border: 1px solid #e9e9e9;
    border-radius: 10px;
    background: #fff;
    padding: 6px 16px;
    margin: 16px 0;
}

.nu-trust-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
}

.nu-trust-badge:last-child {
    border-bottom: none;
}

.nu-trust-badge-link,
.nu-trust-badge-link:hover,
.nu-trust-badge-link:focus {
    text-decoration: none;
    color: inherit;
}

.nu-trust-badge-link:hover .nu-trust-badge-text strong {
    color: #e90a9b;
}

.nu-trust-badge-icon {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fdf2f8;
    color: #e90a9b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nu-trust-badge-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.3;
}

.nu-trust-badge-text strong {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
}

.nu-trust-badge-text span {
    font-size: 13px;
    color: #666;
}

/* ---------- Color ---------- */
.nu-qo-color-picker {
    margin-bottom: 14px;
}

.nu-qo-color-picker-label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: #333;
}

.nu-qo-color-picker-label strong {
    font-weight: 700;
}

.nu-qo-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.nu-qo-swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #ddd;
    cursor: pointer;
    padding: 0;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    position: relative;
}

.nu-qo-swatch:hover {
    border-color: #888;
}

.nu-qo-swatch.active {
    border-color: #ffffff;
    box-shadow: 0 0 0 2px #333;
}

/* White swatch: add subtle border */
.nu-qo-swatch[style*="background-color: #FFFFFF"],
.nu-qo-swatch[style*="background-color: #ffffff"],
.nu-qo-swatch[style*="background-color: #fff"],
.nu-qo-swatch[style*="background-color: white"] {
    border-color: #ccc;
}

#nu-qo-color-name{
    text-transform: uppercase;
}

/* ---------- Dropdown Row ---------- */
.nu-qo-dropdown-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    display: none !important; /* Hidden by default, shown when colors are available */
}

.nu-qo-dropdown-row label {
    font-size: 14px;
    white-space: nowrap;
    color: #333;
}

.nu-qo-color-select {
    flex: 1;
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    max-width: 220px;
}

/* ---------- Card wrapper (pink-bordered) ---------- */
.nu-qo-card {
    border: 2px solid #e90a9b;
    border-radius: 10px;
    padding: 14px 16px 16px;
    background: #fff;
    margin-bottom: 12px;
}

.nu-qo-card-header {
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.nu-qo-card-header strong {
    font-weight: 700;
    color: #1a1a1a;
}

.nu-qo-card-header-color {
    text-transform: uppercase;
    font-weight: 700;
    color: #1a1a1a;
}

/* ---------- Embroidery cards (top row) ---------- */
.nu-qo-emb-cards {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 10px;
    margin-bottom: 8px;
}

/* ---------- Embroidery first-load spotlight ---------- */
.nu-qo-spot-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 25, 0.55);
    z-index: 99998;
    animation: nu-qo-spot-fade 0.25s ease-out;
}

body.nu-qo-spot-active .nu-qo-emb-cards {
    position: relative;
    z-index: 99999;
    border-radius: 10px;
    box-shadow: 0 0 0 4px rgba(233, 10, 155, 0.55), 0 0 0 9999px rgba(0, 0, 0, 0);
    animation: nu-qo-spot-pulse 1.6s ease-in-out infinite;
}

.nu-qo-spot-tooltip {
    position: absolute;
    z-index: 100000;
    background: #fff;
    border-radius: 10px;
    padding: 14px 16px 12px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
    color: #1a1a1a;
    animation: nu-qo-spot-slide 0.25s ease-out;
}

.nu-qo-spot-tooltip::before {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 28px;
    width: 14px;
    height: 14px;
    background: #fff;
    transform: rotate(45deg);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.nu-qo-spot-title {
    font-size: 15px;
    font-weight: 700;
    color: #e90a9b;
    margin-bottom: 4px;
}

.nu-qo-spot-body {
    font-size: 13px;
    color: #444;
    line-height: 1.45;
    margin-bottom: 12px;
}

.nu-qo-spot-btn {
    background: #e90a9b;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.15s;
}

.nu-qo-spot-btn:hover {
    background: #c4087f;
}

@keyframes nu-qo-spot-fade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes nu-qo-spot-slide {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes nu-qo-spot-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(233, 10, 155, 0.55); }
    50%      { box-shadow: 0 0 0 8px rgba(233, 10, 155, 0.30); }
}

@media (max-width: 480px) {
    .nu-qo-spot-tooltip {
        max-width: calc(100vw - 24px);
    }
}

.nu-qo-emb-card {
    border: 1px solid #f1bcdc;
    border-radius: 8px;
    padding: 12px;
    background: #fff;
    display: flex;
    /* align-items: center; */
    gap: 10px;
}

.nu-qo-emb-add {
    cursor: pointer;
    user-select: none;
}

.nu-qo-emb-checkbox {
    position: absolute !important;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

.nu-qo-emb-check {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    border-radius: 5px;
    border: 2px solid #d63384;
    background: #fff;
    position: relative;
    display: inline-block;
    transition: background 0.15s, border-color 0.15s;
    margin-top: 3px;
}

.nu-qo-emb-checkbox:checked + .nu-qo-emb-check {
    background: #d63384;
}

.nu-qo-emb-checkbox:checked + .nu-qo-emb-check::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 11px;
    border: solid #fff;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
}

.nu-qo-emb-checkbox:focus-visible + .nu-qo-emb-check {
    box-shadow: 0 0 0 3px rgba(214, 51, 132, 0.25);
}

.nu-qo-emb-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.3;
}

.nu-qo-emb-title {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.nu-qo-emb-new {
    background: #e90a9b;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
    letter-spacing: 0.5px;
}

.nu-qo-emb-subtitle {
    color: #555;
    font-size: 12px;
}

.nu-qo-emb-info-text strong{
    color: #d63384;
    font-size: 16px;
}
.nu-qo-emb-icon {
    color: #d63384;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fdf2f8;
}

.nu-qo-emb-info-text {
    font-size: 13px;
    color: #1a1a1a;
    line-height: 1.3;
}

.nu-qo-emb-info-text strong {
    display: block;
    font-weight: 700;
}

/* ---------- Embroidery cart status row ---------- */
.nu-qo-emb-status {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ecfdf3;
    border: 1px solid #b8e6c8;
    color: #1a6c3a;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 13px;
    margin-bottom: 12px;
}

.nu-qo-emb-status.is-met {
    background: #ecfdf3;
    border-color: #b8e6c8;
    color: #1a6c3a;
}

.nu-qo-emb-status-met {
    display: none;
    font-weight: 600;
}

.nu-qo-emb-status.is-met .nu-qo-emb-status-pending {
    display: none;
}

.nu-qo-emb-status.is-met .nu-qo-emb-status-met {
    display: inline;
}

/* Nudge to tick the embroidery checkbox — only when the threshold is met
   AND the user hasn't checked the box yet. Toggled by JS via .is-unchecked. */
.nu-qo-emb-status-action {
    display: none;
    margin-left: 4px;
    color: #c4087f;
    font-weight: 700;
}

.nu-qo-emb-status.is-met.is-unchecked .nu-qo-emb-status-action {
    display: inline;
}

.nu-qo-emb-status-icon {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #2bb673;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nu-qo-emb-add-link {
    color: #d63384;
    font-weight: 700;
    text-decoration: underline;
}

.nu-qo-emb-add-link:hover {
    color: #c4087f;
}

.wpgs-nav .slick-current{
    border: 2px solid #e9219b !important;
    border-radius: 4px;
}

.nu-qo-bulk-icon{
    color: #e9219b;
}

/* ---------- Section title above sizes ---------- */
.nu-qo-section-title {
    font-size: 15px;
    color: #241e1e;
    margin: 6px 0 8px;
    font-weight: 600;
}

/* ---------- Sizes Row ---------- */
.nu-qo-sizes-row {
    display: flex;
    gap: 0;
    overflow-x: auto;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #fff;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0;
}

.nu-qo-size-col {
    flex: 1 0 auto;
    min-width: 86px;
    text-align: center;
    padding: 4px 8px 6px;
    border-right: 1px solid #f0f0f0;
}

.nu-qo-size-col:last-child {
    border-right: none;
}

.nu-qo-size-label {
    font-weight: 700;
    font-size: 13px;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

/* ---------- Stepper (− value +) ---------- */
.nu-qo-stepper {
    display: inline-flex;
    align-items: center;
    border: 1px solid #d6d6d6;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.nu-qo-step-btn {
    width: 26px;
    height: 30px;
    border: none;
    background: #fff;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: background 0.12s;
    border-radius: 0;
}



.nu-qo-step-btn:disabled {
    color: #c4c4c4;
    cursor: not-allowed;
    background: #fafafa;
}

.nu-qo-qty-input {
    width: 36px;
    padding: 5px 0 !important;
    text-align: center;
    border: none !important;
    font-size: 14px;
    color: #1a1a1a;
    background: #fff;
    -moz-appearance: textfield;
    appearance: textfield;
}

.nu-qo-qty-input::-webkit-outer-spin-button,
.nu-qo-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

.nu-qo-qty-input:focus {
    outline: none;
    background: #fff8fc;
}

.nu-qo-qty-input:disabled {
    background: #f0f0f0;
    color: #999;
    cursor: not-allowed;
}

.nu-qo-size-col-unavailable {
    background: #fafafa;
}

.nu-qo-unavailable-text {
    display: block;
    font-size: 10px;
    color: #e73939;
    text-align: center;
    padding: 4px 2px;
    line-height: 1.3;
    margin-top: 8px;
}

.nu-qo-size-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    color: #e90a9b;
    margin-top: 8px;
    line-height: 1.3;
}

.nu-qo-price-original {
    text-decoration: line-through;
    color: #d33838;
    font-size: 11px;
    font-weight: 400;
}

.nu-qo-price-current {
    font-size: 14px;
    font-weight: 700;
    color: #e90a9b;
}

.nu-qo-price-current.tier-active {
    color: #220618;
}

.nu-qo-tier-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 12px;
    height: 12px;
    background: #555;
    color: #fff;
    border-radius: 50%;
    font-size: 8px;
    font-weight: bold;
    cursor: help;
    line-height: 1;
    margin-top: 2px;
    flex-shrink: 0;
}

.nu-qo-stock {
    display: block;
    font-size: 10px;
    margin-top: 2px;
    line-height: 1.2;
}

.nu-qo-in-stock {
    color: #007a00;
}

.nu-qo-out-of-stock {
    color: #e90a9b;
}

.nu-qo-backorder {
    color: #cc8800;
}

.nu-qo-no-sizes {
    padding: 12px;
    color: #666;
    font-style: italic;
}

/* ---------- Bulk Link ---------- */
.nu-qo-bulk-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #333;
    margin: 12px 0 16px;
}

.nu-qo-bulk-link .nu-qo-bulk-icon {
    flex: 0 0 auto;
}

.nu-qo-bulk-text {
    flex: 1 1 auto;
    min-width: 0;
    line-height: 1.4;
}

.nu-qo-bulk-link a {
    color: #e90a9b;
    font-weight: 600;
    text-decoration: underline;
    white-space: nowrap;
}

.nu-qo-bulk-link a:hover {
    color: #c4087f;
}

@media (max-width: 480px) {
    .nu-qo-bulk-link {
        gap: 10px;
        font-size: 13px;
        align-items: flex-start;
    }
    .nu-qo-bulk-link .nu-qo-bulk-icon svg {
        width: 24px;
        height: 24px;
    }
    .nu-qo-bulk-link a {
        white-space: normal;
        display: inline;
    }
}

/* ---------- Bulk Pricing Note ---------- */
.nu-qo-bulk-pricing-note {
    position: relative;
    margin: 10px 0 14px;
    padding: 10px 14px 10px 14px;
    background: linear-gradient(90deg, #fff0f8 0%, #ffffff 100%);
    border: 1px solid #f8c7e3;
    border-left: 4px solid #e90a9b;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.4;
    color: #3a3a3a;
    letter-spacing: 0.2px;
}

.nu-qo-bulk-pricing-note strong {
    display: block;
    font-weight: 700;
    color: #9c0466;
}

.nu-qo-bulk-pricing-note::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -7px;
    width: 10px;
    height: 10px;
    transform: translateY(-50%) rotate(45deg);
    background: #e90a9b;
    border-radius: 2px;
    display: none;
}

/* ---------- Bottom row: summary cells + add-to-cart ---------- */
.nu-qo-bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: stretch;
    gap: 12px;
    margin-top: 12px;
}

.nu-qo-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.nu-qo-summary-cell {
    text-align: center;
    padding: 10px 8px;
    border-right: 1px solid #efefef;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.nu-qo-summary-cell:last-child {
    border-right: none;
}

.nu-qo-summary-cell-label {
    font-size: 11px;
    color: #777;
    text-transform: none;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.nu-qo-summary-cell-value {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

/* Back-compat: legacy ids still referenced elsewhere */
.nu-qo-order-summary {
    display: none !important;
}

/* ---------- Add to Cart Button ---------- */
.nu-qo-add-to-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    padding: 14px 28px;
    background: #e90a9b;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    position: relative;
}

.nu-qo-add-to-cart-btn:hover {
    background: #c4087f;
}

.nu-qo-add-to-cart-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.nu-qo-add-to-cart-btn.loading {
    color: transparent;
}

.nu-qo-add-to-cart-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 22px;
    margin: -11px 0 0 -11px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: nu-qo-spin 0.6s linear infinite;
}

@keyframes nu-qo-spin {
    to { transform: rotate(360deg); }
}

/* ---------- Loading skeleton (shown while AJAX fetches variation data) ---------- */
.nu-qo-loading {
    padding: 20px 10px;
    text-align: center;
    color: #999;
    font-size: 13px;
    letter-spacing: 0.02em;
}
.nu-qo-loading .nu-qo-spinner {
    display: inline-block;
    vertical-align: middle;
    width: 14px;
    height: 14px;
    margin-right: 6px;
    border: 2px solid #ddd;
    border-top-color: #e90a9b;
    border-radius: 50%;
    animation: nu-qo-spin 0.7s linear infinite;
    /* override the add-to-cart button spinner styles */
    position: static;
    margin-top: 0;
    margin-left: 0;
    background: none;
}

/* ---------- Message ---------- */
.nu-qo-message {
    margin-top: 10px;
    padding: 10px 14px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}

.nu-qo-msg-success {
    background: #e6f9e6;
    color: #007a00;
    border: 1px solid #b3e6b3;
}

.nu-qo-msg-error {
    background: #fde8e8;
    color: #e90a9b;
    border: 1px solid #f5c6c6;
}

/* ---------- Top Savings Summary (above color picker) ---------- */
.nu-qo-savings-top {
    display: flex;
    align-items: stretch;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #fff;
}

.nu-qo-savings-top.nu-qo-savings-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.nu-qo-savings-top.nu-qo-savings-scroll .nu-qo-savings-top-box {
    flex: 0 0 130px;
    min-width: 130px;
}

.nu-qo-savings-top-label {
    background: #1b5fc4;
    color: #fff;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 155px;
    text-align: center;
    gap: 3px;
    flex: 0 0 auto;
}

.nu-qo-savings-top-label strong {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.2;
    display: block;
}

.nu-qo-savings-top-label span {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.nu-qo-savings-top-box {
    flex: 1 1 0;
    min-width: 0;
    background: #fef9e7;
    border-left: 1px solid #e8dfc8;
    padding: 14px 10px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.nu-qo-savings-top-tier {
    font-size: 12px;
    font-weight: 700;
    color: #1b5fc4;
    line-height: 1.2;
    margin-bottom: 2px;
    white-space: nowrap;
}

.nu-qo-savings-top-starting {
    font-size: 11px;
    color: #000;
}

.nu-qo-savings-top-price {
    font-size: 28px;
    font-weight: 800;
    color: #d63384;
    line-height: 1.1;
    white-space: nowrap;
}

.nu-qo-savings-top-retail {
    font-size: 11px;
    color: #000;
    margin-top: 2px;
    line-height: 1.6;
    white-space: nowrap;
}

.nu-qo-savings-top-retail span {
    display: block;
    text-decoration: line-through;
    font-size: 12px;
}

.nu-qo-savings-top-badge {
    background: #d63384;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 3px;
    margin-top: 5px;
    display: inline-block;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .nu-qo-savings-top { flex-wrap: wrap; }
    .nu-qo-savings-top-label { min-width: 100%; padding: 14px; }
    .nu-qo-savings-top-box { min-width: 30%; }
    .nu-qo-savings-top-price { font-size: 22px; }
}


/* Retail price column — strikethrough in bulk chart */
.nu-qo-bulk-chart-table .nu-qo-bulk-retail {
    text-align: left;
    font-weight: 700;
    background: linear-gradient(to bottom, #fdf0f9, #fce4f6);
    color: #d63384;
}

/* Tier price columns — dark, no color change */
.nu-qo-bulk-chart-table .nu-qo-bulk-tier-price {
    font-weight: 600;
    color: #222;
}

/* ---------- Bulk Pricing Chart ---------- */
.nu-qo-bulk-chart {
    margin-top: 24px;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.nu-qo-bulk-chart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px 12px;
    border-bottom: 1px solid #e0e0e0;
    background: #fff;
}

.nu-qo-bulk-chart-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    padding: 0;
    letter-spacing: 0;
}

.nu-qo-bulk-chart-color-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.nu-qo-bulk-chart-color-label {
    font-size: 10px;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nu-qo-bulk-chart-color-display {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nu-qo-bulk-color-name {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-transform: capitalize;
}

.nu-qo-bulk-color-swatch {
    display: inline-block;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid #ddd;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}

.nu-qo-bulk-chart-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.nu-qo-bulk-chart-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    min-width: 420px;
}

.nu-qo-bulk-chart-table thead tr:first-child th {
    padding: 0;
}

.nu-qo-bulk-th-empty {
    background: #fff;
    border-right: 1px solid #e0e0e0;
}

.nu-qo-bulk-th-discount {
    background: #fde8f6;
    color: #d63384;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.04em;
    text-align: center;
    padding: 5px 8px;
    border-bottom: 1px solid #f4b8e2;
}
#nu-stock-checkout:hover{
    color: #fff;
}
.nu-qo-bulk-chart-table thead tr:last-child th {
    padding: 6px 8px;
    text-align: center;
    font-weight: 700;
    font-size: 12px;
    color: #333;
    border-bottom: 2px solid #e0e0e0;
    background: #f9f9f9;
    white-space: nowrap;
}

.nu-qo-bulk-chart-table thead tr:last-child th:first-child,
.nu-qo-bulk-chart-table thead tr:last-child th:nth-child(2) {
    text-align: left;
}

.nu-qo-bulk-tier-head {
    color: #1a3a8a !important;
}

/* Price column header — pink to match body gradient */
.nu-qo-bulk-chart-table thead tr:last-child th:nth-child(2) {
    background: linear-gradient(to bottom, #fdf0f9, #fce4f6);
    color: #d63384;
}

.nu-qo-bulk-chart-table tbody tr {
    border-bottom: 1px solid #efefef;
}

.nu-qo-bulk-chart-table tbody tr:last-child {
    border-bottom: none;
}

.nu-qo-bulk-chart-table tbody tr:nth-child(even) {
    background: #f7f9ff;
}

.nu-qo-bulk-chart-table tbody td {
    padding: 6px 8px;
    text-align: center;
    color: #333;
    font-size: 13px;
}

.nu-qo-bulk-chart-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: #1a1a1a;
}

.nu-qo-bulk-chart-table tbody td:nth-child(2) {
    text-align: left;
    color: #444;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .nu-quick-order-top {
        padding: 0;
    }

    .nu-qo-card {
        padding: 12px;
    }

    .nu-qo-swatches {
        gap: 5px;
    }

    .nu-qo-swatch {
        width: 24px;
        height: 24px;
    }

    .nu-qo-emb-cards {
        grid-template-columns: 1fr;
    }

    .nu-qo-sizes-row {
        gap: 0;
    }

    .nu-qo-size-col {
        min-width: 78px;
        padding: 4px 6px 6px;
    }

    .nu-qo-qty-input {
        font-size: 13px;
    }

    .nu-qo-bottom {
        grid-template-columns: 1fr;
    }

    .nu-qo-add-to-cart-btn {
        font-size: 16px;
        padding: 12px 16px;
        width: 100%;
    }
    .wpgs-nav .slick-slide{
        margin-left: auto !important;

    }
    .wpgs-nav .slick-current{
        border: 1px solid #e9219b !important;
        border-radius: 4px;
    }
}

@media (max-width: 480px) {
    .nu-qo-dropdown-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .nu-qo-color-select {
        max-width: 100%;
        width: 100%;
    }

    .nu-qo-size-col {
        min-width: 72px;
    }

    .nu-qo-step-btn {
        width: 22px;
        height: 28px;
        font-size: 14px;
    }

    .nu-qo-qty-input {
        width: 30px;
        padding: 4px 0;
    }

    .nu-qo-summary-cell-value {
        font-size: 15px;
    }
}
