.smart-cart-protection-widget {
    margin: 20px 0;
}

.protection-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid #E2BB53;
    border-radius: 4px;
    background: #fff;
}

.protection-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.protection-icon {
    font-size: 24px;
}

.protection-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.protection-text strong {
    color: #000;
    font-size: 15px;
}

.protection-count {
    color: #666;
    font-size: 13px;
}

.protection-added {
    color: #E2BB53;
    font-size: 13px;
    font-weight: 600;
}

.protection-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.protection-add-form {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.btn-protection-add {
    background: #E2BB53;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-protection-add:hover:not(:disabled) {
    background: #d4ad45;
}

.btn-protection-add:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.remaining-text {
    color: #666;
    font-size: 12px;
}

@media (max-width: 768px) {
    .protection-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .protection-action {
        width: 100%;
        align-items: stretch;
    }

    .btn-protection-add {
        width: 100%;
    }
}

/* Blokada widgetu podczas dodawania */
.smart-cart-protection-widget.widget-blocked {
    pointer-events: none !important;
    opacity: 0.6 !important;
    user-select: none !important;
    cursor: not-allowed !important;
}

.smart-cart-protection-widget.widget-blocked * {
    pointer-events: none !important;
    cursor: not-allowed !important;
}
