/* =====================================================
   NM SLO Funnels — Order Bump
   ===================================================== */

.nm-slo-bump {
    position: relative;
    margin: 24px 0;
    border: 3px dashed #e8a020;
    border-radius: 8px;
    background: #fffbf2;
    transition: background 0.2s, border-color 0.2s;
    overflow: hidden;
}

.nm-slo-bump--active {
    border-color: #d4870a;
    background: #fff8e8;
}

.nm-slo-bump--loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Badge */
.nm-slo-bump__badge {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    background: #e8a020;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-bottom-right-radius: 6px;
}

/* Inner label (clickable) */
.nm-slo-bump__inner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 40px 20px 20px;
    cursor: pointer;
    margin: 0;
}

/* Checkbox */
.nm-slo-bump__checkbox {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 2px;
    accent-color: #d4870a;
    cursor: pointer;
}

/* Content */
.nm-slo-bump__content {
    flex: 1;
}

.nm-slo-bump__title {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
    line-height: 1.3;
}

.nm-slo-bump__desc {
    font-size: 14px;
    color: #555;
    margin: 0 0 8px;
    line-height: 1.5;
}

.nm-slo-bump__price {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #d4870a;
    background: #fff3d6;
    border-radius: 4px;
    padding: 3px 10px;
}

/* Active state: highlight title */
.nm-slo-bump--active .nm-slo-bump__title {
    color: #b36b00;
}
