/* ProLab Order Bump */

#plob-bump {
    margin: 0 0 20px 0;
    border: 2px dashed #f59e0b;
    border-radius: 12px;
    background: linear-gradient(135deg, #fffbeb 0%, #fff7ed 100%);
    padding: 20px 20px 16px;
    cursor: pointer;
    transition: border-color .25s, background .25s;
    position: relative;
    overflow: hidden;
    user-select: none;
}

#plob-bump::before {
    content: 'SPECJALNA OFERTA';
    position: absolute;
    top: 0; right: 0;
    background: #f59e0b;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .8px;
    padding: 3px 12px;
    border-radius: 0 10px 0 10px;
}

#plob-bump.plob-active {
    border-color: #10b981;
    border-style: solid;
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
}

#plob-bump.plob-active::before {
    content: 'DODANO ✓';
    background: #10b981;
}

#plob-bump.plob-loading {
    opacity: .6;
    pointer-events: none;
}

/* Layout */
.plob-inner {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

/* Checkbox */
.plob-checkbox { display: none; }

.plob-custom-check {
    width: 30px;
    height: 30px;
    border: 2.5px solid #d1d5db;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    flex-shrink: 0;
    margin-top: 2px;
    transition: background .2s, border-color .2s;
    cursor: pointer;
}

#plob-bump.plob-active .plob-custom-check {
    background: #10b981;
    border-color: #10b981;
}

.plob-check-icon { opacity: 0; transition: opacity .2s; }
#plob-bump.plob-active .plob-check-icon { opacity: 1; }

/* Content */
.plob-content { flex: 1; min-width: 0; }

.plob-headline {
    font-size: 14.5px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px;
    line-height: 1.4;
}

.plob-product-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.plob-img {
    width: 58px;
    height: 58px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #e5e7eb;
}

.plob-product-name {
    font-weight: 600;
    font-size: 13.5px;
    color: #111827;
    margin: 0 0 5px;
}

.plob-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.plob-price-new {
    font-size: 19px;
    font-weight: 800;
    color: #f59e0b;
}

#plob-bump.plob-active .plob-price-new { color: #10b981; }

.plob-badge-only {
    font-size: 11px;
    background: #fef3c7;
    color: #92400e;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 600;
}

/* Bullets */
.plob-bullets {
    list-style: none;
    margin: 6px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.plob-bullets li {
    font-size: 12px;
    color: #6b7280;
    display: flex;
    align-items: flex-start;
    gap: 5px;
    line-height: 1.4;
}

.plob-bullets li::before {
    content: '✓';
    color: #10b981;
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1.4;
}
